2 Commits

Author SHA1 Message Date
566a07a6b5 1.0.10 2020-03-28 22:48:18 +00:00
f3e1703eef fix(core): update 2020-03-28 22:48:17 +00:00
3 changed files with 6 additions and 2 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartjwt", "name": "@pushrocks/smartjwt",
"version": "1.0.9", "version": "1.0.10",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/smartjwt", "name": "@pushrocks/smartjwt",
"version": "1.0.9", "version": "1.0.10",
"private": false, "private": false,
"description": "a package for handling jwt", "description": "a package for handling jwt",
"main": "dist/index.js", "main": "dist/index.js",

View File

@ -73,4 +73,8 @@ export class SmartJwt {
this.setPrivateKey(keypair.privateKey); this.setPrivateKey(keypair.privateKey);
this.setPublicKey(keypair.publicKey); this.setPublicKey(keypair.publicKey);
} }
public async init() {
await this.createNewKeyPair();
}
} }