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/cms/SignerInformationVerifierProvider.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java b/pkix/src/main/java/org/bouncycastle/cms/SignerInformationVerifierProvider.java
deleted file mode 100644
index 5568b0ec..00000000
--- a/pkix/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;
-}