
By: Rattar
May 20, 2016
Updated Tutorial: Using Juliar's Encryption Module

By: Rattar
May 20, 2016

*import encryption *
This command will import encryption module. If everything went correctly, you should see:Successfully imported module 'encryption'
That means we imported everything correctly! If you see an error...then you probably did something wrong or you're reading this guide at a future time, where the structure has changed. Let's view all encryption commands by typing:*commands=encryption *
We should get a list of commands. At the time of writing this tutorial, I get the following commands:*affine * >> IMPORTED from encryption level: 4*cipherreverse * >> IMPORTED from encryption level: 4*decrypt * >> IMPORTED from encryption level: 4*encrypt * >> IMPORTED from encryption level: 4*l33tencode * >> IMPORTED from encryption level: 4*md5 * >> IMPORTED from encryption level: 4*password * >> IMPORTED from encryption level: 4*rot * >> IMPORTED from encryption level: 4*subcipher * >> IMPORTED from encryption level: 4*unaffine * >> IMPORTED from encryption level: 4*unrot * >> IMPORTED from encryption level: 4*unsubcipher * >> IMPORTED from encryption level: 4
Let's start with l33tencode. l33tencode will encode your words into l33tspeak. It's useful for quickly generating l33t language.Example:*l33tencode hello *
Produces:{-}3|10
md5 will encode your words into md5 codec.Example:*md5 hello *
Produces:12eca6f25b6b7b5d14f2bc45cd90cc4
encrypt will encrypt your words using blowfish. To set the key specify as a param:Example:*encrypt=key hello *
Produces:E922208C867786F3
We can decrypt this function by doing this:Example:*decrypt=key E922208C867786F3 *
Produces:Hello
NOTE: You must have a correct key, otherwise you'll get gibberish. rot uses a simple rotation cipher (i.e. Caesar cipher) to rotate words by amount specified:Example:*rot=3 hello *
Produces:khoor
unrot reverses the rotation cipher:Example:*unrot=3 khoor *
Produces:hello
password generates a secure password:Example:*password *
Here are some other fun ones:*affine * and *unaffine * uses the affine algorithm to encrypt/decrypt words.Example:
*affine=3 hello *
Produces:
duppy
Example:
*unaffine=3 duppy *
Produces:
hello
*subcipher * and *unsubcipher * is a substitution cipher:Example:
*subcipher=l,a hello *
Produces:
heaao
Example:
*unsubcipher=a,l heaao *
Produces:
hello
*cipherreverse * reverses the cipher:Example:
*cipherreverse hello *
Produces:
olleh
Feel free to add other cipher suggestions, and I'll add them to the next module.