| |
|
| java.lang.Object java.io.OutputStream org.bouncycastle.bcpg.ArmoredOutputStream
ArmoredOutputStream | public class ArmoredOutputStream extends OutputStream (Code) | | Basic output stream.
|
Method Summary | |
public void | beginClearText(int hashAlgorithm) Start a clear text signed message. | public void | close() Note: close does nor close the underlying stream. | public void | endClearText() | public void | flush() | public void | resetHeaders() Reset the headers to only contain a Version string. | public void | setHeader(String name, String value) Set an additional header entry. | public void | write(int b) |
chunkCount | int chunkCount(Code) | | |
clearText | boolean clearText(Code) | | |
beginClearText | public void beginClearText(int hashAlgorithm) throws IOException(Code) | | Start a clear text signed message.
Parameters: hashAlgorithm - |
close | public void close() throws IOException(Code) | | Note: close does nor close the underlying stream. So it is possible to write
multiple objects using armoring to a single stream.
|
endClearText | public void endClearText()(Code) | | |
resetHeaders | public void resetHeaders()(Code) | | Reset the headers to only contain a Version string.
|
setHeader | public void setHeader(String name, String value)(Code) | | Set an additional header entry.
Parameters: name - the name of the header entry. Parameters: value - the value of the header entry. |
|
|
|