关于MD5加密的问题,我写意了一个加密的代码,但输出有问题,请大家帮我看看,多谢了!<script language="VB" runat="server">
Sub DisplayEncryptedText()
Dim md5Hasher as New MD5CryptoServiceProvider()
Dim hashedDataBytes as Byte()
Dim encoder as New UTF8Encoding()
hashedDataBytes = md5Hasher.ComputeHash(encoder.GetBytes("50.00020050707-12690-17092012690http://www.soliao.com/e_bank_back.aspxwwwfangyuannetcnzjf1979"))
Dim b as Byte
response.write(hashedDataBytes)
End Sub
</script>