Class DigestInputStream

All Implemented Interfaces:
Closeable, AutoCloseable

public class DigestInputStream extends FilterInputStream
A transparent stream that updates the associated message digest using the bits going through the stream.

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.
Since:
1.2
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected MessageDigest
    The message digest associated with this stream.

    Fields declared in class FilterInputStream

    in
    Modifier and Type
    Field
    Description
    protected InputStream
    The input stream to be filtered.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a digest input stream, using the specified input stream and message digest.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the message digest associated with this stream.
    void
    on(boolean on)
    Turns the digest function on or off.
    int
    Reads a byte, and updates the message digest (if the digest function is on).
    int
    read(byte[] b, int off, int len)
    Reads into a byte array, and updates the message digest (if the digest function is on).
    void
    Associates the specified message digest with this stream.
    Prints a string representation of this digest input stream and its associated message digest object.

    Methods declared in class FilterInputStream

    available, close, mark, markSupported, read, reset, skip
    Modifier and Type
    Method
    Description
    int
    Returns an estimate of the number of bytes that can be read (or skipped over) from this input stream without blocking by the next caller of a method for this input stream.
    void
    Closes this input stream and releases any system resources associated with the stream.
    void
    mark(int readlimit)
    Marks the current position in this input stream.
    boolean
    Tests if this input stream supports the mark and reset methods.
    int
    read(byte[] b)
    Reads up to b.length bytes of data from this input stream into an array of bytes.
    void
    Repositions this stream to the position at the time the mark method was last called on this input stream.
    long
    skip(long n)
    Skips over and discards n bytes of data from the input stream.

    Methods declared in class InputStream

    nullInputStream, readAllBytes, readNBytes, readNBytes, skipNBytes, transferTo
    Modifier and Type
    Method
    Description
    Returns a new InputStream that reads no bytes.
    byte[]
    Reads all remaining bytes from the input stream.
    int
    readNBytes(byte[] b, int off, int len)
    Reads the requested number of bytes from the input stream into the given byte array.
    byte[]
    readNBytes(int len)
    Reads up to a specified number of bytes from the input stream.
    void
    skipNBytes(long n)
    Skips over and discards exactly n bytes of data from this input stream.
    long
    Reads all bytes from this input stream and writes the bytes to the given output stream in the order that they are read.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
  • Field Details

    • digest

      protected MessageDigest digest
      The message digest associated with this stream.
  • Constructor Details

    • DigestInputStream

      public DigestInputStream(InputStream stream, MessageDigest digest)
      Creates a digest input stream, using the specified input stream and message digest.
      Parameters:
      stream - the input stream.
      digest - the message digest to associate with this stream.
  • Method Details

    • getMessageDigest

      public MessageDigest getMessageDigest()
      Returns the message digest associated with this stream.
      Returns:
      the message digest associated with this stream.
      See Also:
    • setMessageDigest

      public void setMessageDigest(MessageDigest digest)
      Associates the specified message digest with this stream.
      Parameters:
      digest - the message digest to be associated with this stream.
      See Also:
    • read

      public int read() throws IOException
      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 on), this method will then call update on the message digest associated with this stream, passing it the byte read.
      Overrides:
      read in class FilterInputStream
      Returns:
      the byte read.
      Throws:
      IOException - if an I/O error occurs.
      See Also:
    • read

      public int read(byte[] b, int off, int len) throws IOException
      Reads into a byte array, and updates the message digest (if the digest function is on). That is, this method reads up to len bytes from the input stream into the array b, starting at offset off. This method blocks until the data is actually read. If the digest function is on (see on), this method will then call update on the message digest associated with this stream, passing it the data.
      Overrides:
      read in class FilterInputStream
      Parameters:
      b - the array into which the data is read.
      off - the starting offset into b of where the data should be placed.
      len - the maximum number of bytes to be read from the input stream into b, starting at offset off.
      Returns:
      the actual number of bytes read. This is less than len 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.
      Throws:
      IOException - if an I/O error occurs.
      See Also:
    • on

      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 methods results in an update on the message digest. But when it is off, the message digest is not updated.
      Parameters:
      on - true to turn the digest function on, false to turn it off.
    • toString

      public String toString()
      Prints a string representation of this digest input stream and its associated message digest object.
      Overrides:
      toString in class Object
      Returns:
      a string representation of the object