PHP DES加密解密
阿新 • • 發佈:2019-01-24
這是一段 DES 解密的 PHP 程式碼。
參考自 http://php.net/manual/zh/function.mcrypt-module-open.php 中的例程。 本來也 沒有什麼難的。
但是我 解密 完 後 反覆試,都是下面 這樣的不可見 的亂碼。
� �]Y)�aw#�Y��ӱ��]m�/m�2��]C��f��V(�I����㬃~�Ռ��� �e=i"C������
搞了大半天才 發現,是因為 對方 加密完之後 ,把二進位制的 密文 轉換成 十六進位制的 給我傳了過來 ,如13BD5122F55E706D13FB7D0F349A787D19E9D2334E268A15
大家看清楚啊, 這個可不能當作 密文字身 ,我就只因為 直接解密 這個 16進位制的字串 所以才 無法解密的。 需要 先把這個 16進位制的 字串 傳化 回 二進位制的 模樣,再用 解密方法解密 ,就可以看到明文了 。
十六進位制 轉 二進位制 的方法 是hex2bin
cryptare 這個函式 是 加密解密用的 ,第一個引數是 明文或者密文, 第二個引數是key, 第三個引數 0 表示 解密,1就是 加密。
注: 加密的時候可能用不到 $text = $this->hex2bin($text); 這一句。
function hex2bin($hexData) { $binData = ""; for($i = 0; $i < strlen ( $hexData ); $i += 2) { $binData .= chr ( hexdec ( substr ( $hexData, $i, 2 ) ) ); } return $binData; } function cryptare($text, $key, $crypt) { $text = $this->hex2bin($text); $encrypted_data=""; $td = mcrypt_module_open('des', '', 'ecb', ''); $iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($td), MCRYPT_DEV_RANDOM); mcrypt_generic_init($td, $key, $iv); if($crypt) { $encrypted_data = mcrypt_generic($td, $text); print $encrypted_data ; } else { $encrypted_data = mdecrypt_generic($td, $text); } mcrypt_generic_deinit($td); mcrypt_module_close($td); return $encrypted_data; }