blob: 4e2d8907d500654e267193e258dbdd865d52d5b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
--- ipsec-tools-0.8.2.orig/src/racoon/crypto_openssl.c 2012-12-24 15:50:39.000000000 +0100
+++ ipsec-tools-0.8.2/src/racoon/crypto_openssl.c 2015-03-19 17:44:43.000000000 +0100
@@ -63,8 +63,12 @@
#ifdef HAVE_OPENSSL_ENGINE_H
#include <openssl/engine.h>
#endif
+#ifndef OPENSSL_NO_BF
#include <openssl/blowfish.h>
+#endif
+#ifndef OPENSSL_NO_CAST
#include <openssl/cast.h>
+#endif
#include <openssl/err.h>
#ifdef HAVE_OPENSSL_RC5_H
#include <openssl/rc5.h>
@@ -1292,6 +1296,7 @@ eay_idea_keylen(len)
}
#endif
+#ifndef OPENSSL_NO_BF
/*
* BLOWFISH-CBC
*/
@@ -1326,6 +1331,7 @@ eay_bf_keylen(len)
return -1;
return len;
}
+#endif
#ifdef HAVE_OPENSSL_RC5_H
/*
@@ -1437,6 +1443,7 @@ eay_3des_keylen(len)
return 192;
}
+#ifndef OPENSSL_NO_CAST
/*
* CAST-CBC
*/
@@ -1471,6 +1478,7 @@ eay_cast_keylen(len)
return -1;
return len;
}
+#endif
/*
* AES(RIJNDAEL)-CBC
|