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