aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHKey.java')
-rw-r--r--libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHKey.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHKey.java b/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHKey.java
deleted file mode 100644
index 5d404110f..000000000
--- a/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHKey.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package javax.crypto.interfaces;
-
-import javax.crypto.spec.DHParameterSpec;
-
-/**
- * The interface to a Diffie-Hellman key.
- *
- * @see DHParameterSpec
- * @see DHPublicKey
- * @see DHPrivateKey
- */
-public abstract interface DHKey
-{
- /**
- * Returns the key parameters.
- *
- * @return the key parameters
- */
- public DHParameterSpec getParams();
-}