Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/mytecor/idea-cipher

International Data Encryption Algorithm cipher tool
https://github.com/mytecor/idea-cipher

cipher

Last synced: 4 days ago
JSON representation

International Data Encryption Algorithm cipher tool

Awesome Lists containing this project

README

        

# idea-cipher
International Data Encryption Algorithm js implementation

# Usage
```js
let IDEA = require('idea-cipher')

let cipher = new IDEA('secure key')
let encrypted = cipher.encrypt('private message')
let decrypted = cipher.decrypt(encrypted)
```

[Based on](https://github.com/davidmigloz/IDEA-cipher)