summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/jce/interfaces/MQVPublicKey.java
diff options
context:
space:
mode:
Diffstat (limited to 'bcprov/src/main/java/org/bouncycastle/jce/interfaces/MQVPublicKey.java')
-rw-r--r--bcprov/src/main/java/org/bouncycastle/jce/interfaces/MQVPublicKey.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/bcprov/src/main/java/org/bouncycastle/jce/interfaces/MQVPublicKey.java b/bcprov/src/main/java/org/bouncycastle/jce/interfaces/MQVPublicKey.java
deleted file mode 100644
index 1be14bd..0000000
--- a/bcprov/src/main/java/org/bouncycastle/jce/interfaces/MQVPublicKey.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package org.bouncycastle.jce.interfaces;
-
-import java.security.PublicKey;
-
-/**
- * Static/ephemeral public key pair for use with ECMQV key agreement
- */
-public interface MQVPublicKey
- extends PublicKey
-{
- /**
- * return the static public key.
- */
- PublicKey getStaticKey();
-
- /**
- * return the ephemeral public key.
- */
- PublicKey getEphemeralKey();
-}