fix(core): update
This commit is contained in:
parent
2be99bdf48
commit
03175e208a
@ -1 +1,4 @@
|
||||
export * from './smartcrypto.classes.smartcrypto';
|
||||
export * from './smartcrypto.classes.keypair';
|
||||
export * from './smartcrypto.classes.privatekey';
|
||||
export * from './smartcrypto.classes.publickey';
|
||||
|
@ -1,5 +1,8 @@
|
||||
import * as plugins from './smartcrypto.plugins';
|
||||
import { KeyPair } from './smartcrypto.classes.keypair';
|
||||
|
||||
export class Smartcrypto {
|
||||
|
||||
public async createKeyPair (): Promise<KeyPair> {
|
||||
return KeyPair.createNewKeyPair();
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user