1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pike __REAL_VERSION__
#pragma strict_types
//! SHA224 is another hash function specified by NIST, intended as a
//! replacement for @[SHA1], generating larger digests. It outputs hash
//! values of 224 bits, or 28 octets.
#if constant(Nettle) && constant(Nettle.SHA224)
inherit Nettle.SHA224;
#else
constant this_program_does_not_exist=1;
#endif