C# MD5加密

2019-11-08  本文已影响0人  码嘟嘟

老款MD5  加密方式System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile("123","MD5");

新款MD5 加密方式

BitConverter.ToString(System.Security.Cryptography.MD5.Create().ComputeHash(Encoding.Default.GetBytes("123"))).Replace("-","");

上一篇 下一篇

猜你喜欢

热点阅读