resolve darcs stupidity
[org.ibex.core.git] / src / org / bouncycastle / crypto / Digest.java
index 844c28b..8f062b7 100644 (file)
@@ -17,14 +17,14 @@ public interface Digest
      *
      * @return the size, in bytes, of the digest produced by this message digest.
      */
-       public int getDigestSize();
+        public int getDigestSize();
 
     /**
      * update the message digest with a single byte.
      *
      * @param in the input byte to be entered.
      */
-       public void update(byte in);
+        public void update(byte in);
 
     /**
      * update the message digest with a block of bytes.
@@ -33,7 +33,7 @@ public interface Digest
      * @param inOff the offset into the byte array where the data starts.
      * @param len the length of the data.
      */
-       public void update(byte[] in, int inOff, int len);
+        public void update(byte[] in, int inOff, int len);
 
     /**
      * close the digest, producing the final digest value. The doFinal
@@ -42,7 +42,7 @@ public interface Digest
      * @param out the array the digest is to be copied into.
      * @param outOff the offset into the out array the digest is to start at.
      */
-       public int doFinal(byte[] out, int outOff);
+        public int doFinal(byte[] out, int outOff);
 
     /**
      * reset the digest back to it's initial state.