2 Commits

Author SHA1 Message Date
9e6cb240dd 1.0.5 2019-10-01 15:32:19 +02:00
03175e208a fix(core): update 2019-10-01 15:32:19 +02:00
4 changed files with 9 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartcrypto",
"version": "1.0.4",
"version": "1.0.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartcrypto",
"version": "1.0.4",
"version": "1.0.5",
"private": false,
"description": "easy crypto methods",
"main": "dist/index.js",

View File

@ -1 +1,4 @@
export * from './smartcrypto.classes.smartcrypto';
export * from './smartcrypto.classes.keypair';
export * from './smartcrypto.classes.privatekey';
export * from './smartcrypto.classes.publickey';

View File

@ -1,5 +1,8 @@
import * as plugins from './smartcrypto.plugins';
import { KeyPair } from './smartcrypto.classes.keypair';
export class Smartcrypto {
public async createKeyPair (): Promise<KeyPair> {
return KeyPair.createNewKeyPair();
};
}