pub type SHA2_512_256_Expanded<const ROUND: usize = 80> = SHA2_512_Generic<4, 0x22312194FC2BF72C, 0x9F555FA3C84C64C2, 0x2393B86B6F53B151, 0x963877195940EABD, 0x96283EE2A88EFFE3, 0xBE5E1E2553863992, 0x2B0199FC2C85B8AA, 0x0EB72DDC81C52CA2, ROUND>;Expand description
You have freedom of changing ROUND for SHA-2-512/256.
§Generic Parameters
You can create your own expanded version of SHA-2-512/256 by changing the generic parameter ROUND.
- ROUND : the number of rounds. The default value of it is
80(= 20 * 4).
Aliased Type§
pub struct SHA2_512_256_Expanded<const ROUND: usize = 80> { /* private fields */ }