public class ECGenParameterSpec
extends Object
implements AlgorithmParameterSpec
java.lang.Object | |
↳ | java.security.spec.ECGenParameterSpec |
该不可变类指定用于生成椭圆曲线(EC)域参数的一组参数。
也可以看看:
Public constructors |
|
---|---|
ECGenParameterSpec(String stdName) 为了生成相应的(预先计算的)椭圆曲线域参数,使用标准(或预定义)名称 |
Public methods |
|
---|---|
String |
getName() 返回待生成的EC域参数的标准名称或预定义名称。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
ECGenParameterSpec (String stdName)
使用标准(或预定义)名称stdName
为EC参数生成创建参数规范,以生成相应(预先计算)的椭圆曲线域参数。 有关支持名称的列表,请参阅将使用其实施的提供商的文档。
Parameters | |
---|---|
stdName |
String : the standard name of the to-be-generated EC domain parameters. |
Throws | |
---|---|
NullPointerException |
if stdName is null. |
String getName ()
返回待生成的EC域参数的标准名称或预定义名称。
Returns | |
---|---|
String |
the standard or predefined name. |