idea-cipher
v1.0.1
Published
International Data Encryption Algorithm js implementation
Downloads
6
Maintainers
Readme
idea-cipher
International Data Encryption Algorithm js implementation
Usage
let IDEA = require('idea-cipher')
let cipher = new IDEA('secure key')
let encrypted = cipher.encrypt('private message')
let decrypted = cipher.decrypt(encrypted)