10 Star 65 Fork 10

uncle wang/OAuthApp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
AppFunctions.cs 848 Bytes
一键复制 编辑 原始数据 按行查看 历史
uncle wang 提交于 2022-09-02 11:55 . 1,后台用户密码改为MD5。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace OAuthApp
{
public static class AppFunctions
{
public static string md5(string str)
{
var bt = Encoding.UTF8.GetBytes(str);
var md5 = MD5.Create();
var md5bt = md5.ComputeHash(bt);
StringBuilder builder = new StringBuilder();
foreach (var item in md5bt)
{
builder.Append(item.ToString("x2"));
}
var md5Str = builder.ToString();
return builder.ToString();
}
public static bool md5Compare(string pwd,string pwd2)
{
var pwd_md5 = md5(pwd);
return pwd_md5 == pwd2;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/seven1986/OAuthApp.git
git@gitee.com:seven1986/OAuthApp.git
seven1986
OAuthApp
OAuthApp
master

搜索帮助