https://github.com/playerony/crypt-js
https://github.com/playerony/crypt-js
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/playerony/crypt-js
- Owner: playerony
- License: mit
- Created: 2018-08-05T07:28:18.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-21T15:13:48.000Z (over 6 years ago)
- Last Synced: 2025-02-03T08:16:25.000Z (5 months ago)
- Language: JavaScript
- Size: 31.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# crypt-js
## Usage
Simple data crypt
###
## Example
```javascript
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
```json
{
"algorithms": ["DES", "MD5"],
"result": "76e2fba0bb05f2da1814c5e088e20241"
}
```
###