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/RawContentVerifier.java')
-rw-r--r--pkix/src/main/java/org/bouncycastle/operator/RawContentVerifier.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkix/src/main/java/org/bouncycastle/operator/RawContentVerifier.java b/pkix/src/main/java/org/bouncycastle/operator/RawContentVerifier.java
deleted file mode 100644
index 447a27b0..00000000
--- a/pkix/src/main/java/org/bouncycastle/operator/RawContentVerifier.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package org.bouncycastle.operator;
-
-/**
- * Interface for ContentVerifiers that also support raw signatures that can be
- * verified using the digest of the calculated data.
- */
-public interface RawContentVerifier
-{
- /**
- * Verify that the expected signature value was derived from the passed in digest.
- *
- * @param digest digest calculated from the content.
- * @param expected expected value of the signature
- * @return true if the expected signature is derived from the digest, false otherwise.
- */
- boolean verify(byte[] digest, byte[] expected);
-}