Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/playerony/crypt-js


https://github.com/playerony/crypt-js

Last synced: 4 days ago
JSON representation

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