Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/playerony/crypt-js
https://github.com/playerony/crypt-js
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/playerony/crypt-js
- Owner: playerony
- License: mit
- Created: 2018-08-05T07:28:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-21T15:13:48.000Z (about 6 years ago)
- Last Synced: 2024-11-17T04:46:42.728Z (about 2 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"
}
```
###