JavaTM 2 Platform Std. Ed. v1.6.0
java.security.interfaces
Interface ECPublicKey
- All Superinterfaces:
- ECKey, Key, PublicKey, Serializable
public interface ECPublicKey - extends PublicKey, ECKey
The interface to an elliptic curve (EC) public key.
- Since:
- 1.5
- See Also:
PublicKey ,
ECKey ,
ECPoint
Field Summary |
static long |
serialVersionUID
The class fingerprint that is set to indicate
serialization compatibility. |
Method Summary |
ECPoint |
getW()
Returns the public point W. |
Methods inherited from interface java.security.interfaces.ECKey |
getParams |
serialVersionUID
static final long serialVersionUID
- The class fingerprint that is set to indicate
serialization compatibility.
- See Also:
- Constant Field Values
getW
ECPoint getW()
- Returns the public point W.
- Returns:
- the public point W.
Copyright 2003 Sun Microsystems, Inc. All rights reserved
|