fix(core): update
This commit is contained in:
parent
9e6cb240dd
commit
6595d61562
@ -14,4 +14,4 @@
|
|||||||
"npmGlobalTools": [],
|
"npmGlobalTools": [],
|
||||||
"npmAccessLevel": "public"
|
"npmAccessLevel": "public"
|
||||||
}
|
}
|
||||||
}
|
}
|
15
package.json
15
package.json
@ -24,5 +24,16 @@
|
|||||||
"@pushrocks/smartpromise": "^3.0.5",
|
"@pushrocks/smartpromise": "^3.0.5",
|
||||||
"@types/node-forge": "^0.8.6",
|
"@types/node-forge": "^0.8.6",
|
||||||
"node-forge": "^0.9.1"
|
"node-forge": "^0.9.1"
|
||||||
}
|
},
|
||||||
}
|
"files": [
|
||||||
|
"ts/*",
|
||||||
|
"ts_web/*",
|
||||||
|
"dist/*",
|
||||||
|
"dist_web/*",
|
||||||
|
"dist_ts_web/*",
|
||||||
|
"assets/*",
|
||||||
|
"cli.js",
|
||||||
|
"npmextra.json",
|
||||||
|
"readme.md"
|
||||||
|
]
|
||||||
|
}
|
26
readme.md
Normal file
26
readme.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# @pushrocks/smartcrypto
|
||||||
|
easy crypto methods
|
||||||
|
|
||||||
|
## Availabililty and Links
|
||||||
|
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartcrypto)
|
||||||
|
* [gitlab.com (source)](https://gitlab.com/pushrocks/smartcrypto)
|
||||||
|
* [github.com (source mirror)](https://github.com/pushrocks/smartcrypto)
|
||||||
|
* [docs (typedoc)](https://pushrocks.gitlab.io/smartcrypto/)
|
||||||
|
|
||||||
|
## Status for master
|
||||||
|
[![build status](https://gitlab.com/pushrocks/smartcrypto/badges/master/build.svg)](https://gitlab.com/pushrocks/smartcrypto/commits/master)
|
||||||
|
[![coverage report](https://gitlab.com/pushrocks/smartcrypto/badges/master/coverage.svg)](https://gitlab.com/pushrocks/smartcrypto/commits/master)
|
||||||
|
[![npm downloads per month](https://img.shields.io/npm/dm/@pushrocks/smartcrypto.svg)](https://www.npmjs.com/package/@pushrocks/smartcrypto)
|
||||||
|
[![Known Vulnerabilities](https://snyk.io/test/npm/@pushrocks/smartcrypto/badge.svg)](https://snyk.io/test/npm/@pushrocks/smartcrypto)
|
||||||
|
[![TypeScript](https://img.shields.io/badge/TypeScript->=%203.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
|
||||||
|
[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-prettier-ff69b4.svg)](https://prettier.io/)
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
For further information read the linked docs at the top of this readme.
|
||||||
|
|
||||||
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
|
||||||
|
|
||||||
|
[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)
|
@ -7,18 +7,19 @@ export class KeyPair {
|
|||||||
public static async createNewKeyPair(): Promise<KeyPair> {
|
public static async createNewKeyPair(): Promise<KeyPair> {
|
||||||
const done = plugins.smartpromise.defer<KeyPair>();
|
const done = plugins.smartpromise.defer<KeyPair>();
|
||||||
const rsa = plugins.nodeForge.pki.rsa;
|
const rsa = plugins.nodeForge.pki.rsa;
|
||||||
rsa.generateKeyPair({bits: 2048, workers: 2}, async (err, keypair) => {
|
rsa.generateKeyPair({ bits: 2048, workers: 2 }, async (err, keypair) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.log(err);
|
console.log(err);
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
|
|
||||||
done.resolve(new KeyPair({
|
done.resolve(
|
||||||
privateKey: new PrivateKey(keypair.privateKey),
|
new KeyPair({
|
||||||
publicKey: new PublicKey(keypair.publicKey),
|
privateKey: new PrivateKey(keypair.privateKey),
|
||||||
}));
|
publicKey: new PublicKey(keypair.publicKey)
|
||||||
|
})
|
||||||
});
|
);
|
||||||
|
});
|
||||||
return done.promise;
|
return done.promise;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,11 +27,8 @@ export class KeyPair {
|
|||||||
public publicKey: PublicKey;
|
public publicKey: PublicKey;
|
||||||
public privateKey: PrivateKey;
|
public privateKey: PrivateKey;
|
||||||
|
|
||||||
constructor(optionsArg: {
|
constructor(optionsArg: { privateKey: PrivateKey; publicKey: PublicKey }) {
|
||||||
privateKey: PrivateKey;
|
|
||||||
publicKey: PublicKey;
|
|
||||||
}) {
|
|
||||||
this.privateKey = optionsArg.privateKey;
|
this.privateKey = optionsArg.privateKey;
|
||||||
this.publicKey = optionsArg.publicKey;
|
this.publicKey = optionsArg.publicKey;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,15 +7,14 @@ export class PublicKey {
|
|||||||
return new PublicKey(privateKey);
|
return new PublicKey(privateKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
public forgePublicKey: plugins.nodeForge.pki.PublicKey;
|
public forgePublicKey: plugins.nodeForge.pki.PublicKey;
|
||||||
|
|
||||||
constructor (publicKeyArg: plugins.nodeForge.pki.PublicKey) {
|
constructor(publicKeyArg: plugins.nodeForge.pki.PublicKey) {
|
||||||
this.forgePublicKey = publicKeyArg;
|
this.forgePublicKey = publicKeyArg;
|
||||||
}
|
}
|
||||||
|
|
||||||
public toPemString(): string {
|
public toPemString(): string {
|
||||||
return plugins.nodeForge.pki.publicKeyToPem(this.forgePublicKey);
|
return plugins.nodeForge.pki.publicKeyToPem(this.forgePublicKey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@ import * as plugins from './smartcrypto.plugins';
|
|||||||
import { KeyPair } from './smartcrypto.classes.keypair';
|
import { KeyPair } from './smartcrypto.classes.keypair';
|
||||||
|
|
||||||
export class Smartcrypto {
|
export class Smartcrypto {
|
||||||
public async createKeyPair (): Promise<KeyPair> {
|
public async createKeyPair(): Promise<KeyPair> {
|
||||||
return KeyPair.createNewKeyPair();
|
return KeyPair.createNewKeyPair();
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,9 @@
|
|||||||
// @pushrocks scope
|
// @pushrocks scope
|
||||||
import * as smartpromise from '@pushrocks/smartpromise';
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
|
||||||
export {
|
export { smartpromise };
|
||||||
smartpromise
|
|
||||||
};
|
|
||||||
|
|
||||||
// third party scope
|
// third party scope
|
||||||
import * as nodeForge from 'node-forge';
|
import * as nodeForge from 'node-forge';
|
||||||
|
|
||||||
export {
|
export { nodeForge };
|
||||||
nodeForge
|
|
||||||
};
|
|
||||||
|
Loading…
Reference in New Issue
Block a user