smartcrypto/ts/smartcrypto.classes.smartcrypto.ts

9 lines
237 B
TypeScript
Raw Normal View History

2022-10-23 21:53:34 +00:00
import * as plugins from './smartcrypto.plugins.js';
import { KeyPair } from './smartcrypto.classes.keypair.js';
export class Smartcrypto {
2019-10-01 17:28:50 +00:00
public async createKeyPair(): Promise<KeyPair> {
2019-10-01 13:32:19 +00:00
return KeyPair.createNewKeyPair();
2019-10-01 17:28:50 +00:00
}
}