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