0.1.0 • Published 11 months ago

aes-optimal v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

AES Optimal - Encryption Library (Node.js)

Cipher: AES/256/CBC/PKCS7Padding with random generated salt

Works on the node.js and is compatible with React-native

Installation

npm install aes-optimal

Usage

var AES256  = require('aes-optimal');

// encryption
var encrypted = AES256.encrypt('TEXT', 'PASSWORD')
console.log(encrypted);

// decryption
console.log(AES256.decrypt(encrypted, 'PASSWORD'));
0.1.0

11 months ago

0.0.2

1 year ago

0.0.1

1 year ago