1.0.0 • Published 2 years ago

yocrypt v1.0.0

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

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.

Discord server for help

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.