Created
November 4, 2017 09:23
-
-
Save mataprasad/baefc94bc575b83e13f26bb38de42383 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include_once "./Helper/CryptoHelper.php"; | |
$input = "Text to encrypt"; | |
echo "input:". $input."</br>"; | |
$cipher = CryptoHelper::encrypt($input); | |
echo "cipher:". $cipher."</br>"; | |
$output = CryptoHelper::decrypt($cipher); | |
echo "output:".$output; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment