aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHPrivateKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHPrivateKey.java')
-rw-r--r--libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHPrivateKey.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHPrivateKey.java b/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHPrivateKey.java
deleted file mode 100644
index 3fc7de99b..000000000
--- a/libraries/spongycastle/jce/src/main/java/javax/crypto/interfaces/DHPrivateKey.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package javax.crypto.interfaces;
-
-import java.math.BigInteger;
-import java.security.PrivateKey;
-
-/**
- * The interface to a Diffie-Hellman private key.
- *
- * @see DHKey
- * @see DHPublicKey
- */
-public abstract interface DHPrivateKey
- extends DHKey, PrivateKey
-{
- /**
- * Returns the private value, <code>x</code>.
- *
- * @return the private value, <code>x</code>
- */
- public BigInteger getX();
-}