MessageDigest.update
Class Overview | Class Members |
This Package |
All Packages
public void update( byte input )
Parameters
- input
- the byte with which to update the digest.
Description
Updates the digest using the specified byte.
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.
public void update( byte input[] )
Parameters
- input
- the array of bytes.
Description
Updates the digest using the specified array of bytes.