Serializable
, Comparable<KeyUsage>
public enum KeyUsage extends Enum<KeyUsage>
Enum Constant | Description |
---|---|
CRL_SIGN |
|
DATA_ENCIPHERMENT |
|
DECIPHER_ONLY |
|
DIGITAL_SIGNATURE |
|
ENCIPHER_ONLY |
|
KEY_AGREEMENT |
|
KEY_CERTSIGN |
|
KEY_ENCIPHERMENT |
|
NON_REPUDIATION |
Modifier and Type | Method | Description |
---|---|---|
boolean |
isSet(org.bouncycastle.asn1.DERBitString bits) |
|
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_CERTSIGN
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 boolean isSet(org.bouncycastle.asn1.DERBitString bits)
Copyright © 2018. All rights reserved.