Skip to content

Instantly share code, notes, and snippets.

@santiazpi
Created January 6, 2020 18:24
Show Gist options
  • Save santiazpi/edcd5d48d0b11841dafe9dd4919610bf to your computer and use it in GitHub Desktop.
Save santiazpi/edcd5d48d0b11841dafe9dd4919610bf to your computer and use it in GitHub Desktop.
<?php // from https://web.archive.org/web/20161021193734/https://andrewho.nl/encrypt-decrypt-strings-php-easy-way/
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;
}
@santiazpi
Copy link
Author

santiazpi commented Jan 6, 2020

How to Encrypt and Decrypt Advanced Custom Fields

Informationfrom https://support.advancedcustomfields.com/forums/topic/encrypting-field-for-ssn/

We would use 2 filters
decrypt with acf/load_value/name={$field_name}
and encrypt with acf/update_value/name={$field_name}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment