aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/ContentSigner.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/ContentSigner.java')
-rw-r--r--libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/ContentSigner.java27
1 files changed, 0 insertions, 27 deletions
diff --git a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/ContentSigner.java b/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/ContentSigner.java
deleted file mode 100644
index fcdeefc45..000000000
--- a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/ContentSigner.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package org.spongycastle.operator;
-
-import java.io.OutputStream;
-
-import org.spongycastle.asn1.x509.AlgorithmIdentifier;
-
-public interface ContentSigner
-{
- AlgorithmIdentifier getAlgorithmIdentifier();
-
- /**
- * Returns a stream that will accept data for the purpose of calculating
- * a signature. Use org.spongycastle.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();
-}