Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pg/src/main/java/org/spongycastle/openpgp/WrappedGeneratorStream.java')
-rw-r--r--pg/src/main/java/org/spongycastle/openpgp/WrappedGeneratorStream.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/pg/src/main/java/org/spongycastle/openpgp/WrappedGeneratorStream.java b/pg/src/main/java/org/spongycastle/openpgp/WrappedGeneratorStream.java
new file mode 100644
index 00000000..f5360d51
--- /dev/null
+++ b/pg/src/main/java/org/spongycastle/openpgp/WrappedGeneratorStream.java
@@ -0,0 +1,46 @@
+package org.spongycastle.openpgp;
+
+import java.io.IOException;
+import java.io.OutputStream;
+
+class WrappedGeneratorStream
+ extends OutputStream
+{
+ private final OutputStream _out;
+ private final StreamGenerator _sGen;
+
+ public WrappedGeneratorStream(OutputStream out, StreamGenerator sGen)
+ {
+ _out = out;
+ _sGen = sGen;
+ }
+ public void write(byte[] bytes)
+ throws IOException
+ {
+ _out.write(bytes);
+ }
+
+ public void write(byte[] bytes, int offset, int length)
+ throws IOException
+ {
+ _out.write(bytes, offset, length);
+ }
+
+ public void write(int b)
+ throws IOException
+ {
+ _out.write(b);
+ }
+
+ public void flush()
+ throws IOException
+ {
+ _out.flush();
+ }
+
+ public void close()
+ throws IOException
+ {
+ _sGen.close();
+ }
+}