摘要: 1 public class MD5Utils 2 { 3 public string ComputeHash(string input) 4 { 5 using (MD5 md5 = MD5.Create()) 6 { 7 // 将输入字符串转换为字节数组 8 byte[] inputBytes 阅读全文
posted @ 2023-07-27 20:44 赵三毛 阅读(10) 评论(0) 推荐(0) 编辑