Updates the message digest (if the digest function is on) using
the specified subarray, and in any case writes the subarray to
the output stream. That is, if the digest function is on (see
on
), this method calls
update
on the message digest associated with this stream, passing it
the subarray specifications. This method then writes the subarray
bytes to the output stream, blocking until the bytes are actually
written.
Parameters:
-
b - the array containing the subarray to be used for updating
and writing to the output stream.
-
off - the offset into
b
of the first byte to
be updated and written.
-
len - the number of bytes of data to be updated and written
from
b
, starting at offset
off
.
Throws:
-
IOException - if an I/O error occurs.
See Also:
MessageDigest.update(byte[], int, int)
,