我正在增加网站安全性,以便在经典ASP页面中包含sha256加密和salt。要做到这一点,我正在使用本网站的代码。 http://www.freevbcode.com/ShowCode.asp?ID=2565
我最终会将网站升级到.net,所以我想确保我可以匹配经典asp和.net中的加密密码。
在经典的asp中,我这样称呼加密。
GeneratedNewPassword = SHA256(Password & Random & NewGuid)
并生成密码:2551baf9ab959dcb4224b3c3080b5888e0866be1a53f4a123645b71020272a3c
然后我尝试在.net
中创建同样的东西string hashedPassword = Security.HashSha1(password + random + dbUserGuid);
SHA256 sha256 = SHA256Managed.Create(); //utf8 here as well
byte[] bytes = sha256.ComputeHash(Encoding.UTF8.GetBytes(password + random + dbUserGuid));
string result = Convert.ToBase64String(bytes);
生成如下字符串:fzC5FX4ShhZrdqy8MVM7PPVnW4D2gaX6DlinPDRFT2I =
我猜它与我正在使用的utf有关,但不确定。 任何帮助,将不胜感激。
答案 0 :(得分:0)
感谢您的帮助。