Skip to content

Instantly share code, notes, and snippets.

@Sekaiichi
Created May 6, 2018 11:55
Show Gist options
  • Save Sekaiichi/4d48d04da9b64fd1d76b716a32c03e50 to your computer and use it in GitHub Desktop.
Save Sekaiichi/4d48d04da9b64fd1d76b716a32c03e50 to your computer and use it in GitHub Desktop.
encrypt and decrypt php
<?php
function dec_enc($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