![]() D.6. Package javax.crypto.interfaces
This interface represents a public or private key used the Diffie-Hellman key agreement implementation. Interface Definitionpublic abstract interface javax.crypto.interfaces.DHKey { // Instance Methods public abstract DHParameterSpec getParams(); } See also: DHPrivateKey, DHPublicKey
This interface represents a private key in a Diffie-Hellman key agreement protocol. Interface Definitionpublic abstract interface javax.crypto.interfaces.DHPrivateKey implements javax.crypto.interfaces.DHKey, java.security.PrivateKey { // Instance Methods public abstract BigInteger getX(); } See also: DHKey, DHPublicKey, PrivateKey
This interface represents a public key in a Diffie-Hellman key agreement protocol. Interface Definitionpublic abstract interface javax.crypto.interfaces.DHPublicKey implements javax.crypto.interfaces.DHKey, java.security.PublicKey { // Instance Methods public abstract BigInteger getY(); } See also: DHKey, DHPrivateKey, PublicKey ![]() Copyright © 2001 O'Reilly & Associates. All rights reserved. |
|