yocrypt
v1.0.0
Published
YoCrypt is a new way to encode and decode text symetrically. It's inspired by the Caesar Cipher, but it's a little bit more complicated.
Downloads
2
Maintainers
Readme
YoCrypt algorithm written in JavaScript
YoCrypt is a new way to encode and decode text symetrically. It works with a key and is a variation of the Caesar cipher. If you want to know more about YoCrypt, check out the GitHub.
The files located in this directory implement the YoCrypt algorithm with a JavaScript library.
Usage
Encoding
To encode a text using YoCrypt, use the encode()
function from the library :
node> let yocrypt = require('yocrypt');
node> yocrypt.encode('hello my name is john doe');
'hello ud zmbm ne vdps pat'
Decoding
To encode a text using YoCrypt, use the decode()
function from the library :
node> let yocrypt = require('yocrypt');
node> yocrypt.decode('hello ud zmbm ne vdps pat');
'hello my name is john doe'
To go further...
If you want to go further through the uses of the library, take a look at the documentation. You can also check out the GitHub.