jCryptoJS 、C#互通加密(MD5版)

2021-03-29 05:29

阅读:564

标签:pts   ini   utf8   通过   cti   onclick   csharp   字节   ret   

/////////////////////////////////////////////////////////前端代码///////////////////////////////////////////////////////////////

  

 

////////////////////////////////////////////////////////后台代码/////////////////////////////////////////////////////////////// 

  
/// /// 32位MD5加密 /// /// /// public static string MD5Encrypt32(string password) { string cl = password; string pwd = ""; MD5 md5 = MD5.Create(); //实例化一个md5对像 // 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择  byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(cl)); // 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得 for (int i = 0; i

  

jCryptoJS 、C#互通加密(MD5版)

标签:pts   ini   utf8   通过   cti   onclick   csharp   字节   ret   

原文地址:https://www.cnblogs.com/5tomorrow/p/9309266.html


评论


亲,登录后才可以留言!