Class CRLFGeneratorStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.pgpainless.encryption_signing.CRLFGeneratorStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class CRLFGeneratorStream extends java.io.OutputStreamOutputStreamwhich applies CR-LF encoding of its input data, based on the desiredStreamEncoding. This implementation originates from the Bouncy Castle library.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.io.OutputStreamcrlfOut
-
Constructor Summary
Constructors Constructor Description CRLFGeneratorStream(java.io.OutputStream crlfOut, StreamEncoding encoding)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()voidwrite(int b)
-
-
-
Constructor Detail
-
CRLFGeneratorStream
public CRLFGeneratorStream(java.io.OutputStream crlfOut, StreamEncoding encoding)
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException- Specified by:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.OutputStream- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException- Specified by:
flushin interfacejava.io.Flushable- Overrides:
flushin classjava.io.OutputStream- Throws:
java.io.IOException
-
-