文字列から MD5 ハッシュを取得する必要があります。
エラー MD5 is null を取得します。
文字列から 32 文字の MD5 ハッシュを取得しようとしています。
using (System.Security.Cryptography.MD5 md5 =
System.Security.Cryptography.MD5.Create("TextToHash"))
{
byte[] retVal = md5.Hash;
StringBuilder sb = new StringBuilder();
for (int i = 0; i < retVal.Length; i++)
{
sb.Append(retVal[i].ToString("x2"));
}
}