pike.git/
lib/
modules/
Crypto.pmod/
CAMELLIA.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2011-12-23
2011-12-23 18:02:09 by Henrik Grubbström (Grubba) <grubba@grubba.org>
650f1040c41507560a821595544466bb59256d64 (
14
lines) (+
14
/-
0
)
[
Show
|
Annotate
]
Branch:
7.9
Nettle: Added support for the CAMELLIA crypto.
1:
+
#pike __REAL_VERSION__
+
#pragma strict_types
-
+
#if constant(Nettle) && constant(Nettle.CAMELLIA_Info)
+
+
// NOTE: Depends on the order of INIT invocations.
+
inherit Nettle.CAMELLIA_Info;
+
inherit .Cipher;
+
+
.CipherState `()() { return Nettle.CAMELLIA_State(); }
+
+
#else
+
constant this_program_does_not_exist=1;
+
#endif
Newline at end of file added.