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.PrivateKeyDeprecated.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.PrivateKeygetEphemeralPrivateKey()Deprecated.return the ephemeral private key.java.security.PublicKeygetEphemeralPublicKey()Deprecated.return the ephemeral public key (may be null).java.security.PrivateKeygetStaticPrivateKey()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).
-
-