A basic encryption/decription script/API for Node.js users. Based on the work by Levi Gross.
Gather Basic256.js, Make your script connected. Example:
var crypter = require("./Basic256.js");
var blob = crypter.enc.run("FOO"); // This encrypts the string "FOO".
console.log(blob); // This will show the encrypted string.
var unblob = crypter.dec.run(blob); // This decrypts the encrypted string.
console.log(unblob); // This will show the decrypted string. (Which in this case, it is "FOO")