public enum KeyUsage extends Enum<KeyUsage>
Enum Constant and Description |
---|
CRL_SIGN
CRL signing key.
|
DATA_ENCIPHERMENT
Data encipherment key.
|
DECIPHER_ONLY
Decipher only key.
|
DIGITAL_SIGNATURE
Digital signature key.
|
ENCIPHER_ONLY
Encipher only key.
|
KEY_AGREEMENT
Key agreement key.
|
KEY_CERT_SIGN
Key certificate signing key.
|
KEY_ENCIPHERMENT
Key encipherment key.
|
NON_REPUDIATION
Non-repudiation key.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Get the value as a
String . |
String |
toString() |
static KeyUsage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyUsage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyUsage DIGITAL_SIGNATURE
public static final KeyUsage NON_REPUDIATION
public static final KeyUsage KEY_ENCIPHERMENT
public static final KeyUsage DATA_ENCIPHERMENT
public static final KeyUsage KEY_AGREEMENT
public static final KeyUsage KEY_CERT_SIGN
public static final KeyUsage CRL_SIGN
public static final KeyUsage ENCIPHER_ONLY
public static final KeyUsage DECIPHER_ONLY
public static KeyUsage[] values()
for (KeyUsage c : KeyUsage.values()) System.out.println(c);
public static KeyUsage valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
String
.