aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/DigestAlgorithmIdentifierFinder.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/DigestAlgorithmIdentifierFinder.java')
-rw-r--r--libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/DigestAlgorithmIdentifierFinder.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/DigestAlgorithmIdentifierFinder.java b/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/DigestAlgorithmIdentifierFinder.java
deleted file mode 100644
index 1254c38e3..000000000
--- a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/operator/DigestAlgorithmIdentifierFinder.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.spongycastle.operator;
-
-import org.spongycastle.asn1.x509.AlgorithmIdentifier;
-
-public interface DigestAlgorithmIdentifierFinder
-{
- /**
- * Find the digest algorithm identifier that matches with
- * the passed in signature algorithm identifier.
- *
- * @param sigAlgId the signature algorithm of interest.
- * @return an algorithm identifier for the corresponding digest.
- */
- AlgorithmIdentifier find(AlgorithmIdentifier sigAlgId);
-
- /**
- * Find the algorithm identifier that matches with
- * the passed in digest name.
- *
- * @param digAlgName the name of the digest algorithm of interest.
- * @return an algorithm identifier for the digest signature.
- */
- AlgorithmIdentifier find(String digAlgName);
-} \ No newline at end of file