| java.lang.Object org.bouncycastle.crypto.digests.GeneralDigest
All known Subclasses: org.bouncycastle.crypto.digests.RIPEMD256Digest, org.bouncycastle.crypto.digests.RIPEMD128Digest, org.bouncycastle.crypto.digests.SHA256Digest, org.bouncycastle.crypto.digests.SHA1Digest, org.bouncycastle.crypto.digests.MD5Digest, org.bouncycastle.crypto.digests.RIPEMD320Digest, org.bouncycastle.crypto.digests.RIPEMD160Digest, org.bouncycastle.crypto.digests.MD4Digest, org.bouncycastle.crypto.digests.SHA224Digest,
GeneralDigest | abstract public class GeneralDigest implements ExtendedDigest(Code) | | base implementation of MD4 family style digest as outlined in
"Handbook of Applied Cryptography", pages 344 - 347.
|
GeneralDigest | protected GeneralDigest()(Code) | | Standard constructor
|
GeneralDigest | protected GeneralDigest(GeneralDigest t)(Code) | | 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()(Code) | | |
getByteLength | public int getByteLength()(Code) | | |
processBlock | abstract protected void processBlock()(Code) | | |
processLength | abstract protected void processLength(long bitLength)(Code) | | |
processWord | abstract protected void processWord(byte[] in, int inOff)(Code) | | |
reset | public void reset()(Code) | | |
update | public void update(byte in)(Code) | | |
update | public void update(byte[] in, int inOff, int len)(Code) | | |
|
|