/**
  * Shortcut or `ROT13`
  *
  * @param $str
  * @return mixed|string
  */
 public static function rot13($str)
 {
     $_this = new self(Cryptography::getAllCharacters(), 13);
     return $_this->crypt($str);
 }