Created
September 4, 2015 15:59
-
Star
(188)
You must be signed in to star a gist -
Fork
(75)
You must be signed in to fork a gist
-
-
Save joashp/a1ae9cb30fa533f4ad94 to your computer and use it in GitHub Desktop.
Simple PHP encrypt and decrypt using OpenSSL
This file contains hidden or 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. "\n"; | |
$encrypted_txt = encrypt_decrypt('encrypt', $plain_txt); | |
echo "Encrypted Text = " .$encrypted_txt. "\n"; | |
$decrypted_txt = encrypt_decrypt('decrypt', $encrypted_txt); | |
echo "Decrypted Text =" .$decrypted_txt. "\n"; | |
if ( $plain_txt === $decrypted_txt ) echo "SUCCESS"; | |
else echo "FAILED"; | |
echo "\n"; | |
?> |
Thanks Man !
How can I decrypt this in java ?
Thank you so much, but I have some questions :
- Is it safe to use that code in my website when every one know it?
- What's the maximum length of the $secret_key and the $secret_iv?
- What's the best way to hide that code from everyone?
-Adel Sbeh
How to add cs5 padding with the encryption?? please, I need to know urgently.
great code, thanks a lot
Hello thanks for the code, works well, and works with short text strings but how I can encrypt text longer?
Hello from 2021,
Helped me ;)
Helped me 👍
How can I decrypt this in java ?
simple, you must move to php. haha. just kidding
Does it work for large amounts of text?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Mcrypt is a replacement for the popular Unix crypt command. the crypt was a file encryption tool that used an algorithm very close to the World War II Enigma cipher. Mcrypt provides the same functionality but uses several modern algorithms such as AES.
class MCrypt {
}
function encryptkey($key) {
$mcrypt = new MCrypt();
$encrypted = $mcrypt->encrypt($key);
return $encrypted;
}
function decryptkey($key) {
$mcrypt = new MCrypt();
$decrypted = $mcrypt->decrypt($key);
return $decrypted;
}
$value = "Legend Blogs";
echo $value.'
';
echo "Encrypt: ". encryptkey($value).'
';
echo "Decrypt: ". decryptkey(encryptkey($value)).'
';
Complete example at here How do you Encrypt and Decrypt a PHP String