加密解密高手进!VB.NET 谁能给一个MD5或其他的加密算法

zhangsanbin您好:您的这个怎么弄才能解密?... zhangsanbin您好:您的这个怎么弄才能解密? 展开
 我来答
zhangsanbin
2011-05-27 · TA获得超过1158个赞
知道小有建树答主
回答量:202
采纳率:0%
帮助的人:290万
展开全部
注意参数,Text是密文。sKey是你的加密干扰符
Public Shared Function Decrypt(ByVal Text As String, ByVal sKey As String) As String
Dim provider As New DESCryptoServiceProvider()
Dim num As Integer = Text.Length \ 2
Dim buffer As Byte() = New Byte(num - 1) {}
For i As Integer = 0 To num - 1
Dim num3 As Integer = Convert.ToInt32(Text.Substring(i * 2, 2), &H10)
buffer(i) = CByte(num3)
Next
provider.Key = Encoding.ASCII.GetBytes(FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8))
provider.IV = Encoding.ASCII.GetBytes(FormsAuthentication.HashPasswordForStoringInConfigFile(sKey, "md5").Substring(0, 8))
Dim stream As New MemoryStream()
Dim stream2 As New CryptoStream(stream, provider.CreateDecryptor(), CryptoStreamMode.Write)
stream2.Write(buffer, 0, buffer.Length)
stream2.FlushFinalBlock()
Return Encoding.[Default].GetString(stream.ToArray())
End Function
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式