1.1.0 • Published 8 years ago

cryptonger v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
8 years ago

$ cryptonger

The module encrypts and decrypts text using a password. By default uses the aes-256-ctr algorithm

Installation

$ npm i cryptonger

CLI Usage

You can install the package globally and use it as command line tool:

$ npm i -g cryptonger

Then, run cryptonger --help and see what the CLI tool can do.

Example

Here is an example how to use this package as library.

const cryptonger = require("cryptonger/cryptonger");

// Encrypt the text using the password "123456"
console.log(cryptonger.encrypt("123456", "Cool text to be crypted")); // 'b3e15ab6b57967c72bdcb5a88ce3708adf1167da641db5'
// Decrypt the text using the password "123456"
console.log(cryptonger.decrypt("123456", "b3e15ab6b57967c72bdcb5a88ce3708adf1167da641db5")); // 'Cool text to be crypted'

Documentation

For full API reference, see the DOCUMENTATION.md file.

How to contribute

Have an idea? Found a bug? See how to contribute.

License

See the LICENSE file.

1.1.0

8 years ago

1.0.5

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago