Interface ECPublicKey

All Superinterfaces:
ECKey, Key, PublicKey, Serializable
All Known Implementing Classes:
BCECPublicKey, JCEECPublicKey, OpenSSLECPublicKey

public interface ECPublicKey
extends PublicKey, ECKey
The interface for an Elliptic Curve (EC) public key.
  • Field Summary

    Fields
    Modifier and Type Field Description
    static long serialVersionUID
    The serial version identifier.
  • Method Summary

    Modifier and Type Method Description
    ECPoint getW()
    Returns the public point W on an elliptic curve (EC).

    Methods inherited from interface java.security.interfaces.ECKey

    getParams

    Methods inherited from interface java.security.Key

    getAlgorithm, getEncoded, getFormat
  • Field Details

    • serialVersionUID

      static final long serialVersionUID
      The serial version identifier.
      See Also:
      Constant Field Values
  • Method Details

    • getW

      ECPoint getW()
      Returns the public point W on an elliptic curve (EC).
      Returns:
      the public point W on an elliptic curve (EC).