1 /* MacOS/opensslconf.h */
3 #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */
4 # if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR)
5 # define OPENSSLDIR "/usr/local/ssl"
9 #if defined(HEADER_IDEA_H) && !defined(IDEA_INT)
10 # define IDEA_INT unsigned int
13 #if defined(HEADER_MD2_H) && !defined(MD2_INT)
14 # define MD2_INT unsigned int
17 #if defined(HEADER_RC2_H) && !defined(RC2_INT)
18 /* I need to put in a mod for the alpha - eay */
19 # define RC2_INT unsigned int
22 #if defined(HEADER_RC4_H)
23 # if !defined(RC4_INT)
25 * using int types make the structure larger but make the code faster on most
26 * boxes I have tested - up to %20 faster.
29 * I don't know what does "most" mean, but declaring "int" is a must on:
30 * - Intel P6 because partial register stalls are very expensive;
31 * - elder Alpha because it lacks byte load/store instructions;
33 # define RC4_INT unsigned char
35 # if !defined(RC4_CHUNK)
37 * This enables code handling data aligned at natural CPU word
38 * boundary. See crypto/rc4/rc4_enc.c for further details.
40 # define RC4_CHUNK unsigned long
44 #if defined(HEADER_DES_H) && !defined(DES_LONG)
46 * If this is set to 'unsigned int' on a DEC Alpha, this gives about a %20
47 * speed up (longs are 8 bytes, int's are 4).
50 # define DES_LONG unsigned long
54 #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H)
55 # define CONFIG_HEADER_BN_H
56 # if __option(longlong)
62 /* Should we define BN_DIV2W here? */
64 /* Only one for the following should be defined */
66 * The prime number generation stuff may not work when EIGHT_BIT but I don't
67 * care since I've only used this mode for debuging the bignum libraries
69 # undef SIXTY_FOUR_BIT_LONG
70 # undef SIXTY_FOUR_BIT
71 # define THIRTY_TWO_BIT
76 #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H)
77 # define CONFIG_HEADER_RC4_LOCL_H
79 * if this is defined data[i] is used instead of *data, this is a %20 speedup
85 #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H)
86 # define CONFIG_HEADER_BF_LOCL_H
88 #endif /* HEADER_BF_LOCL_H */
90 #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H)
91 # define CONFIG_HEADER_DES_LOCL_H
93 * the following is tweaked from a config script, that is why it is a
94 * protected undef/define
101 * This helps C compiler generate the correct code for multiple functional
102 * units. It reduces register dependancies at the expense of 2 more
113 # if defined(DES_RISC1) && defined(DES_RISC2)
114 YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED
! !!!!
117 * Unroll the inner loop, this sometimes helps, sometimes hinders. Very mucy
123 #endif /* HEADER_DES_LOCL_H */