fix(core): update
This commit is contained in:
parent
100c92c6fd
commit
693a26bba7
3
package-lock.json
generated
3
package-lock.json
generated
@ -175,8 +175,7 @@
|
|||||||
"@pushrocks/smartpromise": {
|
"@pushrocks/smartpromise": {
|
||||||
"version": "2.0.5",
|
"version": "2.0.5",
|
||||||
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-2.0.5.tgz",
|
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartpromise/-/smartpromise-2.0.5.tgz",
|
||||||
"integrity": "sha512-9j/chLtIiNkR0MDw7Mpxg9slxAVvAQwUZuiaPYX5KpHdKxQaHLI1VZ8IN0vPhwlfgNO4i4vGXV0wB8BvSDj03g==",
|
"integrity": "sha512-9j/chLtIiNkR0MDw7Mpxg9slxAVvAQwUZuiaPYX5KpHdKxQaHLI1VZ8IN0vPhwlfgNO4i4vGXV0wB8BvSDj03g=="
|
||||||
"dev": true
|
|
||||||
},
|
},
|
||||||
"@pushrocks/smartrequest": {
|
"@pushrocks/smartrequest": {
|
||||||
"version": "1.1.14",
|
"version": "1.1.14",
|
||||||
|
@ -20,5 +20,7 @@
|
|||||||
"tslint": "^5.11.0",
|
"tslint": "^5.11.0",
|
||||||
"tslint-config-prettier": "^1.15.0"
|
"tslint-config-prettier": "^1.15.0"
|
||||||
},
|
},
|
||||||
"dependencies": {}
|
"dependencies": {
|
||||||
|
"@pushrocks/smartpromise": "^2.0.5"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
20
test/test.ts
20
test/test.ts
@ -1,8 +1,20 @@
|
|||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
import * as smartkey from '../ts/index'
|
import * as smartkey from '../ts/index';
|
||||||
|
|
||||||
|
let testSmartkey: smartkey.SmartKey;
|
||||||
|
|
||||||
tap.test('first test', async () => {
|
tap.test('first test', async () => {
|
||||||
console.log(smartkey.standardExport)
|
testSmartkey = new smartkey.SmartKey();
|
||||||
})
|
expect(testSmartkey).to.be.instanceOf(smartkey.SmartKey);
|
||||||
|
});
|
||||||
|
|
||||||
tap.start()
|
tap.test('should create a valid keypair', async () => {
|
||||||
|
const keyPair = await testSmartkey.getKeypair();
|
||||||
|
expect(keyPair).to.be.instanceOf(smartkey.KeyPair);
|
||||||
|
console.log(keyPair.publicKey);
|
||||||
|
console.log(keyPair.privateKey);
|
||||||
|
|
||||||
|
console.log('note: these keys do not have any function, they are just a test ReferenceError.');
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.start();
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
import * as plugins from './smartkey.plugins';
|
export * from './smartkey.classes.smartkey';
|
||||||
|
export * from './smartkey.classes.keypair';
|
||||||
export let standardExport = 'Hi there! :) This is an exported string';
|
|
48
ts/smartkey.classes.keypair.ts
Normal file
48
ts/smartkey.classes.keypair.ts
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import * as plugins from './smartkey.plugins';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* represents a keypair
|
||||||
|
*/
|
||||||
|
export class KeyPair {
|
||||||
|
// static
|
||||||
|
public static async createKeyPair (passphraseArg = ''): Promise<KeyPair> {
|
||||||
|
const done = plugins.smartpromise.defer<KeyPair>();
|
||||||
|
plugins.crypto.generateKeyPair('rsa', {
|
||||||
|
modulusLength: 4096,
|
||||||
|
publicKeyEncoding: {
|
||||||
|
type: 'spki',
|
||||||
|
format: 'pem'
|
||||||
|
},
|
||||||
|
privateKeyEncoding: {
|
||||||
|
type: 'pkcs8',
|
||||||
|
format: 'pem',
|
||||||
|
cipher: 'aes-256-cbc',
|
||||||
|
passphrase: passphraseArg
|
||||||
|
}
|
||||||
|
}, (err, publicKeyArg, privateKeyArg) => {
|
||||||
|
// convey error
|
||||||
|
if (err) {
|
||||||
|
done.reject(err);
|
||||||
|
throw (err);
|
||||||
|
}
|
||||||
|
const keyPairInstance = new KeyPair({
|
||||||
|
privateKey: privateKeyArg,
|
||||||
|
publicKey: publicKeyArg
|
||||||
|
});
|
||||||
|
done.resolve(keyPairInstance);
|
||||||
|
});
|
||||||
|
return done.promise;
|
||||||
|
}
|
||||||
|
|
||||||
|
// instance
|
||||||
|
public publicKey: string;
|
||||||
|
public privateKey: string;
|
||||||
|
|
||||||
|
constructor(optionsArg: {
|
||||||
|
privateKey: string;
|
||||||
|
publicKey: string;
|
||||||
|
}) {
|
||||||
|
this.privateKey = optionsArg.privateKey;
|
||||||
|
this.publicKey = optionsArg.publicKey;
|
||||||
|
}
|
||||||
|
}
|
10
ts/smartkey.classes.smartkey.ts
Normal file
10
ts/smartkey.classes.smartkey.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import * as plugins from './smartkey.plugins';
|
||||||
|
import { KeyPair } from './smartkey.classes.keypair';
|
||||||
|
|
||||||
|
|
||||||
|
export class SmartKey {
|
||||||
|
// instance
|
||||||
|
public async getKeypair(passohrase?: string): Promise<KeyPair> {
|
||||||
|
return KeyPair.createKeyPair();
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,13 @@
|
|||||||
const removeme = {};
|
// node native
|
||||||
|
import * as crypto from 'crypto';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
removeme
|
crypto
|
||||||
}
|
};
|
||||||
|
|
||||||
|
// @pushrocks scope
|
||||||
|
import * as smartpromise from '@pushrocks/smartpromise';
|
||||||
|
|
||||||
|
export {
|
||||||
|
smartpromise
|
||||||
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user