summaryrefslogtreecommitdiff
path: root/src/cipher.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-18 23:31:33 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-18 23:31:33 +0000
commita39dd07546ab48648021f03e87b2831ffaf50df8 (patch)
tree788b8db0b2dd4162318084739b863412b7a73612 /src/cipher.h
parentdoing replay protection before learning remote host (diff)
some cleanup
Diffstat (limited to 'src/cipher.h')
-rw-r--r--src/cipher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cipher.h b/src/cipher.h
index b26416b..628e6e7 100644
--- a/src/cipher.h
+++ b/src/cipher.h
@@ -38,7 +38,7 @@
#include "plainPacket.h"
#include "keyDerivation.h"
-#ifndef NOCRYPT
+#ifndef NO_CRYPT
#ifndef USE_SSL_CRYPTO
#include <gcrypt.h>
#else
@@ -72,7 +72,7 @@ protected:
u_int32_t decipher(KeyDerivation& kd, u_int8_t* in, u_int32_t ilen, u_int8_t* out, u_int32_t olen, seq_nr_t seq_nr, sender_id_t sender_id, mux_t mux);
};
-#ifndef NOCRYPT
+#ifndef NO_CRYPT
//****** AesIcmCipher ******
class AesIcmCipher : public Cipher