|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.security.MessageDigestSpi | +--java.security.MessageDigest | +--iaik.security.md.AbstractMessageDigest | +--iaik.security.md.SHA64bit
This class implements the core of the NIST proposed 64 bit based hash function SHA-384 and SHA-512.
SHA384
,
SHA512
Method Summary | |
Object |
clone()
Returns a clone of this SHA 64-bit Object. |
protected byte[] |
engineDigest()
b>SPI: Completes the hash computation by performing final operations such as padding. |
int |
engineGetDigestLength()
SPI: Returns the length of the digest in bytes. |
void |
engineReset()
SPI: Resets this message digest for further use. |
protected void |
engineUpdate(byte input)
SPI: Updates the data to be hashed with the specified byte. |
protected void |
engineUpdate(byte[] input,
int offset,
int len)
SPI: Updates the data to be hashed with the specified number of bytes, beginning at the specified offset within the given byte array. |
Methods inherited from class java.security.MessageDigest |
digest, digest, digest, getAlgorithm, getDigestLength, getInstance, getInstance, getProvider, isEqual, reset, toString, update, update, update |
Methods inherited from class java.security.MessageDigestSpi |
engineDigest |
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Method Detail |
public Object clone()
clone
in class iaik.security.md.AbstractMessageDigest
public void engineReset()
iaik.security.md.AbstractMessageDigest
engineReset
in class iaik.security.md.AbstractMessageDigest
protected final void engineUpdate(byte input)
engineUpdate
in class MessageDigestSpi
input
- the byte to be used for updating.protected final void engineUpdate(byte[] input, int offset, int len)
engineUpdate
in class MessageDigestSpi
input
- the byte array holding the data to be used for this update
operation.offset
- the offset, indicating the start position within the given
byte array.len
- the number of bytes to be obtained from the given byte array,
starting at the given position.protected byte[] engineDigest()
engineDigest
has been called, the engine should be
reset. Resetting is the responsibility of the engine implementor.engineDigest
in class MessageDigestSpi
AbstractMessageDigest.engineReset()
public int engineGetDigestLength()
May not be available for applications before JDK versions >= 1.2.x.
engineGetDigestLength
in class MessageDigestSpi
|
This Javadoc may contain text parts from Internet Standard specifications (RFC 2459, 3280, 3039, 2560, 1521, 821, 822, 2253, 1319, 1321, ,2630, 2631, 2268, 3058, 2984, 2104, 2144, 2040, 2311, 2279, see copyright note) and RSA Data Security Public-Key Cryptography Standards (PKCS#1,3,5,7,8,9,10,12, see copyright note). | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |