| java.lang.Object | |||
| ↳ | java.io.InputStream | ||
| ↳ | java.io.FilterInputStream | ||
| ↳ | java.security.DigestInputStream | ||
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| digest | |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.io.FilterInputStream
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Returns the MessageDigest which the receiver uses when computing the
hash.
| |||||||||||
Enables or disables the digest function (default is on).
| |||||||||||
Reads at most
count bytes from this FilterInputStream and
stores them in byte array buffer starting at
offset. | |||||||||||
Reads the next byte and returns it as an int.
| |||||||||||
Sets the MessageDigest which the receiver will use when computing the
hash.
| |||||||||||
Returns a string containing a concise, human-readable description of the
receiver.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.io.FilterInputStream
| |||||||||||
From class java.io.InputStream
| |||||||||||
From class java.lang.Object
| |||||||||||
From interface java.io.Closeable
| |||||||||||
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. |
|---|
Reads at most count bytes from this FilterInputStream and
stores them in byte array buffer starting at
offset. Answer the number of bytes actually read or -1 if
no bytes were read and end of stream was encountered. This implementation
reads bytes from the target stream.
| b | the byte array in which to store the read bytes. |
|---|---|
| off | the offset in buffer to store the read bytes. |
| len | the maximum number of bytes to store in buffer. |
| IOException |
|---|
Reads the next byte and returns it as an int. Updates the digest for the byte if this function is enabled.
| IOException | If reading the source stream causes an IOException. |
|---|
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.