摘要: public static string ToMD5Hash(this string str) { if (string.IsNullOrEmpty(str)) return null; return Encoding.ASCII.GetBytes(str).ToMD5Hash(); } public static string ToMD5Hash(this byte[] bytes) { if 阅读全文
posted @ 2019-11-04 14:26 daviyoung 阅读(154) 评论(0) 推荐(0)