DigestOutputStream

public class DigestOutputStream
extends FilterOutputStream

java.lang.Object
   ↳ java.io.OutputStream
     ↳ java.io.FilterOutputStream
       ↳ java.security.DigestOutputStream


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 output stream's write methods.

It is possible to turn this stream on or off (see on). When it is on, a call to one of the write 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.

Summary

Fields

protected MessageDigest digest

The message digest associated with this stream.

Inherited fields

protected OutputStream out

The underlying output stream to be filtered.

Public constructors

DigestOutputStream(OutputStream stream, MessageDigest digest)

Creates a digest output stream, using the specified output stream and message digest.

Public methods

MessageDigest getMessageDigest()

Returns the message digest associated with this stream.

void on(boolean on)

Turns the digest function on or off.

void setMessageDigest(MessageDigest digest)

Associates the specified message digest with this stream.

String toString()

Prints a string representation of this digest output stream and its associated message digest object.

void write(byte[] b, int off, int len)

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.

void write(int b)

Updates the message digest (if the digest function is on) using the specified byte, and in any case writes the byte to the output stream.

Inherited methods

void close()

Closes this output stream and releases any system resources associated with the stream.

void flush()

Flushes this output stream and forces any buffered output bytes to be written out to the stream.

void write(byte[] b)

Writes b.length bytes to this output stream.

void write(byte[] b, int off, int len)

Writes len bytes from the specified byte array starting at offset off to this output stream.

void write(int b)

Writes the specified byte to this output stream.

void close()

Closes this output stream and releases any system resources associated with this stream.

void flush()

Flushes this output stream and forces any buffered output bytes to be written out.

static OutputStream nullOutputStream()

Returns a new OutputStream which discards all bytes.

void write(byte[] b)

Writes b.length bytes from the specified byte array to this output stream.

void write(byte[] b, int off, int len)

Writes len bytes from the specified byte array starting at offset off to this output stream.

abstract void write(int b)

Writes the specified byte to this output stream.

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

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.

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()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

abstract void close()

Closes this stream and releases any system resources associated with it.

abstract void flush()

Flushes this stream by writing any buffered output to the underlying stream.

abstract void close()

Closes this resource, relinquishing any underlying resources.

Fields

digest

Added in API level 1
protected MessageDigest digest

The message digest associated with this stream.

Public constructors

DigestOutputStream

Added in API level 1
public DigestOutputStream (OutputStream stream, 
                MessageDigest digest)

Creates a digest output stream, using the specified output stream and message digest.

Parameters
stream OutputStream: the output stream.

digest MessageDigest: the message digest to associate with this stream.

Public methods

getMessageDigest

Added in API level 1
public MessageDigest getMessageDigest ()

Returns the message digest associated with this stream.

Returns
MessageDigest the message digest associated with this stream.

on

Added in API level 1
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 write methods results in an update on the message digest. But when it is off, the message digest is not updated.

Parameters
on boolean: true to turn the digest function on, false to turn it off.

setMessageDigest

Added in API level 1
public void setMessageDigest (MessageDigest digest)

Associates the specified message digest with this stream.

Parameters
digest MessageDigest: the message digest to be associated with this stream.

See also:

toString

Added in API level 1
public String toString ()

Prints a string representation of this digest output stream and its associated message digest object.

Returns
String a string representation of the object.

write

Added in API level 1
public void write (byte[] b, 
                int off, 
                int len)

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 byte: the array containing the subarray to be used for updating and writing to the output stream.

off int: the offset into b of the first byte to be updated and written.

len int: 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.

write

Added in API level 1
public void write (int b)

Updates the message digest (if the digest function is on) using the specified byte, and in any case writes the byte 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 byte b. This method then writes the byte to the output stream, blocking until the byte is actually written.

Parameters
b int: the byte to be used for updating and writing to the output stream.

Throws
IOException if an I/O error occurs.