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/MacCalculator.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/operator/MacCalculator.java34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/operator/MacCalculator.java b/pkix/src/main/java/org/bouncycastle/operator/MacCalculator.java
deleted file mode 100644
index 0572afcb..00000000
--- a/pkix/src/main/java/org/bouncycastle/operator/MacCalculator.java
+++ /dev/null
@@ -1,34 +0,0 @@
-package org.bouncycastle.operator;
-
-import java.io.OutputStream;
-
-import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
-
-public interface MacCalculator
-{
- AlgorithmIdentifier getAlgorithmIdentifier();
-
- /**
- * Returns a stream that will accept data for the purpose of calculating
- * the MAC for later verification. 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 calculated MAC based on what has been written to the stream.
- *
- * @return calculated MAC.
- */
- byte[] getMac();
-
-
- /**
- * Return the key used for calculating the MAC.
- *
- * @return the MAC key.
- */
- GenericKey getKey();
-} \ No newline at end of file