1.2.2 • Published 2 years ago
@moonstack/encdec v1.2.2
ENCDEC (Encryption and Decryption)
Installation
npm install @moonstack/encdec
Usage
import * as encdec from "@moonstack/encdec";
const key = "mysecretkeymysecretkey1234567890";
const plaintext = "hello world";
const encrypted = encdec.encrypt(plaintext, key);
const decrypted = encdec.decrypt(encrypted, key);
console.log(decrypted);
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details