diff options
author | djm <> | 2006-06-27 05:07:03 +0000 |
---|---|---|
committer | djm <> | 2006-06-27 05:07:03 +0000 |
commit | 7fe7e1ed6bcd0e342aed7c0f890962dda616aa0d (patch) | |
tree | 224c33f66b0b932c84dda315d9ba4236bf125b1c /src/lib/libcrypto/cast | |
parent | 3f764f48d2626a43b6eeef7652c28303269d1204 (diff) | |
download | openbsd-7fe7e1ed6bcd0e342aed7c0f890962dda616aa0d.tar.gz openbsd-7fe7e1ed6bcd0e342aed7c0f890962dda616aa0d.tar.bz2 openbsd-7fe7e1ed6bcd0e342aed7c0f890962dda616aa0d.zip |
resolve conflicts
Diffstat (limited to 'src/lib/libcrypto/cast')
-rw-r--r-- | src/lib/libcrypto/cast/c_skey.c | 1 | ||||
-rw-r--r-- | src/lib/libcrypto/cast/cast_lcl.h | 21 |
2 files changed, 9 insertions, 13 deletions
diff --git a/src/lib/libcrypto/cast/c_skey.c b/src/lib/libcrypto/cast/c_skey.c index dc4791a8cf..db9b7573e0 100644 --- a/src/lib/libcrypto/cast/c_skey.c +++ b/src/lib/libcrypto/cast/c_skey.c | |||
@@ -57,6 +57,7 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <openssl/crypto.h> | 59 | #include <openssl/crypto.h> |
60 | #include <openssl/fips.h> | ||
60 | #include <openssl/cast.h> | 61 | #include <openssl/cast.h> |
61 | 62 | ||
62 | #include "cast_lcl.h" | 63 | #include "cast_lcl.h" |
diff --git a/src/lib/libcrypto/cast/cast_lcl.h b/src/lib/libcrypto/cast/cast_lcl.h index 37f41cc6a4..e756021a33 100644 --- a/src/lib/libcrypto/cast/cast_lcl.h +++ b/src/lib/libcrypto/cast/cast_lcl.h | |||
@@ -64,11 +64,6 @@ | |||
64 | #endif | 64 | #endif |
65 | 65 | ||
66 | 66 | ||
67 | #ifdef OPENSSL_BUILD_SHLIBCRYPTO | ||
68 | # undef OPENSSL_EXTERN | ||
69 | # define OPENSSL_EXTERN OPENSSL_EXPORT | ||
70 | #endif | ||
71 | |||
72 | #undef c2l | 67 | #undef c2l |
73 | #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ | 68 | #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ |
74 | l|=((unsigned long)(*((c)++)))<< 8L, \ | 69 | l|=((unsigned long)(*((c)++)))<< 8L, \ |
@@ -222,11 +217,11 @@ | |||
222 | } | 217 | } |
223 | #endif | 218 | #endif |
224 | 219 | ||
225 | OPENSSL_EXTERN const CAST_LONG CAST_S_table0[256]; | 220 | extern const CAST_LONG CAST_S_table0[256]; |
226 | OPENSSL_EXTERN const CAST_LONG CAST_S_table1[256]; | 221 | extern const CAST_LONG CAST_S_table1[256]; |
227 | OPENSSL_EXTERN const CAST_LONG CAST_S_table2[256]; | 222 | extern const CAST_LONG CAST_S_table2[256]; |
228 | OPENSSL_EXTERN const CAST_LONG CAST_S_table3[256]; | 223 | extern const CAST_LONG CAST_S_table3[256]; |
229 | OPENSSL_EXTERN const CAST_LONG CAST_S_table4[256]; | 224 | extern const CAST_LONG CAST_S_table4[256]; |
230 | OPENSSL_EXTERN const CAST_LONG CAST_S_table5[256]; | 225 | extern const CAST_LONG CAST_S_table5[256]; |
231 | OPENSSL_EXTERN const CAST_LONG CAST_S_table6[256]; | 226 | extern const CAST_LONG CAST_S_table6[256]; |
232 | OPENSSL_EXTERN const CAST_LONG CAST_S_table7[256]; | 227 | extern const CAST_LONG CAST_S_table7[256]; |