fix(core): update

This commit is contained in:
Philipp Kunz 2019-10-01 18:04:43 +02:00
parent a7660deb78
commit afa91b3da3
6 changed files with 742 additions and 548 deletions

1200
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,14 +13,16 @@
"format": "(gitzone format)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7",
"@types/node": "^11.9.5",
"tslint": "^5.11.0",
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tstest": "^1.0.24",
"@pushrocks/tapbundle": "^3.0.13",
"@types/node": "^12.7.8",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {
"jsonwebtoken": "^8.5.0"
"@pushrocks/smartcrypto": "^1.0.5",
"@types/jsonwebtoken": "^8.3.4",
"jsonwebtoken": "^8.5.1"
}
}

View File

@ -1,8 +1,16 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartjwt from '../ts/index';
tap.test('first test', async () => {
console.log(smartjwt.standardExport);
let smartjwtInstance: smartjwt.SmartJwt;
tap.test('should create a valid instance', async () => {
smartjwtInstance = new smartjwt.SmartJwt();
await smartjwtInstance.createNewKeyPair();
console.log(smartjwtInstance);
});
tap.test('should create a valid jwt', async () => {
});
tap.start();

View File

@ -1,5 +1 @@
import * as plugins from './smartjwt.plugins';
export class SmartJwt {
}
export * from './smartjwt.classes.smartjwt';

View File

@ -0,0 +1,50 @@
import * as plugins from './smartjwt.plugins';
/**
*
*/
export class SmartJwt {
public smartcryptoInstance = new plugins.smartcrypto.Smartcrypto();
public publicKey: plugins.smartcrypto.PublicKey;
public privateKey: plugins.smartcrypto.PrivateKey;
constructor() {};
/**
* creates a JWT
*/
public async createJWT(payloadArg: any) {
return plugins.jsonwebtoken.sign(payloadArg, this.privateKey.toPemString());
}
/**
* checks a JWT
*/
public async verifyJWTAndGetData(jwtArg: string) {
return plugins.jsonwebtoken.verify(jwtArg, this.publicKey.toPemString());
};
/**
* sets a private key to create jwts with
*/
public async setPrivateKey(privateKey: plugins.smartcrypto.PrivateKey) {
this.privateKey = privateKey;
}
/**
* sets a public key
*/
public async setPublicKey(publicKey: plugins.smartcrypto.PublicKey) {
this.publicKey = publicKey;
}
/**
* creates a new keypair
*/
public async createNewKeyPair() {
const keypair = await this.smartcryptoInstance.createKeyPair();
this.setPrivateKey(keypair.privateKey);
this.setPublicKey(keypair.publicKey);
}
}

View File

@ -1,3 +1,11 @@
// @pushrocks scope
import * as smartcrypto from '@pushrocks/smartcrypto';
export {
smartcrypto
};
// thirdparty scope
import * as jsonwebtoken from 'jsonwebtoken';
export {
jsonwebtoken