Stay organized with collections
Save and categorize content based on your preferences.
ECPublicKey
interface ECPublicKey : ECKey, PublicKey
The interface to an elliptic curve (EC) public key.
Summary
Constants |
static Long |
The class fingerprint that is set to indicate serialization compatibility.
|
Public methods |
abstract ECPoint! |
Returns the public point W.
|
Inherited functions |
From class ECKey
ECParameterSpec! |
getParams()
Returns the domain parameters associated with this key. The domain parameters are either explicitly specified or implicitly created during key generation.
|
|
Constants
serialVersionUID
static val serialVersionUID: Long
Deprecated: A serialVersionUID
field in an interface is ineffectual. Do not use; no replacement.
The class fingerprint that is set to indicate serialization compatibility.
Value: -3314988629879632826L
Public methods
getW
abstract fun getW(): ECPoint!
Returns the public point W.
Return |
ECPoint! |
the public point W. |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# ECPublicKey\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nECPublicKey\n===========\n\n```\ninterface ECPublicKey : ECKey, PublicKey\n```\n\n|-------------------------------------------|\n| [java.security.interfaces.ECPublicKey](#) |\n\nThe interface to an elliptic curve (EC) public key.\n\nSummary\n-------\n\n| Constants ||\n|-------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------|\n| static [Long](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) | [serialVersionUID](#serialVersionUID:kotlin.Long) The class fingerprint that is set to indicate serialization compatibility. |\n\n| Public methods ||\n|--------------------------------------------|-------------------------------------------------|\n| abstract [ECPoint](../spec/ECPoint.html#)! | [getW](#getW())`()` Returns the public point W. |\n\n| Inherited functions ||\n|---|---|\n| From class [ECKey](/reference/kotlin/java/security/interfaces/ECKey) |---------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | [ECParameterSpec](../spec/ECParameterSpec.html#)! | [getParams](/reference/kotlin/java/security/interfaces/ECKey#getParams())`()` Returns the domain parameters associated with this key. The domain parameters are either explicitly specified or implicitly created during key generation. \u003cbr /\u003e | ||\n\nConstants\n---------\n\n### serialVersionUID\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \nDeprecated in [API level 35](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nstatic val serialVersionUID: Long\n```\n\n**Deprecated:** *A `serialVersionUID` field in an interface is ineffectual. Do not use; no replacement.*\n\nThe class fingerprint that is set to indicate serialization compatibility. \n\n Value: -3314988629879632826L\n\nPublic methods\n--------------\n\n### getW\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nabstract fun getW(): ECPoint!\n```\n\nReturns the public point W.\n\n| Return ||\n|-----------------------------------|---------------------|\n| [ECPoint](../spec/ECPoint.html#)! | the public point W. |"]]