Files
smartcrypto/ts/smartcrypto.classes.smartcrypto.ts

9 lines
237 B
TypeScript
Raw Permalink Normal View History

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