resolve darcs stupidity
[org.ibex.core.git] / src / org / bouncycastle / crypto / digests / MD5Digest.java
index 7325fba..936dc81 100644 (file)
@@ -1,7 +1,5 @@
 package org.bouncycastle.crypto.digests;
 
-import org.bouncycastle.crypto.Digest;
-
 /**
  * implementation of MD5 as outlined in "Handbook of Applied Cryptography", pages 346 - 347.
  */
@@ -15,30 +13,30 @@ public class MD5Digest
     private int[]   X = new int[16];
     private int     xOff;
 
-       /**
-        * Standard constructor
-        */
+        /**
+         * Standard constructor
+         */
     public MD5Digest()
     {
         reset();
     }
 
-       /**
-        * Copy constructor.  This will copy the state of the provided
-        * message digest.
-        */
-       public MD5Digest(MD5Digest t)
-       {
-               super(t);
-
-               H1 = t.H1;
-               H2 = t.H2;
-               H3 = t.H3;
-               H4 = t.H4;
-
-               System.arraycopy(t.X, 0, X, 0, t.X.length);
-               xOff = t.xOff;
-       }
+        /**
+         * Copy constructor.  This will copy the state of the provided
+         * message digest.
+         */
+        public MD5Digest(MD5Digest t)
+        {
+                super(t);
+
+                H1 = t.H1;
+                H2 = t.H2;
+                H3 = t.H3;
+                H4 = t.H4;
+
+                System.arraycopy(t.X, 0, X, 0, t.X.length);
+                xOff = t.xOff;
+        }
 
     public String getAlgorithmName()
     {