MessageDigest.update

MessageDigest.update

Class Overview | Class Members | This Package | All Packages

Syntax 1
public void update( byte input )
Parameters
input
the byte with which to update the digest.
Description
Updates the digest using the specified byte.



Syntax 2
public void update( byte input[], int offset, int len )
Parameters
input
the array of bytes.
offset
the offset to start from in the array of bytes.
len
the number of bytes to use, starting at offset.
Description
Updates the digest using the specified array of bytes, starting at the specified offset.



Syntax 3
public void update( byte input[] )
Parameters
input
the array of bytes.
Description
Updates the digest using the specified array of bytes.