crypto-npm

1.0.0 • Public • Published

Crypto-npm

Crypto-npm is a small NPM Package to encrypt and decrypt arbitrary length messages via a pseudorandom functions.

Installation

Use the package manager npm to install crypto-npm.

npm install crypto-npm

Usage

const assert = require("assert");
const { getKey, encrypt, decrypt } = require("crypto-npm");

const message = "The secret message";
const key = getKey("the seed", message.length);
const encrypted = encrypt(message, key);
const decrypted = decrypt(encrypted, key);

assert(message === decrypted);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

BSD 3-Clause License

Package Sidebar

Install

npm i crypto-npm

Weekly Downloads

6

Version

1.0.0

License

BSD-3-Clause

Unpacked Size

4.48 kB

Total Files

8

Last publish

Collaborators

  • alejack9