| java.lang.Object org.bouncycastle.crypto.digests.GeneralDigest org.bouncycastle.crypto.digests.SHA1Digest
SHA1Digest | public class SHA1Digest extends GeneralDigest (Code) | | implementation of SHA-1 as outlined in "Handbook of Applied Cryptography", pages 346 - 349.
It is interesting to ponder why the, apart from the extra IV, the other difference here from MD5
is the "endienness" of the word processing!
|
SHA1Digest | public SHA1Digest()(Code) | | Standard constructor
|
SHA1Digest | public SHA1Digest(SHA1Digest t)(Code) | | Copy constructor. This will copy the state of the provided
message digest.
|
doFinal | public int doFinal(byte[] out, int outOff)(Code) | | |
getDigestSize | public int getDigestSize()(Code) | | |
processBlock | protected void processBlock()(Code) | | |
processLength | protected void processLength(long bitLength)(Code) | | |
processWord | protected void processWord(byte[] in, int inOff)(Code) | | |
reset | public void reset()(Code) | | reset the chaining variables
|
|
|