native-crypto-js
v1.0.0
Published
run in native.js ``` npm i cryptography ```
Downloads
1
Readme
CryptoGraphy library
Run
run in native.js
npm i cryptography
How to use
const cryptography = require('cryptography');
Examples
const cryptography = require('cryptography');
const { SHA256, generateKeyPair } = cryptography;
const hash = SHA256('Hello World');
console.log(hash);
const { publicKey, privateKey } = generateKeyPair();
console.log(publicKey, privateKey);