org.bouncycastle.crypto.digests
Class GeneralDigest
java.lang.Object
org.bouncycastle.crypto.digests.GeneralDigest
- Digest
public abstract class GeneralDigest
extends java.lang.Object
base implementation of MD4 family style digest as outlined in
"Handbook of Applied Cryptography", pages 344 - 347.
GeneralDigest
protected GeneralDigest()
Standard constructor
GeneralDigest
protected GeneralDigest(GeneralDigest t)
Copy constructor. We are using copy constructors in place
of the Object.clone() interface as this interface is not
supported by J2ME.
finish
public void finish()
processBlock
protected void processBlock()
processLength
protected void processLength(long bitLength)
processWord
protected void processWord(byte[] in,
int inOff)
update
public void update(byte[] in,
int inOff,
int len)
- update in interface Digest