pike.git/
lib/
modules/
Crypto.pmod/
UMAC96.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2014-04-22
2014-04-22 19:46:31 by Henrik Grubbström (Grubba) <grubba@grubba.org>
cf1d76492728247c37145a38706ec9754e1cb3de (
14
lines) (+
14
/-
0
)
[
Show
|
Annotate
]
Branch:
8.0
Nettle: Added the UMAC suite of MACs.
1:
+
#pike __REAL_VERSION__
+
#pragma strict_types
+
#require constant(Nettle.UMAC96)
-
+
//! UMAC is a familty of message digest functions based on universal hashing
+
//! and @[AES] that is specified in RFC 4418. They differ mainly in the size
+
//! of the resulting digest.
+
//!
+
//! @[UMAC96] outputs a digest of 96 bits or 12 octets.
+
//!
+
//! @seealso
+
//! @[UMAC32], @[UMAC64], @[UMAC128]
+
+
inherit Nettle.UMAC96;
Newline at end of file added.