smartkey/ts/smartkey.classes.smartkey.ts
2019-02-23 15:53:18 +01:00

11 lines
250 B
TypeScript

import * as plugins from './smartkey.plugins';
import { KeyPair } from './smartkey.classes.keypair';
export class SmartKey {
// instance
public async getKeypair(passohrase?: string): Promise<KeyPair> {
return KeyPair.createKeyPair();
}
}