soteriacrypt

1.1.0 • Public • Published

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

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i soteriacrypt

    Weekly Downloads

    1

    Version

    1.1.0

    License

    MIT

    Unpacked Size

    8.38 kB

    Total Files

    8

    Last publish

    Collaborators

    • smnjuguna