Created
January 20, 2022 15:53
-
-
Save ruman/0606c4e1b02966e313e9e0f52b864b37 to your computer and use it in GitHub Desktop.
Encrypt and Decrypt with single function
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 | |
/** | |
* simple method to encrypt or decrypt a plain text string | |
* initialization vector(IV) has to be the same when encrypting and decrypting | |
* | |
* @param string $action: can be 'encrypt' or 'decrypt' | |
* @param string $string: string to encrypt or decrypt | |
* | |
* @return string | |
*/ | |
function encrypt_decrypt($action, $string) { | |
$output = false; | |
$encrypt_method = "AES-256-CBC"; | |
$secret_key = 'This is my secret key'; | |
$secret_iv = 'This is my secret iv'; | |
// hash | |
$key = hash('sha256', $secret_key); | |
// iv - encrypt method AES-256-CBC expects 16 bytes - else you will get a warning | |
$iv = substr(hash('sha256', $secret_iv), 0, 16); | |
if ( $action == 'encrypt' ) { | |
$output = openssl_encrypt($string, $encrypt_method, $key, 0, $iv); | |
$output = base64_encode($output); | |
} else if( $action == 'decrypt' ) { | |
$output = openssl_decrypt(base64_decode($string), $encrypt_method, $key, 0, $iv); | |
} | |
return $output; | |
} | |
$plain_txt = "This is my plain text"; | |
echo "Plain Text =" .$plain_txt. "<br/><br/>"; | |
$encrypted_txt = encrypt_decrypt('encrypt', $plain_txt); | |
echo "Encrypted Text = " .$encrypted_txt. "<br/><br/>"; | |
$decrypted_txt = encrypt_decrypt('decrypt', $encrypted_txt); | |
echo "Decrypted Text =" .$decrypted_txt. "<br/><br/>"; | |
if ( $plain_txt === $decrypted_txt ) echo "SUCCESS"; | |
else echo "FAILED"; | |
echo "<br/><br/>"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment