Team LiB
Previous Section Next Section

ECPublicKeySpecjava.security.spec

Java 5.0

This class is an immutable representation of a public key for elliptic curve cryptography.

Figure 14-92. java.security.spec.ECPublicKeySpec


public class ECPublicKeySpec implements KeySpec {
// Public Constructors
     public ECPublicKeySpec(ECPoint w, ECParameterSpec params);  
// Public Instance Methods
     public ECParameterSpec getParams( );  
     public ECPoint getW( );  
}

    Team LiB
    Previous Section Next Section