Team LiB
Previous Section Next Section

DHKeyjavax.crypto.interfaces

Java 1.4

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

    Team LiB
    Previous Section Next Section