X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fbouncycastle%2Fcrypto%2Fdigests%2FMD5Digest.java;fp=src%2Forg%2Fbouncycastle%2Fcrypto%2Fdigests%2FMD5Digest.java;h=7aed9a557ac127f5f8ef977c5566afcb232f66cd;hb=b32cea3f3e272ab00899d134d75a8bd7bcf6c8c0;hp=7325fba45f4ac0b4900ccf9de233b7f1e7dafeaf;hpb=6d2f9fba912164ddc3024078aab83258a9d9e522;p=org.ibex.core.git diff --git a/src/org/bouncycastle/crypto/digests/MD5Digest.java b/src/org/bouncycastle/crypto/digests/MD5Digest.java index 7325fba..7aed9a5 100644 --- a/src/org/bouncycastle/crypto/digests/MD5Digest.java +++ b/src/org/bouncycastle/crypto/digests/MD5Digest.java @@ -15,30 +15,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() {