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/operator/ContentSigner.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/operator/ContentSigner.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/operator/ContentSigner.java b/pkix/src/main/java/org/bouncycastle/operator/ContentSigner.java
deleted file mode 100644
index fadef603..00000000
--- a/pkix/src/main/java/org/bouncycastle/operator/ContentSigner.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package org.bouncycastle.operator;
-
-import java.io.OutputStream;
-
-import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
-
-public interface ContentSigner
-{
- AlgorithmIdentifier getAlgorithmIdentifier();
-
- /**
- * Returns a stream that will accept data for the purpose of calculating
- * a signature. Use org.bouncycastle.util.io.TeeOutputStream if you want to accumulate
- * the data on the fly as well.
- *
- * @return an OutputStream
- */
- OutputStream getOutputStream();
-
- /**
- * Returns a signature based on the current data written to the stream, since the
- * start or the last call to getSignature().
- *
- * @return bytes representing the signature.
- */
- byte[] getSignature();
-}