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 'core/src/main/java/org/bouncycastle/crypto/digests/EncodableDigest.java')
-rw-r--r--core/src/main/java/org/bouncycastle/crypto/digests/EncodableDigest.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/core/src/main/java/org/bouncycastle/crypto/digests/EncodableDigest.java b/core/src/main/java/org/bouncycastle/crypto/digests/EncodableDigest.java
deleted file mode 100644
index d79fece8..00000000
--- a/core/src/main/java/org/bouncycastle/crypto/digests/EncodableDigest.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package org.bouncycastle.crypto.digests;
-
-/**
- * Encodable digests allow you to download an encoded copy of their internal state. This is useful for the situation where
- * you need to generate a signature on an external device and it allows for "sign with last round", so a copy of the
- * internal state of the digest, plus the last few blocks of the message are all that needs to be sent, rather than the
- * entire message.
- */
-public interface EncodableDigest
-{
- /**
- * Return an encoded byte array for the digest's internal state
- *
- * @return an encoding of the digests internal state.
- */
- byte[] getEncodedState();
-}