Most visited

Recently visited

Added in API level 1

ECPrivateKey

public interface ECPrivateKey
implements PrivateKey, ECKey

java.security.interfaces.ECPrivateKey


椭圆曲线(EC)私钥的接口。

也可以看看:

摘要(Summary)

常量(Constants)

long serialVersionUID

设置为指示序列化兼容性的类指纹。

Inherited constants

From interface java.security.PrivateKey
From interface java.security.Key

公共方法(Public methods)

abstract BigInteger getS()

返回私有值S.

继承方法(Inherited methods)

From interface java.security.interfaces.ECKey
From interface java.security.Key

常量(Constants)

serialVersionUID

Added in API level 1
long serialVersionUID

设置为指示序列化兼容性的类指纹。

常量值:-7896394956925609184(0x926a5e9fa2435b20)

公共方法(Public methods)

getS

Added in API level 1
BigInteger getS ()

返回私有值S.

返回(Returns)
BigInteger the private value S.

Hooray!