diff options
author | cvs2svn <admin@example.com> | 2015-03-08 16:48:49 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2015-03-08 16:48:49 +0000 |
commit | decf84ba5550c1656a7fdb51b5b81969590c3f03 (patch) | |
tree | 44872802e872bdfd60730fa9cf01d9d5751251c1 /src/lib/libcrypto/arch/alpha | |
parent | 7a8f138352aa4eb7b65ac4b1a5fe7630fbee1427 (diff) | |
download | openbsd-libressl-v2.1.5.tar.gz openbsd-libressl-v2.1.5.tar.bz2 openbsd-libressl-v2.1.5.zip |
This commit was manufactured by cvs2git to create branch 'OPENBSD_5_7'.libressl-v2.1.5
Diffstat (limited to 'src/lib/libcrypto/arch/alpha')
-rw-r--r-- | src/lib/libcrypto/arch/alpha/Makefile.inc | 43 | ||||
-rw-r--r-- | src/lib/libcrypto/arch/alpha/opensslconf.h | 156 |
2 files changed, 0 insertions, 199 deletions
diff --git a/src/lib/libcrypto/arch/alpha/Makefile.inc b/src/lib/libcrypto/arch/alpha/Makefile.inc deleted file mode 100644 index 82fa9fc1f4..0000000000 --- a/src/lib/libcrypto/arch/alpha/Makefile.inc +++ /dev/null | |||
@@ -1,43 +0,0 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.3 2014/11/17 20:31:21 miod Exp $ | ||
2 | |||
3 | # alpha-specific libcrypto build rules | ||
4 | |||
5 | # aes | ||
6 | SRCS+= aes_core.c aes_cbc.c | ||
7 | # bf | ||
8 | SRCS+= bf_enc.c | ||
9 | # bn | ||
10 | SRCS+= bn_asm.c | ||
11 | SSLASM+= bn alpha-mont | ||
12 | CFLAGS+= -DOPENSSL_BN_ASM_MONT | ||
13 | # camellia | ||
14 | SRCS+= camellia.c cmll_cbc.c cmll_misc.c | ||
15 | # des | ||
16 | SRCS+= des_enc.c fcrypt_b.c | ||
17 | # modes | ||
18 | CFLAGS+= -DGHASH_ASM | ||
19 | SSLASM+= modes ghash-alpha | ||
20 | # rc4 | ||
21 | SRCS+= rc4_enc.c rc4_skey.c | ||
22 | ## rc5 | ||
23 | #SRCS+= rc5_enc.c | ||
24 | # sha | ||
25 | CFLAGS+= -DSHA1_ASM | ||
26 | SSLASM+= sha sha1-alpha | ||
27 | # whrlpool | ||
28 | SRCS+= wp_block.c | ||
29 | |||
30 | .for dir f in ${SSLASM} | ||
31 | SRCS+= ${f}.S | ||
32 | GENERATED+=${f}.S | ||
33 | ${f}.S: ${LCRYPTO_SRC}/${dir}/asm/${f}.pl | ||
34 | /usr/bin/perl \ | ||
35 | ${LCRYPTO_SRC}/${dir}/asm/${f}.pl > ${.TARGET} | ||
36 | .endfor | ||
37 | |||
38 | CFLAGS+= -DOPENSSL_CPUID_OBJ | ||
39 | SRCS+= alphacpuid.S | ||
40 | GENERATED+=alphacpuid.S | ||
41 | alphacpuid.S: ${LCRYPTO_SRC}/alphacpuid.pl | ||
42 | /usr/bin/perl \ | ||
43 | ${LCRYPTO_SRC}/alphacpuid.pl > ${.TARGET} | ||
diff --git a/src/lib/libcrypto/arch/alpha/opensslconf.h b/src/lib/libcrypto/arch/alpha/opensslconf.h deleted file mode 100644 index 6e1e9b6f53..0000000000 --- a/src/lib/libcrypto/arch/alpha/opensslconf.h +++ /dev/null | |||
@@ -1,156 +0,0 @@ | |||
1 | #include <openssl/opensslfeatures.h> | ||
2 | /* crypto/opensslconf.h.in */ | ||
3 | |||
4 | /* Generate 80386 code? */ | ||
5 | #undef I386_ONLY | ||
6 | |||
7 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
8 | #define ENGINESDIR "/usr/lib/engines" | ||
9 | #define OPENSSLDIR "/etc/ssl" | ||
10 | #endif | ||
11 | |||
12 | #undef OPENSSL_UNISTD | ||
13 | #define OPENSSL_UNISTD <unistd.h> | ||
14 | |||
15 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
16 | |||
17 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
18 | #define IDEA_INT unsigned int | ||
19 | #endif | ||
20 | |||
21 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
22 | #define MD2_INT unsigned int | ||
23 | #endif | ||
24 | |||
25 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
26 | /* I need to put in a mod for the alpha - eay */ | ||
27 | #define RC2_INT unsigned int | ||
28 | #endif | ||
29 | |||
30 | #if defined(HEADER_RC4_H) | ||
31 | #if !defined(RC4_INT) | ||
32 | /* using int types make the structure larger but make the code faster | ||
33 | * on most boxes I have tested - up to %20 faster. */ | ||
34 | /* | ||
35 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
36 | * - Intel P6 because partial register stalls are very expensive; | ||
37 | * - elder Alpha because it lacks byte load/store instructions; | ||
38 | */ | ||
39 | #define RC4_INT unsigned int | ||
40 | #endif | ||
41 | #if !defined(RC4_CHUNK) | ||
42 | /* | ||
43 | * This enables code handling data aligned at natural CPU word | ||
44 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
45 | */ | ||
46 | #define RC4_CHUNK unsigned long | ||
47 | #endif | ||
48 | #endif | ||
49 | |||
50 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
51 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
52 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
53 | #ifndef DES_LONG | ||
54 | #define DES_LONG unsigned int | ||
55 | #endif | ||
56 | #endif | ||
57 | |||
58 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
59 | #define CONFIG_HEADER_BN_H | ||
60 | #undef BN_LLONG | ||
61 | |||
62 | /* Should we define BN_DIV2W here? */ | ||
63 | |||
64 | /* Only one for the following should be defined */ | ||
65 | /* The prime number generation stuff may not work when | ||
66 | * EIGHT_BIT but I don't care since I've only used this mode | ||
67 | * for debuging the bignum libraries */ | ||
68 | #define SIXTY_FOUR_BIT_LONG | ||
69 | #undef SIXTY_FOUR_BIT | ||
70 | #undef THIRTY_TWO_BIT | ||
71 | #endif | ||
72 | |||
73 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
74 | #define CONFIG_HEADER_RC4_LOCL_H | ||
75 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
76 | * speedup on x86 */ | ||
77 | #undef RC4_INDEX | ||
78 | #endif | ||
79 | |||
80 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
81 | #define CONFIG_HEADER_BF_LOCL_H | ||
82 | #define BF_PTR | ||
83 | #endif /* HEADER_BF_LOCL_H */ | ||
84 | |||
85 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
86 | #define CONFIG_HEADER_DES_LOCL_H | ||
87 | #ifndef DES_DEFAULT_OPTIONS | ||
88 | /* the following is tweaked from a config script, that is why it is a | ||
89 | * protected undef/define */ | ||
90 | #ifndef DES_PTR | ||
91 | #define DES_PTR | ||
92 | #endif | ||
93 | |||
94 | /* This helps C compiler generate the correct code for multiple functional | ||
95 | * units. It reduces register dependancies at the expense of 2 more | ||
96 | * registers */ | ||
97 | #ifndef DES_RISC1 | ||
98 | #undef DES_RISC1 | ||
99 | #endif | ||
100 | |||
101 | #ifndef DES_RISC2 | ||
102 | #define DES_RISC2 | ||
103 | #endif | ||
104 | |||
105 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
106 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
107 | #endif | ||
108 | |||
109 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
110 | * Very mucy CPU dependant */ | ||
111 | #ifndef DES_UNROLL | ||
112 | #undef DES_UNROLL | ||
113 | #endif | ||
114 | |||
115 | /* These default values were supplied by | ||
116 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
117 | * They are only used if nothing else has been defined */ | ||
118 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
119 | /* Special defines which change the way the code is built depending on the | ||
120 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
121 | even newer MIPS CPU's, but at the moment one size fits all for | ||
122 | optimization options. Older Sparc's work better with only UNROLL, but | ||
123 | there's no way to tell at compile time what it is you're running on */ | ||
124 | |||
125 | #if defined( sun ) /* Newer Sparc's */ | ||
126 | # define DES_PTR | ||
127 | # define DES_RISC1 | ||
128 | # define DES_UNROLL | ||
129 | #elif defined( __ultrix ) /* Older MIPS */ | ||
130 | # define DES_PTR | ||
131 | # define DES_RISC2 | ||
132 | # define DES_UNROLL | ||
133 | #elif defined( __osf1__ ) /* Alpha */ | ||
134 | # define DES_PTR | ||
135 | # define DES_RISC2 | ||
136 | #elif defined ( _AIX ) /* RS6000 */ | ||
137 | /* Unknown */ | ||
138 | #elif defined( __hpux ) /* HP-PA */ | ||
139 | /* Unknown */ | ||
140 | #elif defined( __aux ) /* 68K */ | ||
141 | /* Unknown */ | ||
142 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
143 | # define DES_UNROLL | ||
144 | #elif defined( __sgi ) /* Newer MIPS */ | ||
145 | # define DES_PTR | ||
146 | # define DES_RISC2 | ||
147 | # define DES_UNROLL | ||
148 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
149 | # define DES_PTR | ||
150 | # define DES_RISC1 | ||
151 | # define DES_UNROLL | ||
152 | #endif /* Systems-specific speed defines */ | ||
153 | #endif | ||
154 | |||
155 | #endif /* DES_DEFAULT_OPTIONS */ | ||
156 | #endif /* HEADER_DES_LOCL_H */ | ||