1.0.0 • Published 5 months ago

native-crypto-js v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

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);
1.0.0

5 months ago