我使用下面的C#代码来计算字符串的MD5散列。
它运行良好,并生成一个32个字符的十六进制字符串,如下所示:
900150983cd24fb0d6963f7d28e17f72
string sSourceData;
byte[] tmpSource;
byte[] tmpHash;
sSourceData = "MySourceData";
//Create a byte array from source data.
tmpSource = ASCIIEncoding.ASCII.GetBytes(sSourceData);
tmpHash = new MD5CryptoServiceProvider().ComputeHash(tmpSource);
// and then convert tmpHash to string...
有没有一种方法可以使用这样的代码来生成16个字符的十六进制字符串(或12个字符的字符串)?32个字符的十六进制字符串是好的,但我认为客户输入代码会很无聊!