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[]
block
Deprecated.private long
count
Deprecated.private static byte[]
padding
Deprecated.private int
state0
Deprecated.private int
state1
Deprecated.private int
state2
Deprecated.private int
state3
Deprecated.private int[]
x
Deprecated.
-
Constructor Summary
Constructors Constructor Description MD5()
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
digest(byte[] dst)
Deprecated.void
digest(byte[] dst, int pos)
Deprecated.private static void
encode(byte[] dst, int dstoff, int word)
Deprecated.private static int
FF(int a, int b, int c, int d, int x, int s, int ac)
Deprecated.int
getDigestLength()
Deprecated.private static int
GG(int a, int b, int c, int d, int x, int s, int ac)
Deprecated.private static int
HH(int a, int b, int c, int d, int x, int s, int ac)
Deprecated.private static int
II(int a, int b, int c, int d, int x, int s, int ac)
Deprecated.void
reset()
Deprecated.private void
transform(byte[] src, int pos)
Deprecated.void
update(byte b)
Deprecated.void
update(byte[] b)
Deprecated.void
update(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:
getDigestLength
in interfaceDigest
-
-