public static enum SHA256._N extends Enum<SHA256._N>
| Enum Constant and Description |
|---|
BLOCK_SIZE
size of hash block
|
DER_SIZE
size of the DER in octets
|
DIGEST_SIZE
size of digest
|
| Modifier and Type | Method and Description |
|---|---|
static SHA256._N |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SHA256._N[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SHA256._N DIGEST_SIZE
public static final SHA256._N BLOCK_SIZE
public static final SHA256._N DER_SIZE
public static SHA256._N[] values()
for (SHA256._N c : SHA256._N.values()) System.out.println(c);
public static SHA256._N 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 nullCopyright © 2017. All rights reserved.