To complete the message digest computation, call one of the
digest
methods on the associated message
digest after your calls to one of this digest input stream's
read
methods.
It is possible to turn this stream on or off (see
on
). When it is on, a call to one of the
read
methods
results in an update on the message digest. But when it is off,
the message digest is not updated. The default is for the stream
to be on.
Note that digest objects can compute only one digest (see
MessageDigest
),
so that in order to compute intermediate digests, a caller should
retain a handle onto the digest object, and clone it for each
digest to be computed, leaving the original digest untouched.
Implementation Note
This implementation only updates the message digest
with data actually read from the input stream when it is
turned on. This includes the various
read
methods, transferTo
, readAllBytes
,
and readNBytes
. Please note that data bypassed by the
skip
method are ignored. On the other hand,
if the underlying stream supports the mark
and
reset
methods, and the same data is read again after
reset
, then the message digest is updated again.
MessageDigest
, DigestOutputStream
Modifier and Type | Field and Description |
---|---|
protected MessageDigest | digest
The message digest associated with this stream. |
private boolean |
Access | Constructor and Description |
---|---|
public | DigestInputStream(InputStream
the input stream. stream, MessageDigest the message digest to associate with this stream. digest)Creates a digest input stream, using the specified input stream and message digest. |
Modifier and Type | Method and Description |
---|---|
public MessageDigest | Returns: the message digest associated with this stream.Returns the message digest associated with this stream. |
public void | on(boolean
true to turn the digest function on,
false to turn it off.Turns the digest function on or off. |
public int | Returns: the byte read.Overrides java. Reads a byte, and updates the message digest (if the digest function is on). |
public int | Returns: the actual number of bytes read. This is less thanlen if the end of the stream is reached prior to
reading len bytes. -1 is returned if no bytes were
read because the end of the stream had already been reached when
the call was made.the array into which the data is read. b, int the starting offset into off, int b of where the
data should be placed.the maximum number of bytes to be read from the input
stream into b, starting at offset len)off .Overrides java. Reads into a byte array, and updates the message digest (if the digest function is on). |
public void | setMessageDigest(MessageDigest
the message digest to be associated with this stream. digest)Associates the specified message digest with this stream. |
public String | toString()
Overrides java. Prints a string representation of this digest input stream and its associated message digest object. |
digest | back to summary |
---|---|
protected MessageDigest digest The message digest associated with this stream. |
on | back to summary |
---|---|
private boolean on |
DigestInputStream | back to summary |
---|---|
public DigestInputStream(InputStream stream, MessageDigest digest) Creates a digest input stream, using the specified input stream and message digest.
|
getMessageDigest | back to summary |
---|---|
public MessageDigest getMessageDigest() Returns the message digest associated with this stream.
|
on | back to summary |
---|---|
public void on(boolean on) Turns the digest function on or off. The default is on. When
it is on, a call to one of the
|
read | back to summary |
---|---|
public int read() throws IOException Overrides java. Reads a byte, and updates the message digest (if the digest
function is on). That is, this method reads a byte from the
input stream, blocking until the byte is actually read. If the
digest function is on (see
|
read | back to summary |
---|---|
public int read(byte[] b, int off, int len) throws IOException Overrides java. Reads into a byte array, and updates the message digest (if the
digest function is on). That is, this method reads up to
|
setMessageDigest | back to summary |
---|---|
public void setMessageDigest(MessageDigest digest) Associates the specified message digest with this stream.
|
toString | back to summary |
---|---|
public String toString() Overrides java. Prints a string representation of this digest input stream and its associated message digest object.
|