@playerony/crypt-js
v2.0.0
Published
JavaScript library of crypt some data.
Downloads
8
Readme
crypt-js
Usage
Simple data crypt
Example
const hash = require("@playerony/crypt-js").hash;
const algorithms = require("@playerony/crypt-js").algorithms;
console.log(
hash({
algorithms: [algorithms.DES, algorithms.MD5, algorithms.ADFGVX],
value: "WOrK"
})
);Result
{
"algorithms": ["DES", "MD5"],
"result": "76e2fba0bb05f2da1814c5e088e20241"
}