summaryrefslogtreecommitdiffstats
path: root/bcpkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcpkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java')
-rw-r--r--bcpkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/bcpkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java b/bcpkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java
deleted file mode 100644
index 5568b0e..0000000
--- a/bcpkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package org.bouncycastle.cms;
-
-import org.bouncycastle.operator.OperatorCreationException;
-
-public interface SignerInformationVerifierProvider
-{
- /**
- * Return a SignerInformationVerifierProvider suitable for the passed in SID.
- *
- * @param sid the SignerId we are trying to match for.
- * @return a verifier if one is available, null otherwise.
- * @throws OperatorCreationException if creation of the verifier fails when it should suceed.
- */
- public SignerInformationVerifier get(SignerId sid)
- throws OperatorCreationException;
-}