DHKey | javax.crypto.interfaces |
This interface represents a Diffie-Hellman key. The javax.crypto.spec.DHParameterSpec returned by getParams( ) specifies the parameters that generate the key; they define a key family. See the subinterfaces DHPublicKey and DHPrivateKey for the actual key values.public interface DHKey { // Public Instance Methods javax.crypto.spec.DHParameterSpec getParams ( ); }
Implementations DHPrivateKey, DHPublicKey |