com.ibm.security.certclient.util
Class PkBase64InputStream
- java.lang.Object
java.io.InputStream
com.ibm.security.certclient.util.PkBase64InputStream
All implemented interfaces:
- public class PkBase64InputStream
- extends InputStream
Author:
Rod Mancisidor
Field Summary
Modifier and Type | Field and Description |
---|---|
|
base64Values
Provides the character to value map based on RFC1521.
|
|
sccsid
|
Constructor Summary
Constructor and Description |
---|
PkBase64InputStream(InputStream in)
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
close()
|
|
lastChar()
Returns the extra byte consumed by this InpuStream.
|
|
read()
|
Methods inherited from class java.io.InputStream |
---|
available, mark, markSupported, read, read, reset, skip |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail
sccsid
- public static final String sccsid
See Also:
base64Values
- public static final char[] base64Values
Provides the character to value map based on RFC1521.
Constructor Detail
PkBase64InputStream
- public PkBase64InputStream(InputStream in)
- throws IOException
Throws:
Method Detail
read
- public int read()
- throws IOException
Specified by:
read
in class InputStream
Throws:
close
- public void close()
- throws IOException
Throws:
lastChar
- public int lastChar()
Returns the extra byte consumed by this InpuStream. This method
should be called only after
read()
returns -1. If this method
then also returns -1, the end of input was reached. Otherwise, there
may be more bytes in the input.