ECPublicKey

  • ECPublicKey interface provides access to an elliptic curve public key, extending PublicKey and ECKey.

  • It includes a method getW() to retrieve the public point W of the key.

  • You can obtain the elliptic curve domain parameters using the inherited getParams() method.

  • Standard key functionalities like getting the algorithm, encoded key, and format are inherited from the Key interface.

public interface ECPublicKey implements PublicKey ECKey

The interface to an elliptic curve (EC) public key.

Constant Summary

long serialVersionUID The class fingerprint that is set to indicate serialization compatibility.

Inherited Constant Summary

Public Method Summary

abstract ECPoint
getW()
Returns the public point W.

Inherited Method Summary

Constants

public static final long serialVersionUID

The class fingerprint that is set to indicate serialization compatibility.

Constant Value: -3314988629879632826

Public Methods

public abstract ECPoint getW ()

Returns the public point W.

Returns
  • the public point W.