Package net.i2p.crypto
Enum SigContext
- All Implemented Interfaces:
Serializable,Comparable<SigContext>,java.lang.constant.Constable
public enum SigContext extends Enum<SigContext>
Defines the context for signing with personalized hashes.
See proposal 148.
- Since:
- 0.9.40
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSigContext.SigContextSpecThe AlgorithmParameterSpec. -
Enum Constant Summary
Enum Constants Enum Constant Description SC_DATAGRAMSC_I2CPSC_NETDBSC_NONESC_NTCPSC_SSUSC_STREAMINGSC_SU3SC_TEST -
Method Summary
Modifier and Type Method Description SigContext.SigContextSpecgetSpec()The AlgorithmParameterSpec.static SigContextvalueOf(String name)Returns the enum constant of this type with the specified name.static SigContext[]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
-
getSpec
The AlgorithmParameterSpec. Pass this as an argument in setParameter() to the Blake sign/verify engines.
-