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/DigestCalculator.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/operator/DigestCalculator.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/operator/DigestCalculator.java b/pkix/src/main/java/org/bouncycastle/operator/DigestCalculator.java
deleted file mode 100644
index 203e876f..00000000
--- a/pkix/src/main/java/org/bouncycastle/operator/DigestCalculator.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package org.bouncycastle.operator;
-
-import java.io.OutputStream;
-
-import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
-
-/**
- * General interface for an operator that is able to calculate a digest from
- * a stream of output.
- */
-public interface DigestCalculator
-{
- /**
- * Return the algorithm identifier representing the digest implemented by
- * this calculator.
- *
- * @return algorithm id and parameters.
- */
- AlgorithmIdentifier getAlgorithmIdentifier();
-
- /**
- * Returns a stream that will accept data for the purpose of calculating
- * a digest. Use org.bouncycastle.util.io.TeeOutputStream if you want to accumulate
- * the data on the fly as well.
- *
- * @return an OutputStream
- */
- OutputStream getOutputStream();
-
- /**
- * Return the digest calculated on what has been written to the calculator's output stream.
- *
- * @return a digest.
- */
- byte[] getDigest();
-}