Package org.bouncycastle.jce.interfaces
Interface MQVPrivateKey
-
- All Superinterfaces:
javax.security.auth.Destroyable
,java.security.Key
,java.security.PrivateKey
,java.io.Serializable
- All Known Implementing Classes:
MQVPrivateKeySpec
public interface MQVPrivateKey extends java.security.PrivateKey
Deprecated.use MQVParameterSpec for passing the ephemeral key.Static/ephemeral private key (pair) for use with ECMQV key agreement (Optionally provides the ephemeral public key)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.security.PrivateKey
getEphemeralPrivateKey()
Deprecated.return the ephemeral private key.java.security.PublicKey
getEphemeralPublicKey()
Deprecated.return the ephemeral public key (may be null).java.security.PrivateKey
getStaticPrivateKey()
Deprecated.return the static private key.
-
-
-
Method Detail
-
getStaticPrivateKey
java.security.PrivateKey getStaticPrivateKey()
Deprecated.return the static private key.
-
getEphemeralPrivateKey
java.security.PrivateKey getEphemeralPrivateKey()
Deprecated.return the ephemeral private key.
-
getEphemeralPublicKey
java.security.PublicKey getEphemeralPublicKey()
Deprecated.return the ephemeral public key (may be null).
-
-