1.0.5 • Published 6 years ago

binch v1.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

binch

(bin)ary encryption algorithm based off cipherHash (ch)

How to Install

npm i binch

How to Use

// Load the module
var b = require("binch");

// Encrypt a String

b.binch("100110101010001010011010100101010", "password");

>>> "111101000011001011101111001101100"

// Decrypt a String

b.binch("111101000011001011101111001101100", "password");

>>> "100110101010001010011010100101010"

This is a super simple library that's made mainly for personal use, but feel free to use it!

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

0.0.1

6 years ago

1.0.0

6 years ago