Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mytecor/idea-cipher
- Owner: mytecor
- License: mit
- Created: 2021-04-18T02:26:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-04-19T01:57:42.000Z (over 3 years ago)
- Last Synced: 2024-12-09T12:42:29.695Z (14 days ago)
- Topics: cipher
- Language: JavaScript
- Homepage: https://mytecor.github.io/idea-cipher
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)