2012年8月3日
摘要: View Code using System;namespace MyFunc{ public class MyMD5 { private const int BITS_TO_A_BYTE = 8; private const int BYTES_TO_A_WORD = 4; private const int BITS_TO_A_WORD = 32; private int[] m_lOnBits; private int[] m_l2Power; private int Get... 阅读全文
posted @ 2012-08-03 09:57 CodeBase 阅读(189) 评论(0) 推荐(0) 编辑