pub const fn sha2_224(input: &[u8]) -> [u8; 28]
Compute SHA-224 digest.
use cthash::sha2_224; const H: [u8; 28] = sha2_224(b"data");