|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.logi.crypto.hash.MD5State.SubState
Field Summary | |
byte[] |
buffer
Holds the bytes that have been added to this object, but not calculated into the hash in state . |
long |
count
Holds the number of bits added to this object. |
int[] |
hash
A hash for as much of the data added to this object as possible, given that they must be added in 64 byte chunks. |
Constructor Summary | |
MD5State.SubState()
Create a new empty instance |
|
MD5State.SubState(MD5State.SubState s)
Create a copy of s |
Method Summary | |
static int |
FF(int a,
int b,
int c,
int d,
int x,
int s,
int ac)
|
static int |
GG(int a,
int b,
int c,
int d,
int x,
int s,
int ac)
|
static int |
HH(int a,
int b,
int c,
int d,
int x,
int s,
int ac)
|
static int |
II(int a,
int b,
int c,
int d,
int x,
int s,
int ac)
|
void |
reset()
Reset the internal state |
static int |
rotateLeft(int x,
int n)
|
void |
transform(byte[] data,
int offset)
|
static int |
uadd(int a,
int b)
|
static int |
uadd(int a,
int b,
int c)
|
static int |
uadd(int a,
int b,
int c,
int d)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public int[] hash
public long count
public byte[] buffer
state
.
Constructor Detail |
public MD5State.SubState()
public MD5State.SubState(MD5State.SubState s)
Method Detail |
public void reset()
public static int rotateLeft(int x, int n)
public static int uadd(int a, int b)
public static int uadd(int a, int b, int c)
public static int uadd(int a, int b, int c, int d)
public static int FF(int a, int b, int c, int d, int x, int s, int ac)
public static int GG(int a, int b, int c, int d, int x, int s, int ac)
public static int HH(int a, int b, int c, int d, int x, int s, int ac)
public static int II(int a, int b, int c, int d, int x, int s, int ac)
public void transform(byte[] data, int offset)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |