java MD5加密

java 代码
以下是MD5加密技术.在可能需要的传输数据上需要用到!
  1. package common.md5;   
  2.   
  3. import java.lang.reflect.*;   
  4.   
  5. /*************************************************  
  6.  md5 类实现了RSA Data Security, Inc.在提交给IETF  
  7.  的RFC1321中的MD5 message-digest 算法。  
  8.  *************************************************/  
  9.   
  10. public class MD5 {   
  11.     /* 下面这些S11-S44实际上是一个4*4的矩阵,在原始的C实现中是用#define 实现的,  
  12.      这里把它们实现成为static final是表示了只读,切能在同一个进程空间内的多个  
  13.      Instance间共享*/  
  14.     static final int S11 = 7;   
  15.   
  16.     static final int S12 = 12;   
  17.   
  18.     static final int S13 = 17;   
  19.   
  20.     static final int S14 = 22;   
  21.   
  22.     static final int S21 = 5;   
  23.   
  24.     static final int S22 = 9;   
  25.   
  26.     static final int S23 = 14;   
  27.   
  28.     static final int S24 = 20;   
  29.   
  30.     static final int S31 = 4;   
  31.   
  32.     static final int S32 = 11;   
  33.   
  34.     static final int S33 = 16;   
  35.   
  36.     static final int S34 = 23;   
  37.   
  38.     static final int S41 = 6;   
  39.   
  40.     static final int S42 = 10;   
  41.   
  42.     static final int S43 = 15;   
  43.   
  44.     static final int S44 = 21;   
  45.   
  46.     static final byte[] PADDING = { -128000000000000,   
  47.             0000000000000000000000,   
  48.             0000000000000000000000,   
  49.             0000000 };   
  50.   
  51.     /* 下面的三个成员是MD5计算过程中用到的3个核心数据,在原始的C实现中    被定义到MD5_CTX结构中  
  52.      */  
  53.     private long[] state = new long[4]; // state (ABCD)   
  54.   
  55.     private long[] count = new long[2]; // number of bits, modulo 2^64 (lsb first)   
  56.   
  57.     private byte[] buffer = new byte[64]; // input buffer   
  58.   
  59.     /* digestHexStr是MD5的唯一一个公共成员,是最新一次计算结果的  
  60.      16进制ASCII表示.  
  61.      */  
  62.     public String digestHexStr;   
  63.   
  64.     /* digest,是最新一次计算结果的2进制内部表示,表示128bit的MD5值.  
  65.      */  
  66.     private byte[] digest = new byte[16];   
  67.   
  68.     /**   
  69.      *getMD5ofStr是类MD5最主要的公共方法,入口参数是你想要进行MD5变换的字符串  
  70.      *返回的是变换完的结果,这个结果是从公共成员digestHexStr取得的.  
  71.      */  
  72.     public String getMD5ofStr(String inbuf) {   
  73.         md5Init();   
  74.         md5Update(inbuf.getBytes(), inbuf.length());   
  75.         md5Final();   
  76.         digestHexStr = "";   
  77.         for (int i = 0; i < 16; i++) {   
  78.             digestHexStr += byteHEX(digest[i]);   
  79.         }   
  80.         return digestHexStr;   
  81.   
  82.     }   
  83.   
  84.     /**   
  85.      *  这是MD5这个类的标准构造函数,JavaBean要求有一个public的并且没有参数的构造函数  
  86.      */  
  87.     public MD5() {   
  88.         md5Init();   
  89.   
  90.         return;   
  91.     }   
  92.   
  93.     /**  
  94.      *  md5Init是一个初始化函数,初始化核心变量,装入标准的幻数   
  95.      */  
  96.     private void md5Init() {   
  97.         count[0] = 0L;   
  98.         count[1] = 0L;   
  99.         ///* Load magic initialization constants.   
  100.   
  101.         state[0] = 0x67452301L;   
  102.         state[1] = 0xefcdab89L;   
  103.         state[2] = 0x98badcfeL;   
  104.         state[3] = 0x10325476L;   
  105.   
  106.         return;   
  107.     }   
  108.   
  109.     /* F, G, H ,I 是4个基本的MD5函数,在原始的MD5的C实现中,由于它们是   
  110.      简单的位运算,可能出于效率的考虑把它们实现成了宏,在java中,我们把它们   
  111.      实现成了private方法,名字保持了原来C中的。 */   
  112.   
  113.     private long F(long x, long y, long z) {   
  114.         return (x & y) | ((~x) & z);   
  115.   
  116.     }   
  117.   
  118.     private long G(long x, long y, long z) {   
  119.         return (x & z) | (y & (~z));   
  120.   
  121.     }   
  122.   
  123.     private long H(long x, long y, long z) {   
  124.         return x ^ y ^ z;   
  125.     }   
  126.   
  127.     private long I(long x, long y, long z) {   
  128.         return y ^ (x | (~z));   
  129.     }   
  130.   
  131.        
  132.     /**   
  133.      *FF,GG,HH和II将调用F,G,H,I进行近一步变换   FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.   Rotation is separate from addition to prevent recomputation.   
  134.      */  
  135.   
  136.     private long FF(long a, long b, long c, long d, long x, long s, long ac) {   
  137.         a += F(b, c, d) + x + ac;   
  138.         a = ((int) a << s) | ((int) a >>> (32 - s));   
  139.         a += b;   
  140.         return a;   
  141.     }   
  142.   
  143.     private long GG(long a, long b, long c, long d, long x, long s, long ac) {   
  144.         a += G(b, c, d) + x + ac;   
  145.         a = ((int) a << s) | ((int) a >>> (32 - s));   
  146.         a += b;   
  147.         return a;   
  148.     }   
  149.   
  150.     private long HH(long a, long b, long c, long d, long x, long s, long ac) {   
  151.         a += H(b, c, d) + x + ac;   
  152.         a = ((int) a << s) | ((int) a >>> (32 - s));   
  153.         a += b;   
  154.         return a;   
  155.     }   
  156.   
  157.     private long II(long a, long b, long c, long d, long x, long s, long ac) {   
  158.         a += I(b, c, d) + x + ac;   
  159.         a = ((int) a << s) | ((int) a >>> (32 - s));   
  160.         a += b;   
  161.         return a;   
  162.     }   
  163.   
  164.     /**   
  165.      *md5Update是MD5的主计算过程,inbuf是要变换的字节串,inputlen是长度,这个   
  166.      *函数由getMD5ofStr调用,调用之前需要调用md5init,因此把它设计成private的  
  167.      */  
  168.     private void md5Update(byte[] inbuf, int inputLen) {   
  169.   
  170.         int i, index, partLen;   
  171.         byte[] block = new byte[64];   
  172.         index = (int) (count[0] >>> 3) & 0x3F;   
  173.         // /* Update number of bits */   
  174.         if ((count[0] += (inputLen << 3)) < (inputLen << 3)) {   
  175.             count[1]++;   
  176.         }   
  177.         count[1] += (inputLen >>> 29);   
  178.   
  179.         partLen = 64 - index;   
  180.   
  181.         // Transform as many times as possible.   
  182.         if (inputLen >= partLen) {   
  183.             md5Memcpy(buffer, inbuf, index, 0, partLen);   
  184.             md5Transform(buffer);   
  185.   
  186.             for (i = partLen; i + 63 < inputLen; i += 64) {   
  187.   
  188.                 md5Memcpy(block, inbuf, 0, i, 64);   
  189.                 md5Transform(block);   
  190.             }   
  191.             index = 0;   
  192.   
  193.         } else {   
  194.   
  195.             i = 0;   
  196.   
  197.             ///* Buffer remaining input */   
  198.         }   
  199.         md5Memcpy(buffer, inbuf, index, i, inputLen - i);   
  200.   
  201.     }   
  202.   
  203.     /**  
  204.      *md5Final整理和填写输出结果  
  205.      */  
  206.     private void md5Final() {   
  207.         byte[] bits = new byte[8];   
  208.         int index, padLen;   
  209.   
  210.         ///* Save number of bits */   
  211.         Encode(bits, count, 8);   
  212.   
  213.         ///* Pad out to 56 mod 64.   
  214.         index = (int) (count[0] >>> 3) & 0x3f;   
  215.         padLen = (index < 56) ? (56 - index) : (120 - index);   
  216.         md5Update(PADDING, padLen);   
  217.   
  218.         ///* Append length (before padding) */   
  219.         md5Update(bits, 8);   
  220.   
  221.         ///* Store state in digest */   
  222.         Encode(digest, state, 16);   
  223.   
  224.     }   
  225.   
  226.     /**  
  227.      *  md5Memcpy是一个内部使用的byte数组的块拷贝函数,从input的inpos开始把len长度的  
  228.      * 字节拷贝到output的outpos位置开始  
  229.      */  
  230.   
  231.     private void md5Memcpy(byte[] output, byte[] input, int outpos, int inpos,   
  232.             int len) {   
  233.         int i;   
  234.   
  235.         for (i = 0; i < len; i++) {   
  236.             output[outpos + i] = input[inpos + i];   
  237.         }   
  238.     }   
  239.   
  240.     /**  
  241.      *md5Transform是MD5核心变换程序,有md5Update调用,block是分块的原始字节  
  242.      */  
  243.     private void md5Transform(byte block[]) {   
  244.         long a = state[0], b = state[1], c = state[2], d = state[3];   
  245.         long[] x = new long[16];   
  246.   
  247.         Decode(x, block, 64);   
  248.   
  249.         /* Round 1 */  
  250.         a = FF(a, b, c, d, x[0], S11, 0xd76aa478L); /* 1 */  
  251.         d = FF(d, a, b, c, x[1], S12, 0xe8c7b756L); /* 2 */  
  252.         c = FF(c, d, a, b, x[2], S13, 0x242070dbL); /* 3 */  
  253.         b = FF(b, c, d, a, x[3], S14, 0xc1bdceeeL); /* 4 */  
  254.         a = FF(a, b, c, d, x[4], S11, 0xf57c0fafL); /* 5 */  
  255.         d = FF(d, a, b, c, x[5], S12, 0x4787c62aL); /* 6 */  
  256.         c = FF(c, d, a, b, x[6], S13, 0xa8304613L); /* 7 */  
  257.         b = FF(b, c, d, a, x[7], S14, 0xfd469501L); /* 8 */  
  258.         a = FF(a, b, c, d, x[8], S11, 0x698098d8L); /* 9 */  
  259.         d = FF(d, a, b, c, x[9], S12, 0x8b44f7afL); /* 10 */  
  260.         c = FF(c, d, a, b, x[10], S13, 0xffff5bb1L); /* 11 */  
  261.         b = FF(b, c, d, a, x[11], S14, 0x895cd7beL); /* 12 */  
  262.         a = FF(a, b, c, d, x[12], S11, 0x6b901122L); /* 13 */  
  263.         d = FF(d, a, b, c, x[13], S12, 0xfd987193L); /* 14 */  
  264.         c = FF(c, d, a, b, x[14], S13, 0xa679438eL); /* 15 */  
  265.         b = FF(b, c, d, a, x[15], S14, 0x49b40821L); /* 16 */  
  266.   
  267.         /* Round 2 */  
  268.         a = GG(a, b, c, d, x[1], S21, 0xf61e2562L); /* 17 */  
  269.         d = GG(d, a, b, c, x[6], S22, 0xc040b340L); /* 18 */  
  270.         c = GG(c, d, a, b, x[11], S23, 0x265e5a51L); /* 19 */  
  271.         b = GG(b, c, d, a, x[0], S24, 0xe9b6c7aaL); /* 20 */  
  272.         a = GG(a, b, c, d, x[5], S21, 0xd62f105dL); /* 21 */  
  273.         d = GG(d, a, b, c, x[10], S22, 0x2441453L); /* 22 */  
  274.         c = GG(c, d, a, b, x[15], S23, 0xd8a1e681L); /* 23 */  
  275.         b = GG(b, c, d, a, x[4], S24, 0xe7d3fbc8L); /* 24 */  
  276.         a = GG(a, b, c, d, x[9], S21, 0x21e1cde6L); /* 25 */  
  277.         d = GG(d, a, b, c, x[14], S22, 0xc33707d6L); /* 26 */  
  278.         c = GG(c, d, a, b, x[3], S23, 0xf4d50d87L); /* 27 */  
  279.         b = GG(b, c, d, a, x[8], S24, 0x455a14edL); /* 28 */  
  280.         a = GG(a, b, c, d, x[13], S21, 0xa9e3e905L); /* 29 */  
  281.         d = GG(d, a, b, c, x[2], S22, 0xfcefa3f8L); /* 30 */  
  282.         c = GG(c, d, a, b, x[7], S23, 0x676f02d9L); /* 31 */  
  283.         b = GG(b, c, d, a, x[12], S24, 0x8d2a4c8aL); /* 32 */  
  284.   
  285.         /* Round 3 */  
  286.         a = HH(a, b, c, d, x[5], S31, 0xfffa3942L); /* 33 */  
  287.         d = HH(d, a, b, c, x[8], S32, 0x8771f681L); /* 34 */  
  288.         c = HH(c, d, a, b, x[11], S33, 0x6d9d6122L); /* 35 */  
  289.         b = HH(b, c, d, a, x[14], S34, 0xfde5380cL); /* 36 */  
  290.         a = HH(a, b, c, d, x[1], S31, 0xa4beea44L); /* 37 */  
  291.         d = HH(d, a, b, c, x[4], S32, 0x4bdecfa9L); /* 38 */  
  292.         c = HH(c, d, a, b, x[7], S33, 0xf6bb4b60L); /* 39 */  
  293.         b = HH(b, c, d, a, x[10], S34, 0xbebfbc70L); /* 40 */  
  294.         a = HH(a, b, c, d, x[13], S31, 0x289b7ec6L); /* 41 */  
  295.         d = HH(d, a, b, c, x[0], S32, 0xeaa127faL); /* 42 */  
  296.         c = HH(c, d, a, b, x[3], S33, 0xd4ef3085L); /* 43 */  
  297.         b = HH(b, c, d, a, x[6], S34, 0x4881d05L); /* 44 */  
  298.         a = HH(a, b, c, d, x[9], S31, 0xd9d4d039L); /* 45 */  
  299.         d = HH(d, a, b, c, x[12], S32, 0xe6db99e5L); /* 46 */  
  300.         c = HH(c, d, a, b, x[15], S33, 0x1fa27cf8L); /* 47 */  
  301.         b = HH(b, c, d, a, x[2], S34, 0xc4ac5665L); /* 48 */  
  302.   
  303.         /* Round 4 */  
  304.         a = II(a, b, c, d, x[0], S41, 0xf4292244L); /* 49 */  
  305.         d = II(d, a, b, c, x[7], S42, 0x432aff97L); /* 50 */  
  306.         c = II(c, d, a, b, x[14], S43, 0xab9423a7L); /* 51 */  
  307.         b = II(b, c, d, a, x[5], S44, 0xfc93a039L); /* 52 */  
  308.         a = II(a, b, c, d, x[12], S41, 0x655b59c3L); /* 53 */  
  309.         d = II(d, a, b, c, x[3], S42, 0x8f0ccc92L); /* 54 */  
  310.         c = II(c, d, a, b, x[10], S43, 0xffeff47dL); /* 55 */  
  311.         b = II(b, c, d, a, x[1], S44, 0x85845dd1L); /* 56 */  
  312.         a = II(a, b, c, d, x[8], S41, 0x6fa87e4fL); /* 57 */  
  313.         d = II(d, a, b, c, x[15], S42, 0xfe2ce6e0L); /* 58 */  
  314.         c = II(c, d, a, b, x[6], S43, 0xa3014314L); /* 59 */  
  315.         b = II(b, c, d, a, x[13], S44, 0x4e0811a1L); /* 60 */  
  316.         a = II(a, b, c, d, x[4], S41, 0xf7537e82L); /* 61 */  
  317.         d = II(d, a, b, c, x[11], S42, 0xbd3af235L); /* 62 */  
  318.         c = II(c, d, a, b, x[2], S43, 0x2ad7d2bbL); /* 63 */  
  319.         b = II(b, c, d, a, x[9], S44, 0xeb86d391L); /* 64 */  
  320.   
  321.         state[0] += a;   
  322.         state[1] += b;   
  323.         state[2] += c;   
  324.         state[3] += d;   
  325.   
  326.     }   
  327.   
  328.  
Java中,可以使用MD5加密算法对数据进行加密。引用是一个示例代码,展示了如何使用MD5加密算法对输入的用户名和密码进行加密。代码中使用了一个Md5类,它包含了一个md5方法,用于对输入数据进行MD5加密。引用展示了Md5类的具体实现。 要使用MD5加密对密码进行加密,可以调用Md5类的md5方法,并传入要加密的字符串作为参数。该方法将返回加密后的字符串。 在加密时,可以使用“加盐”的方式增加密码的安全性。这意味着将用户的用户名作为额外的参数传入md5方法,与密码一起进行加密。这样即使两个用户使用相同的密码,最终的加密结果也会不同。 需要注意的是,MD5加密是不可逆的,即无法从加密后的密码还原出原始密码。因此,一般在登录时,会将用户输入的密码进行加密后,与数据库中存储的加密后的密码进行比对来验证登录信息。引用展示了一个示例,其中将用户输入的密码进行MD5加密后,再与数据库中存储的密码进行比对。 综上所述,要在Java中进行MD5加密,可以使用Md5类的md5方法,将要加密的字符串作为参数传入。为了增加密码的安全性,可以使用“加盐”的方式,将用户的用户名作为额外的参数传入md5方法进行加密。在登录时,将用户输入的密码进行MD5加密后,与数据库中存储的加密后的密码进行比对来验证登录信息。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [Java md5加密](https://blog.csdn.net/weixin_65637841/article/details/124889207)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值