pike.git/
lib/
modules/
Crypto.pmod/
SHA224.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2013-11-19
2013-11-19 16:55:31 by Martin Nilsson <nilsson@opera.com>
9f7d27c8d8f0150f460e9e17f5195ad01f72c175 (
14
lines) (+
14
/-
0
)
[
Show
|
Annotate
]
Branch:
8.0
Added SHA224.
1:
+
#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
Newline at end of file added.