PHP 生成MD5为基础的分组密码
内容摘要
这篇文章主要为大家详细介绍了PHP 生成MD5为基础的分组密码,具有一定的参考价值,可以用来参考一下。
PHP生成MD5为基础的分组密码,对此感兴趣的朋友,看看idc笔记做的技术笔记。
PHP生成MD5为基础的分组密码,对此感兴趣的朋友,看看idc笔记做的技术笔记。
文章正文
这篇文章主要为大家详细介绍了PHP 生成MD5为基础的分组密码,具有一定的参考价值,可以用来参考一下。
PHP生成MD5为基础的分组密码,对此感兴趣的朋友,看看idc笔记做的技术笔记。经测试代码如下:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | <code class = "php" > /** * 生成MD5为基础的分组密码 * * @param * @arrange (www.idcnote.com) **/ function md5_encrypt( $plain_text , $password , $iv_len = 16){ $plain_text .= "\x13" ; $n = strlen ( $plain_text ); if ( $n % 16) $plain_text .= str_repeat ( "\0" , 16 - ( $n % 16)); $i = 0; $enc_text = get_rnd_iv( $iv_len ); $iv = substr ( $password ^ $enc_text , 0, 512); while ( $i < $n ) { $block = substr ( $plain_text , $i , 16) ^ pack( 'H*' , md5( $iv )); $enc_text .= $block ; $iv = substr ( $block . $iv , 0, 512) ^ $password ; $i += 16; } return base64_encode ( $enc_text ); } function md5_decrypt( $enc_text , $password , $iv_len = 16){ $enc_text = base64_decode ( $enc_text ); $n = strlen ( $enc_text ); $i = $iv_len ; $plain_text = '' ; $iv = substr ( $password ^ substr ( $enc_text , 0, $iv_len ), 0, 512); while ( $i < $n ) { $block = substr ( $enc_text , $i , 16); $plain_text .= $block ^ pack( 'H*' , md5( $iv )); $iv = substr ( $block . $iv , 0, 512) ^ $password ; $i += 16; } return preg_replace( '/\\x13\\x00*$/' , '' , $plain_text ); } function get_rnd_iv( $iv_len ){ $iv = '' ; while ( $iv_len -- > 0) { $iv .= chr (mt_rand() & 0xff); } return $iv ; } //范例: // // Example // $plain_text = 'very secret string' ; $password = 'very secret password' ; print "plain text is: [${plain_text}]<br />\n" ; print "password is: [${password}]<br />\n" ; $enc_text = md5_encrypt( $plain_text , $password ); print "encrypted text is: [${enc_text}]<br />\n" ; $plain_text2 = md5_decrypt( $enc_text , $password ); print "decrypted text is: [${plain_text2}]<br />\n" ; /*** 来自php教程(www.idcnote.com) ***/ </code> |
注:关于PHP 生成MD5为基础的分组密码的内容就先介绍到这里,更多相关文章的可以留意
代码注释