Visual Basic 2010 HMAC SHA1
我有一个将字符串转换为 hmac sha1 加密的代码。 但是,我无法让它工作。这是我的代码:
Public Shared Function HashString(ByVal StringToHash As String) As String
Dim myEncoder As New System.Text.UTF32Encoding
Dim Key() As Byte = myEncoder.GetBytes("thisismykey")
Dim Text() As Byte = myEncoder.GetBytes(StringToHash)
Dim myHMACSHA1 As New System.Security.Cryptography.HMACSHA1(Key)
Dim HashCode As Byte() = myHMACSHA1.ComputeHash(Text)
Return Convert.ToBase64String(HashCode)
End Function
当我运行这样的函数时:
TextBox1.Text = HashString("thisismystring")
我在文本框中得到 04p075DKS2Suw9jGQKC5Q7mYjvI=
。 我应该得到的是 c2bc9dd26b76d5b61a40ac788220eef0b26cb2bb
有人知道如何解决这个问题吗?请帮忙:)
i got a code to convert a string to a hmac sha1 encyption.
However, i cant get it to work. Here is my code:
Public Shared Function HashString(ByVal StringToHash As String) As String
Dim myEncoder As New System.Text.UTF32Encoding
Dim Key() As Byte = myEncoder.GetBytes("thisismykey")
Dim Text() As Byte = myEncoder.GetBytes(StringToHash)
Dim myHMACSHA1 As New System.Security.Cryptography.HMACSHA1(Key)
Dim HashCode As Byte() = myHMACSHA1.ComputeHash(Text)
Return Convert.ToBase64String(HashCode)
End Function
When i run the function like this:
TextBox1.Text = HashString("thisismystring")
I get 04p075DKS2Suw9jGQKC5Q7mYjvI=
in the textbox.
What i should get is c2bc9dd26b76d5b61a40ac788220eef0b26cb2bb
Anyone has any idea on how to solve this? Please help :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我找到了解决方案。
我只是将字节转换为字符串,将其降低并替换 - 没有任何内容。
请参阅下面的代码:)
示例用法:
感谢您的帮助:)
I found the solution.
I just converted the byte to a string, made it to lower and replaced - with nothing.
See my code below :)
Example Usage:
Thanks for your help :)
您的
04p075DKS2Suw9jGQKC5Q7mYjvI=
采用 Base64。您的c2bc9dd26b76d5b61a40ac788220eef0b26cb2bb
为十六进制。您需要将一种格式转换为另一种格式,以便可以正确比较它们。ETA:我检查过,两者不匹配,你的十六进制给我 Base64 的
wryd0mt21bYaQKx4giDu8LJssrs=
。我怀疑问题可能在于使用UTF32编码,这是非常不寻常的。 UTF8 或 UTF16 更为常见。首先尝试UTF8。Your
04p075DKS2Suw9jGQKC5Q7mYjvI=
is in Base64. Yourc2bc9dd26b76d5b61a40ac788220eef0b26cb2bb
is in hex. You need to convert one into the other format so you can compare them correctly.ETA: I checked, the two don't match, your hex gives me
wryd0mt21bYaQKx4giDu8LJssrs=
in Base64. I suspect the problem may lie with using UTF32 encoding, this is very unusual. UTF8 or UTF16 are much more common. Try UTF8 first.更正主要 EXCEL,
pour faire du mD5,il faut copier coller le code ci-dessous
correction depuis maj EXCEL,
pour faire du mD5, il faut copier coller le code ci-dessous