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