2019-02-23 14:53:18 +00:00
|
|
|
import * as plugins from './smartkey.plugins';
|
|
|
|
import { KeyPair } from './smartkey.classes.keypair';
|
|
|
|
|
|
|
|
export class SmartKey {
|
|
|
|
// instance
|
2019-02-23 15:09:57 +00:00
|
|
|
public async getKeypair(passphraseArg?: string): Promise<KeyPair> {
|
|
|
|
return KeyPair.createKeyPair(passphraseArg);
|
2019-02-23 14:53:18 +00:00
|
|
|
}
|
|
|
|
}
|