難読化、復号化のスクリプト例


//難読化、復号化のスクリプト例

$key="abcdefghijklmnopqrstuvwxyzABCDEF";//32文字
$iv="1234567897123456";                //16文字
$method="AES-256-CBC";

//ここに難読化したい文字列を入れる
$auth = "";

//難読化
$enc_string = bin2hex( openssl_encrypt( $auth,$method, $key, 0, $iv ) );

//復号化
$get_auth = openssl_decrypt( hex2bin( $enc_string), $method, $key, 0, $iv);