gpt4 book ai didi

asp.net-mvc - 如何在 ASP.NET MVC 中生成加密哈希?

转载 作者:行者123 更新时间:2023-12-04 13:03:22 26 4
gpt4 key购买 nike

我正在研究创建一个自定义成员登录系统(用于学习),但我一直无法找出生成加密哈希的 C# 命令。

我需要导入某个命名空间或类似的东西吗?

最佳答案

使用命名空间 System.Security.Cryptography:

MD5 md5 = new MD5CryptoServiceProvider();
Byte[] originalBytes = ASCIIEncoding.Default.GetBytes(originalPassword);
Byte[] encodedBytes = md5.ComputeHash(originalBytes);

return BitConverter.ToString(encodedBytes);

FormsAuthentication.HashPasswordForStoringInConfigFile method

关于asp.net-mvc - 如何在 ASP.NET MVC 中生成加密哈希?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2804991/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com