fix(core): update

This commit is contained in:
2021-02-20 17:52:21 +00:00
parent 0f0cfdae77
commit 214677b3c4
8 changed files with 100 additions and 64 deletions

View File

@ -5,6 +5,4 @@ export * from './smartcrypto.classes.publickey';
import { nodeForge } from './smartcrypto.plugins';
export {
nodeForge
};
export { nodeForge };

View File

@ -16,7 +16,7 @@ export class KeyPair {
done.resolve(
new KeyPair({
privateKey: new PrivateKey(keypair.privateKey),
publicKey: new PublicKey(keypair.publicKey)
publicKey: new PublicKey(keypair.publicKey),
})
);
});