nencrypt
v1.0.0
Published
A port of JSEncrypt to NodeJS.
Downloads
11
Readme
nencrypt
A port of JSEncrypt to NodeJS.
Installation
$ npm install nencrypt --save
Examples
// Example RSA encryption
var JSEncrypt = require("node-jsencrypt");
var encrypt = new JSEncrypt();
encrypt.setPublicKey(publicKey);
encrypted = encrypt.encrypt(data);