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