Update contrib.
2 /* WARNING: Generated automatically from opensslconf.h.in by Configure. */
4 /* OpenSSL was configured with the following options: */
5 #ifndef OPENSSL_DOING_MAKEDEPEND
10 #ifndef OPENSSL_NO_CAST
11 # define OPENSSL_NO_CAST
13 #ifndef OPENSSL_NO_CPUID_OBJ
14 # define OPENSSL_NO_CPUID_OBJ
16 #ifndef OPENSSL_NO_DEPRECATED
17 # define OPENSSL_NO_DEPRECATED
20 # define OPENSSL_NO_EC
22 #ifndef OPENSSL_NO_ECDH
23 # define OPENSSL_NO_ECDH
25 #ifndef OPENSSL_NO_ECDSA
26 # define OPENSSL_NO_ECDSA
28 #ifndef OPENSSL_NO_GMP
29 # define OPENSSL_NO_GMP
31 #ifndef OPENSSL_NO_IDEA
32 # define OPENSSL_NO_IDEA
34 #ifndef OPENSSL_NO_KRB5
35 # define OPENSSL_NO_KRB5
37 #ifndef OPENSSL_NO_MD4
38 # define OPENSSL_NO_MD4
40 #ifndef OPENSSL_NO_MDC2
41 # define OPENSSL_NO_MDC2
43 #ifndef OPENSSL_NO_RC5
44 # define OPENSSL_NO_RC5
49 #ifndef OPENSSL_NO_RIPEMD
50 # define OPENSSL_NO_RIPEMD
52 #ifndef OPENSSL_NO_STATIC_ENGINE
53 # define OPENSSL_NO_STATIC_ENGINE
56 #endif /* OPENSSL_DOING_MAKEDEPEND */
57 #ifndef OPENSSL_THREADS
58 # define OPENSSL_THREADS
60 #ifndef OPENSSL_NO_ASM
61 # define OPENSSL_NO_ASM
64 # define OPENSSL_NO_HW
66 #ifndef OPENSSL_NO_STATIC_ENGINE
67 # define OPENSSL_NO_STATIC_ENGINE
70 /* The OPENSSL_NO_* macros are also defined as NO_* if the application
71 asks for it. This is a transient feature that is provided for those
72 who haven't had the time to do the appropriate changes in their
74 #ifdef OPENSSL_ALGORITHM_DEFINES
75 # if defined(OPENSSL_NO_BF) && !defined(NO_BF)
78 # if defined(OPENSSL_NO_CAST) && !defined(NO_CAST)
81 # if defined(OPENSSL_NO_CPUID_OBJ) && !defined(NO_CPUID_OBJ)
84 # if defined(OPENSSL_NO_DEPRECATED) && !defined(NO_DEPRECATED)
85 # define NO_DEPRECATED
87 # if defined(OPENSSL_NO_EC) && !defined(NO_EC)
90 # if defined(OPENSSL_NO_ECDH) && !defined(NO_ECDH)
93 # if defined(OPENSSL_NO_ECDSA) && !defined(NO_ECDSA)
96 # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
99 # if defined(OPENSSL_NO_IDEA) && !defined(NO_IDEA)
102 # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
105 # if defined(OPENSSL_NO_MD4) && !defined(NO_MD4)
108 # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2)
111 # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5)
115 # if defined(OPENSSL_NO_RIPEMD) && !defined(NO_RIPEMD)
118 # if defined(OPENSSL_NO_STATIC_ENGINE) && !defined(NO_STATIC_ENGINE)
119 # define NO_STATIC_ENGINE
123 /* crypto/opensslconf.h.in */
125 /* Generate 80386 code? */
128 #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
129 #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
130 #define ENGINESDIR "/usr/local/ssl/lib/engines"
132 #define OPENSSLDIR "C:"
134 #define OPENSSLDIR "/usr/local/ssl"
140 #undef OPENSSL_UNISTD
141 #define OPENSSL_UNISTD <unistd.h>
143 #undef OPENSSL_EXPORT_VAR_AS_FUNCTION
145 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
146 #define IDEA_INT unsigned int
149 #if defined(HEADER_MD2_H) && !defined(MD2_INT)
150 #define MD2_INT unsigned int
153 #if defined(HEADER_RC2_H) && !defined(RC2_INT)
154 /* I need to put in a mod for the alpha - eay */
155 #define RC2_INT unsigned int
158 #if defined(HEADER_RC4_H)
159 #if !defined(RC4_INT)
160 /* using int types make the structure larger but make the code faster
161 * on most boxes I have tested - up to %20 faster. */
163 * I don't know what does "most" mean, but declaring "int" is a must on:
164 * - Intel P6 because partial register stalls are very expensive;
165 * - elder Alpha because it lacks byte load/store instructions;
167 #define RC4_INT unsigned int
169 #if !defined(RC4_CHUNK)
171 * This enables code handling data aligned at natural CPU word
172 * boundary. See crypto/rc4/rc4_enc.c for further details.
178 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
179 /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a
180 * %20 speed up (longs are 8 bytes, int's are 4). */
182 #define DES_LONG unsigned long
186 #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
187 #define CONFIG_HEADER_BN_H
190 /* Should we define BN_DIV2W here? */
192 /* Only one for the following should be defined */
193 /* The prime number generation stuff may not work when
194 * EIGHT_BIT but I don't care since I've only used this mode
195 * for debuging the bignum libraries */
196 #undef SIXTY_FOUR_BIT_LONG
197 #undef SIXTY_FOUR_BIT
198 #define THIRTY_TWO_BIT
203 #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
204 #define CONFIG_HEADER_RC4_LOCL_H
205 /* if this is defined data[i] is used instead of *data, this is a %20
210 #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
211 #define CONFIG_HEADER_BF_LOCL_H
213 #endif /* HEADER_BF_LOCL_H */
215 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
216 #define CONFIG_HEADER_DES_LOCL_H
217 #ifndef DES_DEFAULT_OPTIONS
218 /* the following is tweaked from a config script, that is why it is a
219 * protected undef/define */
224 /* This helps C compiler generate the correct code for multiple functional
225 * units. It reduces register dependancies at the expense of 2 more
235 #if defined(DES_RISC1) && defined(DES_RISC2)
236 YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!!
239 /* Unroll the inner loop, this sometimes helps, sometimes hinders.
240 * Very mucy CPU dependant */
245 /* These default values were supplied by
246 * Peter Gutman <pgut001@cs.auckland.ac.nz>
247 * They are only used if nothing else has been defined */
248 #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL)
249 /* Special defines which change the way the code is built depending on the
250 CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find
251 even newer MIPS CPU's, but at the moment one size fits all for
252 optimization options. Older Sparc's work better with only UNROLL, but
253 there's no way to tell at compile time what it is you're running on */
255 #if defined( sun ) /* Newer Sparc's */
259 #elif defined( __ultrix ) /* Older MIPS */
263 #elif defined( __osf1__ ) /* Alpha */
266 #elif defined ( _AIX ) /* RS6000 */
268 #elif defined( __hpux ) /* HP-PA */
270 #elif defined( __aux ) /* 68K */
272 #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */
274 #elif defined( __sgi ) /* Newer MIPS */
278 #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */
282 #endif /* Systems-specific speed defines */
285 #endif /* DES_DEFAULT_OPTIONS */
286 #endif /* HEADER_DES_LOCL_H */