Package dk.hyperdivision.multisig_hmac
Enum MultisigHMAC.Algorithm
- All Implemented Interfaces:
Serializable,Comparable<MultisigHMAC.Algorithm>,Constable
- Enclosing class:
- MultisigHMAC
public static enum MultisigHMAC.Algorithm extends Enum<MultisigHMAC.Algorithm>
The implementation supports SHA256, SHA512, and SHA384 for HMAC
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description HmacSHA256HmacSHA384HmacSHA512 -
Method Summary
Modifier and Type Method Description static MultisigHMAC.AlgorithmvalueOf(String name)Returns the enum constant of this type with the specified name.static MultisigHMAC.Algorithm[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-