md5
Class MD5State

java.lang.Object
  extended by md5.MD5State

 class MD5State
extends java.lang.Object

Contains internal state of the MD5 class

Author:
Santeri Paavolainen

Field Summary
(package private)  byte[] buffer
          64-byte buffer (512 bits) for storing to-be-hashed characters
(package private)  int[] count
          64-bit character count (could be true Java long?)
(package private)  int[] state
          128-byte state
 
Constructor Summary
MD5State()
           
MD5State(MD5State from)
          Create this State as a copy of another state
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

buffer

byte[] buffer
64-byte buffer (512 bits) for storing to-be-hashed characters


count

int[] count
64-bit character count (could be true Java long?)


state

int[] state
128-byte state

Constructor Detail

MD5State

public MD5State()

MD5State

public MD5State(MD5State from)
Create this State as a copy of another state