Package com.trilead.ssh2.crypto.digest
Class MD5
- java.lang.Object
-
- com.trilead.ssh2.crypto.digest.MD5
-
-
Field Summary
Fields Modifier and Type Field Description private byte[]blockDeprecated.private longcountDeprecated.private static byte[]paddingDeprecated.private intstate0Deprecated.private intstate1Deprecated.private intstate2Deprecated.private intstate3Deprecated.private int[]xDeprecated.
-
Constructor Summary
Constructors Constructor Description MD5()Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddigest(byte[] dst)Deprecated.voiddigest(byte[] dst, int pos)Deprecated.private static voidencode(byte[] dst, int dstoff, int word)Deprecated.private static intFF(int a, int b, int c, int d, int x, int s, int ac)Deprecated.intgetDigestLength()Deprecated.private static intGG(int a, int b, int c, int d, int x, int s, int ac)Deprecated.private static intHH(int a, int b, int c, int d, int x, int s, int ac)Deprecated.private static intII(int a, int b, int c, int d, int x, int s, int ac)Deprecated.voidreset()Deprecated.private voidtransform(byte[] src, int pos)Deprecated.voidupdate(byte b)Deprecated.voidupdate(byte[] b)Deprecated.voidupdate(byte[] buff, int pos, int len)Deprecated.
-
-
-
Field Detail
-
state0
private int state0
Deprecated.
-
state1
private int state1
Deprecated.
-
state2
private int state2
Deprecated.
-
state3
private int state3
Deprecated.
-
count
private long count
Deprecated.
-
block
private final byte[] block
Deprecated.
-
x
private final int[] x
Deprecated.
-
padding
private static final byte[] padding
Deprecated.
-
-
Method Detail
-
FF
private static final int FF(int a, int b, int c, int d, int x, int s, int ac)Deprecated.
-
GG
private static final int GG(int a, int b, int c, int d, int x, int s, int ac)Deprecated.
-
HH
private static final int HH(int a, int b, int c, int d, int x, int s, int ac)Deprecated.
-
II
private static final int II(int a, int b, int c, int d, int x, int s, int ac)Deprecated.
-
encode
private static final void encode(byte[] dst, int dstoff, int word)Deprecated.
-
transform
private final void transform(byte[] src, int pos)Deprecated.
-
update
public final void update(byte[] buff, int pos, int len)Deprecated.
-
digest
public final void digest(byte[] dst, int pos)Deprecated.
-
getDigestLength
public final int getDigestLength()
Deprecated.- Specified by:
getDigestLengthin interfaceDigest
-
-