smartkey/ts/smartkey.classes.smartkey.ts
2019-02-23 16:09:57 +01:00

10 lines
265 B
TypeScript

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