2022-10-23 21:53:34 +00:00
|
|
|
import * as plugins from './smartcrypto.plugins.js';
|
|
|
|
import { KeyPair } from './smartcrypto.classes.keypair.js';
|
2019-10-01 12:22:21 +00:00
|
|
|
|
|
|
|
export class Smartcrypto {
|
2019-10-01 17:28:50 +00:00
|
|
|
public async createKeyPair(): Promise<KeyPair> {
|
2019-10-01 13:32:19 +00:00
|
|
|
return KeyPair.createNewKeyPair();
|
2019-10-01 17:28:50 +00:00
|
|
|
}
|
|
|
|
}
|