Explaination
It's two JavaScript functions to crypt and decrypt messages with a password.
How to use
Include var crypt = require("crypt-js");
in your code.
In a JavaScript script type crypt.crypt([message], [password]);
and it will return the crypted message.
To decrypt a message, use crypt.decrypt([message], [password]);
.