• C# MD5 32位加密 UTF-8编码


    C# MD5 32位加密 UTF-8编码

    public static string GetMD5(string str)
            {
                byte[] b = System.Text.Encoding.Default.GetBytes(str);

                b = new System.Security.Cryptography.MD5CryptoServiceProvider().ComputeHash(b);
                string ret = "";
                for (int i = 0; i < b.Length; i++)
                {
                    ret += b[i].ToString("x").PadLeft(2, '0');
                }
                return ret;
            }

    在一开始的测试过程中没有出现问题,后来传入的参数包含中文后,就出现问题了,

    经过排查返现Encoding.Default使用的是默认的编码:gb2312

    所以改变加密方式:

     public static string UserMd5(string str)
            {
                string cl = str;
                string pwd = "";
                MD5 md5 = MD5.Create();//实例化一个md5对像
                // 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择 
                byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(cl));
                // 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得
                for (int i = 0; i < s.Length; i++)
                {
                    // 将得到的字符串使用十六进制类型格式。格式后的字符是小写的字母,如果使用大写(X)则格式后的字符是大写字符 
                    pwd = pwd + s[i].ToString("x");

                }
                return pwd;
            }

    但是在和对方测试过程中,发现我这边的MD5加密编码,经常出现少一位或几位的问题;

    后来分析发现是 字符串格式符的问题, X 表示大写, x 表示小写, X2和x2表示不省略首位为0的十六进制数字;

    比如:ox0A, 使用X== 0xA,  使用X2==0x0A

    则改变方法最后的输出格式:

     public static string UserMd5(string str)
            {
                string cl = str;
                string pwd = "";
                MD5 md5 = MD5.Create();//实例化一个md5对像
                // 加密后是一个字节类型的数组,这里要注意编码UTF8/Unicode等的选择 
                byte[] s = md5.ComputeHash(Encoding.UTF8.GetBytes(cl));
                // 通过使用循环,将字节类型的数组转换为字符串,此字符串是常规字符格式化所得
                for (int i = 0; i < s.Length; i++)
                {
                    // 将得到的字符串使用十六进制类型格式。格式后的字符是小写的字母,如果使用大写(X)则格式后的字符是大写字符 
                    pwd = pwd + s[i].ToString("x2");

                }
                return pwd;
            }

  • 相关阅读:
    ubuntu搭建tftp服务器
    【转】Android屏幕适配全攻略(最权威的官方适配指导)
    【转】Android开发相关的Blog推荐
    【转】Android开源项目
    【转】Android使用SQLite数据库版本升级
    【转】Java 集合系列目录(Category)
    【转】使用AIDL实现进程间的通信之复杂类型传递
    谷歌设计师的MATERIAL DESIGN实践心得
    【转】MATERIAL DESIGN设计规范学习心得
    【转】android MD设计
  • 原文地址:https://www.cnblogs.com/jnyyq/p/9334330.html
Copyright © 2020-2023  润新知