View Source CaesarCipher (Caesar Cipher v0.1.0)
Documentation for CaesarCipher
.
Link to this section Summary
Functions
This function decrypt a string with the salt specified.
This function encrypt a string with the salt specified.
Link to this section Functions
This function decrypt a string with the salt specified.
## Examples Decrypt
iex> CaesarCipher.decrypt("JGNNQ YQTNF", 2)
"HELLO WORLD"
This function encrypt a string with the salt specified.
## Examples Encrypt
iex> CaesarCipher.encrypt("HELLO WORLD", 2)
"JGNNQ YQTNF"