1 | <?php |
||
2 | require "config.php"; |
||
3 | require "vendor/autoload.php"; |
||
4 | use Erykai\Cryption\Cryption; |
||
5 | |||
6 | $email = "[email protected]"; |
||
7 | |||
8 | $Cryption = new Cryption(); |
||
9 | $emailCryption = $Cryption->encryption($email); |
||
10 | $emailDecryption = $Cryption->decryption($emailCryption); |
||
11 | |||
12 | print_r($emailCryption, $emailDecryption); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |