0.2.0 • Published 2 years ago

asciicrypt v0.2.0

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

asciicrypt

npm version npm npm

Cipher substituting ascii code characters.

The premise was to create a simple cipher that could be decoded by oneself. Without being forced to use a package.

Installation

npm install asciicrypt

Usage

Generate of secret:

import ac from 'asciicrypt';

ac.createSecret();

// L&t@D=C4N8\\U{g7vPZ3 Mw2cFSl!,Kju~1iz>dBfE\'-`xQ+oG|;O0e"5mY:$*HyJb?[<X)9qTs]6pI(^R/Vah#Wk}A._n%r

Encryption:

ac.encrypt(char, secret);

// x^V)ILsRa#ILX^p^VLashL?I)h{L<^(a)<h)h#VL?XsRsa<s(qL)psh{La)XLX^L)s#aI^XLh)IR^VLs(<sXsX#(hL#hLp?[^V)L)hLX^p^V)LI?q(?L?ps/#?7

Decryption:

ac.decrypt(char, secret);

// Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

License

Distributed under the MIT License. See LICENSE for more information.