@playerony/crypt-js

2.0.0 • Public • Published

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"
}

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @playerony/crypt-js

      Weekly Downloads

      1

      Version

      2.0.0

      License

      MIT

      Unpacked Size

      33.5 kB

      Total Files

      15

      Last publish

      Collaborators

      • playerony