| java.lang.Object | |||
| ↳ | java.io.OutputStream | ||
| ↳ | java.io.FilterOutputStream | ||
| ↳ | java.security.DigestOutputStream | ||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| digest | |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.io.FilterOutputStream
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the MessageDigest which the receiver uses when computing the
hash.
| |||||||||||
Enables or disables the digest function (default is on).
| |||||||||||
Sets the MessageDigest which the receiver will use when computing the
hash.
| |||||||||||
Returns a string containing a concise, human-readable description of the
receiver.
| |||||||||||
Writes the specified byte
oneByte to this
FilterOutputStream. | |||||||||||
Writes
count bytes from the byte array
buffer starting at offset to this
FilterOutputStream. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.io.FilterOutputStream
| |||||||||||
From class java.io.OutputStream
| |||||||||||
From class java.lang.Object
| |||||||||||
From interface java.io.Closeable
| |||||||||||
From interface java.io.Flushable
| |||||||||||
Returns the MessageDigest which the receiver uses when computing the hash.
Enables or disables the digest function (default is on).
| on | boolean true if the digest should be computed, and false otherwise. |
|---|
Sets the MessageDigest which the receiver will use when computing the hash.
| digest | MessageDigest the digest to use when computing the hash. |
|---|
Returns a string containing a concise, human-readable description of the receiver.
Writes the specified byte oneByte to this
FilterOutputStream. Only the low order byte of oneByte is
written. This implementation writes the byte to the target OutputStream.
| b | the byte to be written |
|---|
| IOException |
|---|
Writes count bytes from the byte array
buffer starting at offset to this
FilterOutputStream. This implementation writes the buffer
to the target OutputStream.
| b | the buffer to be written |
|---|---|
| off | offset in buffer to get bytes |
| len | number of bytes in buffer to write |
| IOException |
|---|