View Source CaesarCipher (Caesar Cipher v0.2.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!"