MD5.java
上传用户:huihesys
上传日期:2007-01-04
资源大小:3877k
文件大小:14k
源码类别:

WEB邮件程序

开发平台:

C/C++

  1. package net.wastl.webmail.misc;
  2. /*
  3.  * $Header: /u/users20/santtu/src/java/MD5/RCS/MD5.java,v 1.5 1996/12/12 10:47:02 santtu Exp $
  4.  *
  5.  * MD5 in Java JDK Beta-2
  6.  * written Santeri Paavolainen, Helsinki Finland 1996
  7.  * (c) Santeri Paavolainen, Helsinki Finland 1996
  8.  *
  9.  * This library is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU Library General Public
  11.  * License as published by the Free Software Foundation; either
  12.  * version 2 of the License, or (at your option) any later version.
  13.  * 
  14.  * This library is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17.  * Library General Public License for more details.
  18.  * 
  19.  * You should have received a copy of the GNU Library General Public
  20.  * License along with this library; if not, write to the Free
  21.  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  * 
  23.  * See http://www.cs.hut.fi/~santtu/java/ for more information on this
  24.  * class.
  25.  * 
  26.  * This is rather straight re-implementation of the reference implementation
  27.  * given in RFC1321 by RSA.
  28.  *
  29.  * Passes MD5 test suite as defined in RFC1321.
  30.  *
  31.  *
  32.  * This Java class has been derived from the RSA Data Security, Inc. MD5 
  33.  * Message-Digest Algorithm and its reference implementation. 
  34.  *
  35.  *
  36.  * $Log: MD5.java,v $
  37.  * Revision 1.5  1996/12/12 10:47:02  santtu
  38.  * Changed GPL to LGPL
  39.  *
  40.  * Revision 1.4  1996/12/12 10:30:02  santtu
  41.  * Some typos, State -> MD5State etc.
  42.  *
  43.  * Revision 1.3  1996/04/15 07:28:09  santtu
  44.  * Added GPL statemets, and RSA derivate stametemetsnnts.
  45.  *
  46.  * Revision 1.2  1996/03/04 08:05:48  santtu
  47.  * Added offsets to Update method
  48.  *
  49.  * Revision 1.1  1996/01/07 20:51:59  santtu
  50.  * Initial revision
  51.  *
  52.  */
  53. /**
  54.  * Contains internal state of the MD5 class
  55.  */
  56. class MD5State {
  57.   /**
  58.    * 128-byte state 
  59.    */
  60.   int state[];
  61.   /**
  62.    * 64-bit character count (could be true Java long?)
  63.    */
  64.   int count[];
  65.   /**
  66.    * 64-byte buffer (512 bits) for storing to-be-hashed characters
  67.    */
  68.   byte buffer[];
  69.   public MD5State() {
  70.     buffer = new byte[64];
  71.     count = new int[2];
  72.     state = new int[4];
  73.     
  74.     state[0] = 0x67452301;
  75.     state[1] = 0xefcdab89;
  76.     state[2] = 0x98badcfe;
  77.     state[3] = 0x10325476;
  78.     count[0] = count[1] = 0;
  79.   }
  80.   /** Create this State as a copy of another state */
  81.   public MD5State (MD5State from) {
  82.     this();
  83.     int i;
  84.     for (i = 0; i < buffer.length; i++)
  85.       this.buffer[i] = from.buffer[i];
  86.     
  87.     for (i = 0; i < state.length; i++)
  88.       this.state[i] = from.state[i];
  89.     for (i = 0; i < count.length; i++)
  90.       this.count[i] = from.count[i];
  91.   }
  92. }
  93. /**
  94.  * Implementation of RSA's MD5 hash generator
  95.  *
  96.  * @version $Revision: 1.5 $
  97.  * @author Santeri Paavolainen <sjpaavol@cc.helsinki.fi>
  98.  */
  99. public class MD5 {
  100.   /**
  101.    * MD5 state
  102.    */
  103.   MD5State state;
  104.  
  105.   /**
  106.    * If Final() has been called, finals is set to the current finals
  107.    * state. Any Update() causes this to be set to null.
  108.    */
  109.   MD5State  finals;
  110.   /** 
  111.    * Padding for Final()
  112.    */
  113.   static byte padding[] = {
  114.     (byte) 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
  115.     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 
  116.     0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
  117.   };
  118.   /**
  119.    * Initialize MD5 internal state (object can be reused just by
  120.    * calling Init() after every Final()
  121.    */
  122.   public synchronized void Init () {
  123.     state = new MD5State();
  124.     finals = null;
  125.   }
  126.   /**
  127.    * Class constructor
  128.    */
  129.   public MD5 () {
  130.     this.Init();
  131.   }
  132.   /**
  133.    * Initialize class, and update hash with ob.toString()
  134.    *
  135.    * @param ob Object, ob.toString() is used to update hash
  136.    * after initialization
  137.    */
  138.   public MD5 (Object ob) {
  139.     this();
  140.     Update(ob.toString());
  141.   }
  142.   private int rotate_left (int x, int n) {
  143.     return (x << n) | (x >>> (32 - n));
  144.   }
  145.   /* I wonder how many loops and hoops you'll have to go through to
  146.      get unsigned add for longs in java */
  147.   private int uadd (int a, int b) {
  148.     long aa, bb;
  149.     aa = ((long) a) & 0xffffffffL;
  150.     bb = ((long) b) & 0xffffffffL;
  151.     
  152.     aa += bb;
  153.     return (int) (aa & 0xffffffffL);
  154.   }
  155.   private int uadd (int a, int b, int c) {
  156.     return uadd(uadd(a, b), c);
  157.   }
  158.   private int uadd (int a, int b, int c, int d) {
  159.     return uadd(uadd(a, b, c), d);
  160.   }
  161.   private int FF (int a, int b, int c, int d, int x, int s, int ac) {
  162.     a = uadd(a, ((b & c) | (~b & d)), x, ac);
  163.     return uadd(rotate_left(a, s), b);
  164.   }
  165.   private int GG (int a, int b, int c, int d, int x, int s, int ac) {
  166.     a = uadd(a, ((b & d) | (c & ~d)), x, ac);
  167.     return uadd(rotate_left(a, s), b);
  168.   }
  169.   private int HH (int a, int b, int c, int d, int x, int s, int ac) { 
  170.     a = uadd(a, (b ^ c ^ d), x, ac);
  171.     return uadd(rotate_left(a, s) , b);
  172.   }
  173.   private int II (int a, int b, int c, int d, int x, int s, int ac) {  
  174.     a = uadd(a, (c ^ (b | ~d)), x, ac);
  175.     return uadd(rotate_left(a, s), b);
  176.   }
  177.   private int[] Decode (byte buffer[], int len, int shift) {
  178.     int out[];
  179.     int  i, j;
  180.     out = new int[16];
  181.     for (i = j = 0; j < len; i++, j += 4) {
  182.       out[i] = ((int) (buffer[j + shift] & 0xff)) | 
  183. (((int) (buffer[j + 1 + shift] & 0xff)) << 8) |
  184. (((int) (buffer[j + 2 + shift] & 0xff)) << 16) | 
  185. (((int) (buffer[j + 3 + shift] & 0xff)) << 24);
  186. /*      System.out.println("out[" + i + "] = t" +
  187.  ((int) buffer[j + 0 + shift] & 0xff) + "t|t" +
  188.  ((int) buffer[j + 1 + shift] & 0xff) + "t|t" +
  189.  ((int) buffer[j + 2 + shift] & 0xff) + "t|t" +
  190.  ((int) buffer[j + 3 + shift] & 0xff));*/
  191.     }
  192.     
  193.     return out;
  194.   }
  195.   private void Transform (MD5State state, byte buffer[], int shift) {
  196.     int
  197.       a = state.state[0],
  198.       b = state.state[1],
  199.       c = state.state[2],
  200.       d = state.state[3],
  201.       x[];
  202.     x = Decode(buffer, 64, shift);
  203.        
  204.     /* Round 1 */
  205.     a = FF (a, b, c, d, x[ 0],   7, 0xd76aa478); /* 1 */
  206.     d = FF (d, a, b, c, x[ 1],  12, 0xe8c7b756); /* 2 */
  207.     c = FF (c, d, a, b, x[ 2],  17, 0x242070db); /* 3 */
  208.     b = FF (b, c, d, a, x[ 3],  22, 0xc1bdceee); /* 4 */
  209.     a = FF (a, b, c, d, x[ 4],   7, 0xf57c0faf); /* 5 */
  210.     d = FF (d, a, b, c, x[ 5],  12, 0x4787c62a); /* 6 */
  211.     c = FF (c, d, a, b, x[ 6],  17, 0xa8304613); /* 7 */
  212.     b = FF (b, c, d, a, x[ 7],  22, 0xfd469501); /* 8 */
  213.     a = FF (a, b, c, d, x[ 8],   7, 0x698098d8); /* 9 */
  214.     d = FF (d, a, b, c, x[ 9],  12, 0x8b44f7af); /* 10 */
  215.     c = FF (c, d, a, b, x[10],  17, 0xffff5bb1); /* 11 */
  216.     b = FF (b, c, d, a, x[11],  22, 0x895cd7be); /* 12 */
  217.     a = FF (a, b, c, d, x[12],   7, 0x6b901122); /* 13 */
  218.     d = FF (d, a, b, c, x[13],  12, 0xfd987193); /* 14 */
  219.     c = FF (c, d, a, b, x[14],  17, 0xa679438e); /* 15 */
  220.     b = FF (b, c, d, a, x[15],  22, 0x49b40821); /* 16 */
  221.     /* Round 2 */
  222.     a = GG (a, b, c, d, x[ 1],   5, 0xf61e2562); /* 17 */
  223.     d = GG (d, a, b, c, x[ 6],   9, 0xc040b340); /* 18 */
  224.     c = GG (c, d, a, b, x[11],  14, 0x265e5a51); /* 19 */
  225.     b = GG (b, c, d, a, x[ 0],  20, 0xe9b6c7aa); /* 20 */
  226.     a = GG (a, b, c, d, x[ 5],   5, 0xd62f105d); /* 21 */
  227.     d = GG (d, a, b, c, x[10],   9,  0x2441453); /* 22 */
  228.     c = GG (c, d, a, b, x[15],  14, 0xd8a1e681); /* 23 */
  229.     b = GG (b, c, d, a, x[ 4],  20, 0xe7d3fbc8); /* 24 */
  230.     a = GG (a, b, c, d, x[ 9],   5, 0x21e1cde6); /* 25 */
  231.     d = GG (d, a, b, c, x[14],   9, 0xc33707d6); /* 26 */
  232.     c = GG (c, d, a, b, x[ 3],  14, 0xf4d50d87); /* 27 */
  233.     b = GG (b, c, d, a, x[ 8],  20, 0x455a14ed); /* 28 */
  234.     a = GG (a, b, c, d, x[13],   5, 0xa9e3e905); /* 29 */
  235.     d = GG (d, a, b, c, x[ 2],   9, 0xfcefa3f8); /* 30 */
  236.     c = GG (c, d, a, b, x[ 7],  14, 0x676f02d9); /* 31 */
  237.     b = GG (b, c, d, a, x[12],  20, 0x8d2a4c8a); /* 32 */
  238.     /* Round 3 */
  239.     a = HH (a, b, c, d, x[ 5],   4, 0xfffa3942); /* 33 */
  240.     d = HH (d, a, b, c, x[ 8],  11, 0x8771f681); /* 34 */
  241.     c = HH (c, d, a, b, x[11],  16, 0x6d9d6122); /* 35 */
  242.     b = HH (b, c, d, a, x[14],  23, 0xfde5380c); /* 36 */
  243.     a = HH (a, b, c, d, x[ 1],   4, 0xa4beea44); /* 37 */
  244.     d = HH (d, a, b, c, x[ 4],  11, 0x4bdecfa9); /* 38 */
  245.     c = HH (c, d, a, b, x[ 7],  16, 0xf6bb4b60); /* 39 */
  246.     b = HH (b, c, d, a, x[10],  23, 0xbebfbc70); /* 40 */
  247.     a = HH (a, b, c, d, x[13],   4, 0x289b7ec6); /* 41 */
  248.     d = HH (d, a, b, c, x[ 0],  11, 0xeaa127fa); /* 42 */
  249.     c = HH (c, d, a, b, x[ 3],  16, 0xd4ef3085); /* 43 */
  250.     b = HH (b, c, d, a, x[ 6],  23,  0x4881d05); /* 44 */
  251.     a = HH (a, b, c, d, x[ 9],   4, 0xd9d4d039); /* 45 */
  252.     d = HH (d, a, b, c, x[12],  11, 0xe6db99e5); /* 46 */
  253.     c = HH (c, d, a, b, x[15],  16, 0x1fa27cf8); /* 47 */
  254.     b = HH (b, c, d, a, x[ 2],  23, 0xc4ac5665); /* 48 */
  255.     /* Round 4 */
  256.     a = II (a, b, c, d, x[ 0],   6, 0xf4292244); /* 49 */
  257.     d = II (d, a, b, c, x[ 7],  10, 0x432aff97); /* 50 */
  258.     c = II (c, d, a, b, x[14],  15, 0xab9423a7); /* 51 */
  259.     b = II (b, c, d, a, x[ 5],  21, 0xfc93a039); /* 52 */
  260.     a = II (a, b, c, d, x[12],   6, 0x655b59c3); /* 53 */
  261.     d = II (d, a, b, c, x[ 3],  10, 0x8f0ccc92); /* 54 */
  262.     c = II (c, d, a, b, x[10],  15, 0xffeff47d); /* 55 */
  263.     b = II (b, c, d, a, x[ 1],  21, 0x85845dd1); /* 56 */
  264.     a = II (a, b, c, d, x[ 8],   6, 0x6fa87e4f); /* 57 */
  265.     d = II (d, a, b, c, x[15],  10, 0xfe2ce6e0); /* 58 */
  266.     c = II (c, d, a, b, x[ 6],  15, 0xa3014314); /* 59 */
  267.     b = II (b, c, d, a, x[13],  21, 0x4e0811a1); /* 60 */
  268.     a = II (a, b, c, d, x[ 4],   6, 0xf7537e82); /* 61 */
  269.     d = II (d, a, b, c, x[11],  10, 0xbd3af235); /* 62 */
  270.     c = II (c, d, a, b, x[ 2],  15, 0x2ad7d2bb); /* 63 */
  271.     b = II (b, c, d, a, x[ 9],  21, 0xeb86d391); /* 64 */
  272.     state.state[0] += a;
  273.     state.state[1] += b;
  274.     state.state[2] += c;
  275.     state.state[3] += d;
  276.   }
  277.   /**
  278.    * Updates hash with the bytebuffer given (using at maximum length bytes from
  279.    * that buffer)
  280.    *
  281.    * @param state Which state is updated
  282.    * @param buffer Array of bytes to be hashed
  283.    * @param offset Offset to buffer array
  284.    * @param length Use at maximum `length' bytes (absolute
  285.    * maximum is buffer.length)
  286.    */
  287.   public void Update (MD5State stat, byte buffer[], int offset, int length) {
  288.     int index, partlen, i, start;
  289. /*    System.out.print("Offset = " + offset + "tLength = " + length + "t");
  290.     System.out.print("Buffer = ");
  291.     for (i = 0; i < buffer.length; i++)
  292. System.out.print((int) (buffer[i] & 0xff) + " ");
  293.     System.out.print("n");*/
  294.     finals = null;
  295.     /* Length can be told to be shorter, but not inter */
  296.     if ((length - offset)> buffer.length)
  297.       length = buffer.length - offset;
  298.     /* compute number of bytes mod 64 */
  299.     index = (int) (stat.count[0] >>> 3) & 0x3f;
  300.     if ((stat.count[0] += (length << 3)) <
  301. (length << 3))
  302.       stat.count[1]++;
  303.     stat.count[1] += length >>> 29;
  304.     partlen = 64 - index;
  305.     if (length >= partlen) {
  306.       for (i = 0; i < partlen; i++)
  307. stat.buffer[i + index] = buffer[i + offset];
  308.       Transform(stat, stat.buffer, 0);
  309.     
  310.       for (i = partlen; (i + 63) < length; i+= 64)
  311. Transform(stat, buffer, i);
  312.       index = 0;
  313.     } else 
  314.       i = 0;
  315.     /* buffer remaining input */
  316.     if (i < length) {
  317.       start = i;
  318.       for (; i < length; i++) 
  319. stat.buffer[index + i - start] = buffer[i + offset];
  320.     }
  321.   }
  322.   /* 
  323.    * Update()s for other datatypes than byte[] also. Update(byte[], int)
  324.    * is only the main driver.
  325.    */
  326.   /**
  327.    * Plain update, updates this object
  328.    */
  329.   public void Update (byte buffer[], int offset, int length) {
  330.       Update(this.state, buffer, offset, length);
  331.   }
  332.   public void Update (byte buffer[], int length) {
  333.       Update(this.state, buffer, 0, length);
  334.   }
  335.   /**
  336.    * Updates hash with given array of bytes
  337.    *
  338.    * @param buffer Array of bytes to use for updating the hash
  339.    */
  340.   public void Update (byte buffer[]) {
  341.       Update(buffer, 0, buffer.length);
  342.   }
  343.   /**
  344.    * Updates hash with a single byte
  345.    *
  346.    * @param b Single byte to update the hash
  347.    */
  348.   public void Update (byte b) {
  349.     byte buffer[] = new byte[1];
  350.     buffer[0] = b;
  351.     Update(buffer, 1);
  352.   }
  353.   
  354.   /**
  355.    * Update buffer with given string.
  356.    *
  357.    * @param s String to be update to hash (is used as
  358.    *         s.getBytes())
  359.    */
  360.   public void Update (String s) {
  361.     byte chars[];
  362.     chars = new byte[s.length()];
  363.     s.getBytes(0, s.length(), chars, 0);
  364.     Update(chars, chars.length);
  365.   }
  366.   /**
  367.    * Update buffer with a single integer (only & 0xff part is used,
  368.    * as a byte)
  369.    *
  370.    * @param i Integer value, which is then converted to 
  371.    * byte as i & 0xff
  372.    */
  373.   public void Update (int i) {
  374.       Update((byte) (i & 0xff));
  375.   }
  376.   private byte[] Encode (int input[], int len) {
  377.     int i, j;
  378.     byte out[];
  379.     out = new byte[len];
  380.     for (i = j = 0; j  < len; i++, j += 4) {
  381.       out[j] = (byte) (input[i] & 0xff);
  382.       out[j + 1] = (byte) ((input[i] >>> 8) & 0xff);
  383.       out[j + 2] = (byte) ((input[i] >>> 16) & 0xff);
  384.       out[j + 3] = (byte) ((input[i] >>> 24) & 0xff);
  385.     }
  386.     return out;
  387.   }
  388.   /**
  389.    * Returns array of bytes (16 bytes) representing hash as of the
  390.    * current state of this object. Note: getting a hash does not
  391.    * invalidate the hash object, it only creates a copy of the real
  392.    * state which is finalized. 
  393.    *
  394.    * @return Array of 16 bytes, the hash of all updated bytes
  395.    */
  396.   public synchronized byte[] Final () {
  397.     byte bits[];
  398.     int index, padlen;
  399.     MD5State fin;
  400.     if (finals == null) {
  401.       fin = new MD5State(state);
  402.       bits = Encode(fin.count, 8);
  403.     
  404.       index = (int) ((fin.count[0] >>> 3) & 0x3f);
  405.       padlen = (index < 56) ? (56 - index) : (120 - index);
  406.       Update(fin, padding, 0, padlen);
  407.       /**/
  408.       Update(fin, bits, 0, 8);
  409.       /* Update() sets finalds to null */
  410.       finals = fin;
  411.     } 
  412.     return Encode(finals.state, 16);
  413.   }    
  414.   /**
  415.    * Turns array of bytes into string representing each byte as
  416.    * unsigned hex number.
  417.    * 
  418.    * @param hash Array of bytes to convert to hex-string
  419.    * @return Generated hex string
  420.    */
  421.   public static String asHex (byte hash[]) {
  422.     StringBuffer buf = new StringBuffer(hash.length * 2);
  423.     int i;
  424.     for (i = 0; i < hash.length; i++) {
  425.       if (((int) hash[i] & 0xff) < 0x10) 
  426. buf.append("0");
  427.       buf.append(Long.toString((int) hash[i] & 0xff, 16));
  428.     }
  429.     return buf.toString();
  430.   }
  431.   /**
  432.    * Returns 32-character hex representation of this objects hash
  433.    *
  434.    * @return String of this object's hash
  435.    */
  436.   public String asHex () {
  437.     return asHex(this.Final());
  438.   }
  439. }