摘要: public static string GetMd5(string Str) { MD5 md5Hash = MD5.Create(); // 将输入字符串转换为字节数组并计算哈希数据 byte[] data = md5Hash.ComputeHash(Encoding.UTF8.GetBytes 阅读全文
posted @ 2023-03-02 17:08 RC城 阅读(66) 评论(0) 推荐(0) 编辑