public enum PubKeyType extends Enum<PubKeyType>
| 限定符和类型 | 方法和说明 |
|---|---|
ALG |
getAlg() |
String |
getAlgType() |
String |
getCurve() |
String |
getHashMethod() |
SignatureScheme |
getSignatureScheme() |
static PubKeyType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static PubKeyType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final PubKeyType EcdsaSecp224r1VerificationKey2019
public static final PubKeyType EcdsaSecp256r1VerificationKey2019
public static final PubKeyType EcdsaSecp384r1VerificationKey2019
public static final PubKeyType EcdsaSecp521r1VerificationKey2019
public static final PubKeyType EcdsaSecp256k1VerificationKey2019
public static final PubKeyType Ed25519VerificationKey2018
public static final PubKeyType SM2VerificationKey2019
public static PubKeyType[] values()
for (PubKeyType c : PubKeyType.values()) System.out.println(c);
public static PubKeyType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public ALG getAlg()
public String getAlgType()
public String getCurve()
public String getHashMethod()
public SignatureScheme getSignatureScheme()
Copyright © 2021. All rights reserved.