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