Crypt-PHP encryption/decryption on your data with PHP for more security
The usage of this class is really simple. It contains two public methods:
<?php
require_once 'crypt.php';
$r = new securtiy\crypto\crypto();
echo $r->enCrypt("shad0w")."<br>";
echo $r->deCrypt("zFkZslGeDlLFyF8Bcllt3ZZ3rcC8zPeOAc6LSIeHQ6s");
?>