MessageDigest.engineUpdate

MessageDigest.engineUpdate

Class Overview | Class Members | This Package | All Packages

Syntax 1
protected abstract void engineUpdate( byte input )
Parameters
input
the byte to use for the update.
Description
SPI: Updates the digest using the specified byte.



Syntax 2
protected abstract void engineUpdate( byte input[], int offset, int len )
Parameters
input
the array of bytes to use for the update.
offset
the offset to start from in the array of bytes.
len
the number of bytes to use, starting at offset.
Description
SPI: Updates the digest using the specified array of bytes, starting at the specified offset. This should be a no-op if the digest has been finalized.