Skip to content

Instantly share code, notes, and snippets.

@fogrew
Created December 11, 2018 14:12
Show Gist options
  • Save fogrew/71eb81b28dfe67b7c4c3f65524ad5c57 to your computer and use it in GitHub Desktop.
Save fogrew/71eb81b28dfe67b7c4c3f65524ad5c57 to your computer and use it in GitHub Desktop.
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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment