Enum HashAlgorithm
Only a subset of the secure hash standard algorithms are supported. See <https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf> for more details. UNSPECIFIED SHOULD not be used, primary reason for inclusion is to force any proto JSON serialization to emit the used hash algorithm, as default option is to omit the default value of an enum (which is the first value, represented by '0'.
public enum HashAlgorithm
Fields
[OriginalName("SHA2_256")] Sha2256 = 1[OriginalName("SHA2_384")] Sha2384 = 2[OriginalName("SHA2_512")] Sha2512 = 3[Obsolete] [OriginalName("SHA3_256")] Sha3256 = 4Used for LMS
[Obsolete] [OriginalName("SHA3_384")] Sha3384 = 5Used for LMS
[OriginalName("HASH_ALGORITHM_UNSPECIFIED")] Unspecified = 0