如何使用 C# 为我的 WinRT 应用生成 MD5 哈希代码?
我正在创建一个 MetroStyle 应用程序,我想为我的字符串生成 MD5 代码。到目前为止,我已经使用了这个:
public static string ComputeMD5(string str)
{
try
{
var alg = HashAlgorithmProvider.OpenAlgorithm("MD5");
IBuffer buff = CryptographicBuffer.ConvertStringToBinary(str, BinaryStringEncoding.Utf8);
var hashed = alg.HashData(buff);
var res = CryptographicBuffer.ConvertBinaryToString(BinaryStringEncoding.Utf8, hashed);
return res;
}
catch (Exception ex)
{
return null;
}
}
但它引发了 System.ArgumentOutOfRangeException
类型的异常,并显示以下错误消息:
目标多字节代码页中不存在 Unicode 字符的映射。 (HRESULT 异常:0x80070459)
我在这里做错了什么?
I'm creating a MetroStyle app and I want to generate a MD5 code for my string. So far I've used this:
public static string ComputeMD5(string str)
{
try
{
var alg = HashAlgorithmProvider.OpenAlgorithm("MD5");
IBuffer buff = CryptographicBuffer.ConvertStringToBinary(str, BinaryStringEncoding.Utf8);
var hashed = alg.HashData(buff);
var res = CryptographicBuffer.ConvertBinaryToString(BinaryStringEncoding.Utf8, hashed);
return res;
}
catch (Exception ex)
{
return null;
}
}
but it throws an exception of type System.ArgumentOutOfRangeException
with the following error message:
No mapping for the Unicode character exists in the target multi-byte code page. (Exception from HRESULT: 0x80070459)
What am I doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的。我已经找到了如何做到这一点。这是最终的代码:
OK. I've found how to do this. Here's the final code: