我对使用 PHP 进行加密还很陌生。如何从以下返回的加密中解密输出?
$key = "123456";
$text = "hello";
$cipher_alg = MCRYPT_RIJNDAEL_128;
$encrypted_body = mcrypt_encrypt($cipher_alg, $key, $text , MCRYPT_MODE_CBC, $iv);
$encrypted_body_hex = bin2hex($encrypted_body);
$encrypted_body_hex = strtoupper($encrypted_body_hex);
我想如果我只是向后工作就可以了(strtolower,hex2bin,然后通过 mcrypt_decrypt 提供它)但我没有任何运气。
我想我迷失了 bin2hex,因为我的 PHP 版本不支持 hex2bin。
任何帮助都会很棒。
提前致谢