soteriacrypt
v1.1.0
Published
Package for encrypting and decrypting using AES-256-CBC
Downloads
3
Readme
SoteriaCrypt
soteriacrypt is an NPM package that provides encryption and decryption functionality using the AES-256-CBC algorithm.
Requirements
- Node.js 19.0.0 or higher
- Jest Testing Framework
Installation
You can install soteriacrypt using:
npm -i soteriacrypt
or
yarn add soteriacrypt
Usage
let SoteriaCrypt = require("soteriacrypt");
let soteriaCrypt = new SoteriaCrypt();
//Encrypt data
let encrypted = soteriaCrypt.encrypt("Hello World");
//Decrypt data
let decrypted = soteriaCrypt.decrypt(encrypted);
Testing
npm run test
License
Author
Contributing
Pull requests are welcome. For maj-or changes, please open an issue first to discuss what you would like to change.
Support
If you like this project, please consider giving it a ⭐️ on GitHub