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 'pkix/src/main/java/org/bouncycastle/cms/CMSProcessableInputStream.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/cms/CMSProcessableInputStream.java50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/cms/CMSProcessableInputStream.java b/pkix/src/main/java/org/bouncycastle/cms/CMSProcessableInputStream.java
deleted file mode 100644
index a73e2329..00000000
--- a/pkix/src/main/java/org/bouncycastle/cms/CMSProcessableInputStream.java
+++ /dev/null
@@ -1,50 +0,0 @@
-package org.bouncycastle.cms;
-
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.OutputStream;
-
-import org.bouncycastle.util.io.Streams;
-
-class CMSProcessableInputStream implements CMSProcessable, CMSReadable
-{
- private InputStream input;
- private boolean used = false;
-
- public CMSProcessableInputStream(
- InputStream input)
- {
- this.input = input;
- }
-
- public InputStream getInputStream()
- {
- checkSingleUsage();
-
- return input;
- }
-
- public void write(OutputStream zOut)
- throws IOException, CMSException
- {
- checkSingleUsage();
-
- Streams.pipeAll(input, zOut);
- input.close();
- }
-
- public Object getContent()
- {
- return getInputStream();
- }
-
- private synchronized void checkSingleUsage()
- {
- if (used)
- {
- throw new IllegalStateException("CMSProcessableInputStream can only be used once");
- }
-
- used = true;
- }
-}