D.6. Package javax.crypto.interfaces
Interface Definitionpublic abstract interface javax.crypto.interfaces.DHKey { // Instance Methods public abstract DHParameterSpec getParams(); } See also: DHPrivateKey, DHPublicKey
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
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. |
|