Skip to content

M0hammedImran/encdec

Repository files navigation

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

About

Simple encryption and decryption library for nodejs

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published