1.1.0 • Published 2 years ago

soteriacrypt v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

SoteriaCrypt

NPM Package License: MIT

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

MIT

Author

Simon Njuguna

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

1.1.0

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago