smartcrypto/ts/smartcrypto.classes.smartcrypto.ts
2019-10-01 19:28:50 +02:00

9 lines
231 B
TypeScript

import * as plugins from './smartcrypto.plugins';
import { KeyPair } from './smartcrypto.classes.keypair';
export class Smartcrypto {
public async createKeyPair(): Promise<KeyPair> {
return KeyPair.createNewKeyPair();
}
}