diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-11-28 17:39:14 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-11-28 17:39:14 +0000 |
commit | 409d58d0b63a113b29d8ce7c75a70e6dbbb39e69 (patch) | |
tree | 27a2526d6fc3b4600f18572e77f9fb8890ccfb39 /src/cipher.cpp | |
parent | fixed datatypes (really using boost now) (diff) |
added compile time options NOCRYPT,NODAEMON,NOEXEC for easyier windows porting
moved crypto init functions to cryptinit.hpp and exec to sysexec.hpp (as this will be platform dependant)
Diffstat (limited to 'src/cipher.cpp')
-rw-r--r-- | src/cipher.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cipher.cpp b/src/cipher.cpp index ab8b013..edfc760 100644 --- a/src/cipher.cpp +++ b/src/cipher.cpp @@ -34,10 +34,12 @@ #include <string> #include <cstdio> #include <cstring> +#ifndef NOCRYPT #include <gcrypt.h> +#include "mpi.h" +#endif #include "cipher.h" -#include "mpi.h" #include "log.h" @@ -73,7 +75,7 @@ u_int32_t NullCipher::decipher(u_int8_t* in, u_int32_t ilen, u_int8_t* out, u_in return (ilen < olen) ? ilen : olen; } - +#ifndef NOCRYPT //****** AesIcmCipher ****** AesIcmCipher::AesIcmCipher() : cipher_(NULL) @@ -178,4 +180,5 @@ void AesIcmCipher::calc(u_int8_t* in, u_int32_t ilen, u_int8_t* out, u_int32_t o return; } } +#endif |