Makefile 41.7 KB
Newer Older
1
#
B
Ben Laurie 已提交
2
# test/Makefile
3 4 5 6 7
#

DIR=		test
TOP=		..
CC=		cc
8
INCLUDES=	-I$(TOP) -I../include -I../crypto/include -I$(TOP)/fips
9
CFLAG=		-g
10
MAKEDEPEND=	$(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
11
PERL=		perl
12 13

PEX_LIBS=
14
EX_LIBS= #-lnsl -lsocket
15 16 17

CFLAGS= $(INCLUDES) $(CFLAG)

B
Ben Laurie 已提交
18
GENERAL=Makefile maketests.com \
U
Ulf Möller 已提交
19 20 21
	tests.com testenc.com tx509.com trsa.com tcrl.com tsid.com treq.com \
	tpkcs7.com tpkcs7d.com tverify.com testgen.com testss.com testssl.com \
	testca.com VMSca-response.1 VMSca-response.2
22 23 24 25 26

DLIBCRYPTO= ../libcrypto.a
DLIBSSL= ../libssl.a
LIBCRYPTO= -L.. -lcrypto
LIBSSL= -L.. -lssl
27
LIBFIPS= -L.. -lfips
28

R
Rich Salz 已提交
29 30 31
# Prefix for logline for each test
START= @@@ START

32
BNTEST=		bntest
33
ECTEST=		ectest
34
ECDSATEST=	ecdsatest
B
Bodo Möller 已提交
35
ECDHTEST=	ecdhtest
36 37 38
EXPTEST=	exptest
IDEATEST=	ideatest
SHA1TEST=	sha1test
A
Andy Polyakov 已提交
39 40
SHA256TEST=	sha256t
SHA512TEST=	sha512t
41
MDC2TEST=	mdc2test
42
RMDTEST=	rmdtest
43
MD2TEST=	md2test
44
MD4TEST=	md4test
45
MD5TEST=	md5test
46
HMACTEST=	hmactest
47
WPTEST=		wp_test
48
RC2TEST=	rc2test
49 50
RC4TEST=	rc4test
RC5TEST=	rc5test
51
BFTEST=		bftest
52
CASTTEST=	casttest
53
DESTEST=	destest
54
GOST2814789TEST=gost2814789test
55 56 57 58
RANDTEST=	randtest
DHTEST=		dhtest
DSATEST=	dsatest
SSLTEST=	ssltest
59
RSATEST=	rsa_test
60
ENGINETEST=	enginetest
B
Ben Laurie 已提交
61
EVPTEST=	evp_test
62
EVPEXTRATEST=evp_extra_test
C
Christian Heimes 已提交
63
P5_CRPT2_TEST=	p5_crpt2_test
B
Ben Laurie 已提交
64
IGETEST=	igetest
65
JPAKETEST=	jpaketest
R
Rich Salz 已提交
66
SECMEMTEST=	secmemtest
B
Ben Laurie 已提交
67
SRPTEST=	srptest
D
Dr. Stephen Henson 已提交
68
V3NAMETEST=	v3nametest
B
Ben Laurie 已提交
69
HEARTBEATTEST=  heartbeat_test
E
Emilia Kasper 已提交
70
CONSTTIMETEST=  constant_time_test
M
Matt Caswell 已提交
71
VERIFYEXTRATEST=	verify_extra_test
72
CLIENTHELLOTEST=	clienthellotest
M
Matt Caswell 已提交
73
PACKETTEST=	packettest
M
Matt Caswell 已提交
74 75
SSLVERTOLTEST=	sslvertoltest.pl
SSLEXTENSIONTEST=	sslextensiontest.pl
M
Matt Caswell 已提交
76
SSLSESSIONTICKTEST= 	sslsessionticktest.pl
77
SSLSKEWITH0PTEST=	sslskewith0ptest.pl
78

79 80
TESTS=		alltests

81
EXE=	$(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT)  $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \
82
	$(MD2TEST)$(EXE_EXT)  $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) $(WPTEST)$(EXE_EXT) \
83
	$(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \
84
	$(DESTEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \
85 86
	$(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \
	$(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \
A
Andy Polyakov 已提交
87
	$(GOST2814789TEST)$(EXE_EXT) \
88 89
	$(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) \
	$(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \
90
	$(EVPTEST)$(EXE_EXT) $(EVPEXTRATEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) \
R
Rich Salz 已提交
91 92
	$(JPAKETEST)$(EXE_EXT) $(SECMEMTEST)$(EXE_EXT) \
	$(SRPTEST)$(EXE_EXT) $(V3NAMETEST)$(EXE_EXT) \
93
	$(HEARTBEATTEST)$(EXE_EXT) $(P5_CRPT2_TEST)$(EXE_EXT) \
94
	$(CONSTTIMETEST)$(EXE_EXT) $(VERIFYEXTRATEST)$(EXE_EXT) \
M
Matt Caswell 已提交
95
	$(CLIENTHELLOTEST)$(EXE_EXT) $(PACKETTEST)$(EXE_EXT)
96

97
# $(METHTEST)$(EXE_EXT)
98

B
Bodo Möller 已提交
99
OBJ=	$(BNTEST).o $(ECTEST).o  $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \
100
	$(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \
101
	$(HMACTEST).o $(WPTEST).o \
102
	$(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \
103
	$(DESTEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \
A
Andy Polyakov 已提交
104
	$(MDC2TEST).o $(RMDTEST).o \
105
	$(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \
B
Ben Laurie 已提交
106
	$(BFTEST).o  $(SSLTEST).o  $(DSATEST).o  $(EXPTEST).o $(RSATEST).o \
107
	$(EVPTEST).o $(EVPEXTRATEST).o $(IGETEST).o $(JPAKETEST).o $(V3NAMETEST).o \
108
	$(GOST2814789TEST).o $(HEARTBEATTEST).o $(P5_CRPT2_TEST).o \
M
Matt Caswell 已提交
109 110
	$(CONSTTIMETEST).o $(VERIFYEXTRATEST).o $(CLIENTHELLOTEST).o \
	$(PACKETTEST).o testutil.o
C
Christian Heimes 已提交
111

B
Bodo Möller 已提交
112
SRC=	$(BNTEST).c $(ECTEST).c  $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \
113
	$(MD2TEST).c  $(MD4TEST).c $(MD5TEST).c \
114
	$(HMACTEST).c $(WPTEST).c \
115
	$(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \
116
	$(DESTEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \
117
	$(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \
B
Ben Laurie 已提交
118
	$(BFTEST).c  $(SSLTEST).c $(DSATEST).c   $(EXPTEST).c $(RSATEST).c \
119
	$(EVPTEST).c $(EVPEXTRATEST).c $(IGETEST).c $(JPAKETEST).c $(V3NAMETEST).c \
120
	$(GOST2814789TEST).c $(HEARTBEATTEST).c $(P5_CRPT2_TEST).c \
M
Matt Caswell 已提交
121 122
	$(CONSTTIMETEST).c $(VERIFYEXTRATEST).c $(CLIENTHELLOTEST).c \
	$(PACKETTEST).c testutil.c
123

124
HEADER=	testutil.h
125

126
ALL=	$(GENERAL) $(SRC) $(HEADER)
127 128

top:
129
	(cd ..; $(MAKE) DIRS=$(DIR) TESTS=$(TESTS) all)
130 131 132

all:	exe

133
exe:	$(EXE) dummytest$(EXE_EXT)
134

135
files:
B
Ben Laurie 已提交
136
	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
137

138 139
generate: $(SRC)
$(SRC):
140
	@sh $(TOP)/util/point.sh dummytest.c $@
141

142 143 144 145 146
errors:

tags:
	ctags $(SRC)

147 148 149
tests:	exe apps $(TESTS)

apps:
150
	@(cd ..; $(MAKE) DIRS=apps all)
151

152
alltests: \
153
	test_des test_idea test_sha test_md4 test_md5 test_hmac \
154
	test_md2 test_mdc2 test_wp \
155
	test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast \
B
Bodo Möller 已提交
156
	test_rand test_bn test_ec test_ecdsa test_ecdh \
157
	test_enc test_x509 test_rsa test_crl test_sid \
158
	test_gen test_req test_pkcs7 test_verify test_dh test_dsa \
159
	test_ss test_ca test_engine test_evp test_evp_extra test_ssl test_tsa \
R
Rich Salz 已提交
160 161
	test_ige test_jpake test_secmem \
	test_srp test_cms test_v3name test_ocsp \
E
Emilia Kasper 已提交
162
	test_gost2814789 test_heartbeat test_p5_crpt2 \
M
Matt Caswell 已提交
163
	test_constant_time test_verify_extra test_clienthello test_packet \
M
Matt Caswell 已提交
164
	test_sslvertol test_sslextension test_sslsessionticket test_sslskewith0p
B
Ben Laurie 已提交
165

166
test_evp: $(EVPTEST)$(EXE_EXT) evptests.txt
R
Rich Salz 已提交
167
	@echo $(START) $@
168
	../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt
169

170
test_evp_extra: $(EVPEXTRATEST)$(EXE_EXT)
R
Rich Salz 已提交
171
	@echo $(START) $@
172 173
	../util/shlib_wrap.sh ./$(EVPEXTRATEST)

C
Christian Heimes 已提交
174
test_p5_crpt2: $(P5_CRPT2_TEST)$(EXE_EXT)
R
Rich Salz 已提交
175
	@echo $(START) $@
C
Christian Heimes 已提交
176 177
	../util/shlib_wrap.sh ./$(P5_CRPT2_TEST)

178
test_des: $(DESTEST)$(EXE_EXT)
R
Rich Salz 已提交
179
	@echo $(START) $@
180
	../util/shlib_wrap.sh ./$(DESTEST)
181

182
test_idea: $(IDEATEST)$(EXE_EXT)
R
Rich Salz 已提交
183
	@echo $(START) $@
184
	../util/shlib_wrap.sh ./$(IDEATEST)
185

186
test_sha: $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT)
R
Rich Salz 已提交
187
	@echo $(START) $@ -- sha1
188
	../util/shlib_wrap.sh ./$(SHA1TEST)
R
Rich Salz 已提交
189
	@echo $(START) $@ -- sha256
190
	../util/shlib_wrap.sh ./$(SHA256TEST)
R
Rich Salz 已提交
191
	@echo $(START) $@ -- sha512
192
	../util/shlib_wrap.sh ./$(SHA512TEST)
193

194
test_mdc2: $(MDC2TEST)$(EXE_EXT)
R
Rich Salz 已提交
195
	@echo $(START) $@
196
	../util/shlib_wrap.sh ./$(MDC2TEST)
197

198
test_md5: $(MD5TEST)$(EXE_EXT)
R
Rich Salz 已提交
199
	@echo $(START) $@
200
	../util/shlib_wrap.sh ./$(MD5TEST)
201

202
test_md4: $(MD4TEST)$(EXE_EXT)
R
Rich Salz 已提交
203
	@echo $(START) $@
204
	../util/shlib_wrap.sh ./$(MD4TEST)
205

206
test_hmac: $(HMACTEST)$(EXE_EXT)
R
Rich Salz 已提交
207
	@echo $(START) $@
208
	../util/shlib_wrap.sh ./$(HMACTEST)
209

210
test_wp: $(WPTEST)$(EXE_EXT)
R
Rich Salz 已提交
211
	@echo $(START) $@
212 213
	../util/shlib_wrap.sh ./$(WPTEST)

214
test_md2: $(MD2TEST)$(EXE_EXT)
R
Rich Salz 已提交
215
	@echo $(START) $@
216
	../util/shlib_wrap.sh ./$(MD2TEST)
217

218
test_rmd: $(RMDTEST)$(EXE_EXT)
R
Rich Salz 已提交
219
	@echo $(START) $@
220
	../util/shlib_wrap.sh ./$(RMDTEST)
221

222
test_bf: $(BFTEST)$(EXE_EXT)
R
Rich Salz 已提交
223
	@echo $(START) $@
224
	../util/shlib_wrap.sh ./$(BFTEST)
225

226
test_cast: $(CASTTEST)$(EXE_EXT)
R
Rich Salz 已提交
227
	@echo $(START) $@
228
	../util/shlib_wrap.sh ./$(CASTTEST)
229

230
test_rc2: $(RC2TEST)$(EXE_EXT)
R
Rich Salz 已提交
231
	@echo $(START) $@
232
	../util/shlib_wrap.sh ./$(RC2TEST)
233

234
test_rc4: $(RC4TEST)$(EXE_EXT)
R
Rich Salz 已提交
235
	@echo $(START) $@
236
	../util/shlib_wrap.sh ./$(RC4TEST)
237

238
test_rc5: $(RC5TEST)$(EXE_EXT)
R
Rich Salz 已提交
239
	@echo $(START) $@
240
	../util/shlib_wrap.sh ./$(RC5TEST)
241

242
test_rand: $(RANDTEST)$(EXE_EXT)
R
Rich Salz 已提交
243
	@echo $(START) $@
244
	../util/shlib_wrap.sh ./$(RANDTEST)
245

246
test_gost2814789: $(GOST2814789TEST)$(EXE_EXT)
R
Rich Salz 已提交
247
	@echo $(START) $@
248
	OPENSSL_ENGINES=../engines/ccgost ../util/shlib_wrap.sh ./$(GOST2814789TEST)
A
Andy Polyakov 已提交
249

250
test_enc: ../apps/openssl$(EXE_EXT) testenc
R
Rich Salz 已提交
251
	@echo $(START) $@
252
	@sh ./testenc
253

254
test_x509: ../apps/openssl$(EXE_EXT) tx509 testx509.pem v3-cert1.pem v3-cert2.pem
R
Rich Salz 已提交
255 256 257 258 259 260
	@echo $(START) $@ -- x509v1 certificate
	sh ./tx509
	@echo $(START) $@ -- first x509v3 certificate
	sh ./tx509 v3-cert1.pem
	@echo $(START) $@ -- second x509v3 certificate
	sh ./tx509 v3-cert2.pem
261

262
test_rsa: $(RSATEST)$(EXE_EXT) ../apps/openssl$(EXE_EXT) tkey testrsa.pem testrsapub.pem
R
Rich Salz 已提交
263
	@echo $(START) $@
264
	../util/shlib_wrap.sh ./$(RSATEST)
R
Rich Salz 已提交
265 266 267 268
	@echo $(START) $@ -- private key
	@sh ./tkey testrsa.pem rsa private
	@echo $(START) $@ -- public public
	@sh ./tkey testrsapub.pem rsa public
269

270
test_crl: ../apps/openssl$(EXE_EXT) tcrl testcrl.pem
R
Rich Salz 已提交
271 272
	@echo $(START) $@
	sh ./tcrl
273

274
test_sid: ../apps/openssl$(EXE_EXT) tsid testsid.pem
R
Rich Salz 已提交
275 276
	@echo $(START) $@
	@sh ./tsid
277

278
test_req: ../apps/openssl$(EXE_EXT) treq testreq.pem testreq2.pem
R
Rich Salz 已提交
279 280 281 282
	@echo $(START) $@
	@sh ./treq
	@echo $(START) $@ -- testreq2
	@sh ./treq testreq2.pem
283

284
test_pkcs7: ../apps/openssl$(EXE_EXT) tpkcs7 tpkcs7d testp7.pem pkcs7-1.pem
R
Rich Salz 已提交
285 286 287 288
	@echo $(START) $@ -- pkcs7
	@sh ./tpkcs7
	@echo $(START) $@ -- pkcs7d
	@sh ./tpkcs7d
289

290
test_bn: $(BNTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) bctest
R
Rich Salz 已提交
291
	@echo $(START) $@ -- could take  a while.
292
	@../util/shlib_wrap.sh ./$(BNTEST) >tmp.bntest
293
	@echo quit >>tmp.bntest
R
Rich Salz 已提交
294
	@echo $(START) $@ -- running bc
295
	@<tmp.bntest sh -c "`sh ./bctest ignore`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0\r?$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
R
Rich Salz 已提交
296
	@echo $(START) $@ -- $(EXPTEST)
297
	../util/shlib_wrap.sh ./$(EXPTEST)
298

299
test_ec: $(ECTEST)$(EXE_EXT) tkey testec-p256.pem testecpub-p256.pem
R
Rich Salz 已提交
300
	@echo $(START) $@
301
	../util/shlib_wrap.sh ./$(ECTEST)
R
Rich Salz 已提交
302 303 304 305
	@echo $(START) $@ -- private
	@sh ./tkey testec-p256.pem ec private
	@echo $(START) $@ -- public
	@sh ./tkey testecpub-p256.pem ec public
306

307
test_ecdsa: $(ECDSATEST)$(EXE_EXT)
R
Rich Salz 已提交
308
	@echo $(START) $@
309
	../util/shlib_wrap.sh ./$(ECDSATEST)
B
Bodo Möller 已提交
310

311
test_ecdh: $(ECDHTEST)$(EXE_EXT)
R
Rich Salz 已提交
312
	@echo $(START) $@
313
	../util/shlib_wrap.sh ./$(ECDHTEST)
B
Bodo Möller 已提交
314

315
test_verify: ../apps/openssl$(EXE_EXT)
R
Rich Salz 已提交
316
	@echo $(START) $@ -- expect some failures and expired certificates
317
	../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs/demo ../certs/demo/*.pem
318

319
test_dh: $(DHTEST)$(EXE_EXT)
R
Rich Salz 已提交
320
	@echo $(START) $@
321
	../util/shlib_wrap.sh ./$(DHTEST)
322

323
test_dsa: $(DSATEST)$(EXE_EXT) tkey testdsa.pem testdsapub.pem
R
Rich Salz 已提交
324
	@echo $(START) $@
325
	../util/shlib_wrap.sh ./$(DSATEST)
R
Rich Salz 已提交
326
	@echo $(START) $@ -- app2_1
327
	../util/shlib_wrap.sh ./$(DSATEST) -app2_1
R
Rich Salz 已提交
328 329 330 331
	@echo $(START) $@ -- private
	@sh ./tkey testdsa.pem dsa private
	@echo $(START) $@ -- public
	@sh ./tkey testdsapub.pem dsa public
332

333
test_gen testreq.pem: ../apps/openssl$(EXE_EXT) testgen test.cnf
R
Rich Salz 已提交
334
	@echo $(START) test_gen
335
	@sh ./testgen
336

337
test_ss keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
B
Ben Laurie 已提交
338
		intP1.ss intP2.ss: testss CAss.cnf Uss.cnf P1ss.cnf P2ss.cnf \
339
                                   ../apps/openssl$(EXE_EXT)
R
Rich Salz 已提交
340
	@echo $(START) test_ss
341
	@sh ./testss
342 343
	@cat certCA.ss certU.ss > intP1.ss
	@cat certCA.ss certU.ss certP1.ss > intP2.ss
344

345
test_engine: $(ENGINETEST)$(EXE_EXT)
R
Rich Salz 已提交
346
	@echo $(START) $@
347
	../util/shlib_wrap.sh ./$(ENGINETEST)
348

349
test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
350
		intP1.ss intP2.ss $(SSLTEST)$(EXE_EXT) testssl testsslproxy \
351
		../apps/server2.pem serverinfo.pem
R
Rich Salz 已提交
352
	@echo $(START) $@
353
	../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist
R
Rich Salz 已提交
354
	@echo $(START) $@ -- key U
355
	@sh ./testssl keyU.ss certU.ss certCA.ss
R
Rich Salz 已提交
356
	@echo $(START) $@ -- key P1
357
	@sh ./testsslproxy keyP1.ss certP1.ss intP1.ss
R
Rich Salz 已提交
358
	@echo $(START) $@ -- key P2
359
	@sh ./testsslproxy keyP2.ss certP2.ss intP2.ss
360

361
test_ca: ../apps/openssl$(EXE_EXT) testca CAss.cnf Uss.cnf
362
	@if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
R
Rich Salz 已提交
363
	  echo SKIP $@ -- requires RSA; \
364
	else \
R
Rich Salz 已提交
365
	  echo $(START) $@; \
R
Rich Salz 已提交
366
	  sh ./testca $(PERL); \
B
Ben Laurie 已提交
367
	fi
368

369
test_tsa: ../apps/openssl$(EXE_EXT) testtsa CAtsa.cnf ../util/shlib_wrap.sh
370
	@if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
R
Rich Salz 已提交
371
	    echo SKIP $@ -- requires RSA; \
372
	else \
R
Rich Salz 已提交
373
	  echo $(START) $@; \
374 375 376
	  sh ./testtsa; \
	fi

A
Andy Polyakov 已提交
377
test_ige: $(IGETEST)$(EXE_EXT)
R
Rich Salz 已提交
378
	@echo $(START) $@
B
Ben Laurie 已提交
379 380
	../util/shlib_wrap.sh ./$(IGETEST)

381
test_jpake: $(JPAKETEST)$(EXE_EXT)
R
Rich Salz 已提交
382
	@echo $(START) $@
383
	../util/shlib_wrap.sh ./$(JPAKETEST)
B
Ben Laurie 已提交
384

385
test_cms: ../apps/openssl$(EXE_EXT) cms-test.pl smcont.txt
R
Rich Salz 已提交
386
	@echo $(START) $@
387
	$(PERL) cms-test.pl
D
Dr. Stephen Henson 已提交
388

R
Rich Salz 已提交
389 390 391 392
test_secmem: $(SECMEMTEST)$(EXE_EXT)
	@echo $(START) $@
	../util/shlib_wrap.sh ./secmemtest

B
Ben Laurie 已提交
393
test_srp: $(SRPTEST)$(EXE_EXT)
R
Rich Salz 已提交
394
	@echo $(START) $@
B
Ben Laurie 已提交
395 396
	../util/shlib_wrap.sh ./srptest

D
Dr. Stephen Henson 已提交
397
test_v3name: $(V3NAMETEST)$(EXE_EXT)
R
Rich Salz 已提交
398
	@echo $(START) $@
D
Dr. Stephen Henson 已提交
399 400
	../util/shlib_wrap.sh ./$(V3NAMETEST)

401
test_ocsp: ../apps/openssl$(EXE_EXT) tocsp
R
Rich Salz 已提交
402
	@echo $(START) $@
B
Ben Laurie 已提交
403 404
	@sh ./tocsp

405
test_heartbeat: $(HEARTBEATTEST)$(EXE_EXT)
R
Rich Salz 已提交
406
	@echo $(START) $@
B
Ben Laurie 已提交
407
	../util/shlib_wrap.sh ./$(HEARTBEATTEST)
408

E
Emilia Kasper 已提交
409
test_constant_time: $(CONSTTIMETEST)$(EXE_EXT)
R
Rich Salz 已提交
410
	@echo $(START) $@
E
Emilia Kasper 已提交
411 412
	../util/shlib_wrap.sh ./$(CONSTTIMETEST)

M
Matt Caswell 已提交
413 414 415 416
test_verify_extra: $(VERIFYEXTRATEST)$(EXE_EXT)
	@echo $(START) $@
	../util/shlib_wrap.sh ./$(VERIFYEXTRATEST)

417 418 419 420
test_clienthello: $(CLIENTHELLOTEST)$(EXE_EXT)
	@echo $(START) $@
	../util/shlib_wrap.sh ./$(CLIENTHELLOTEST)

M
Matt Caswell 已提交
421 422 423 424
test_packet: $(PACKETTEST)$(EXE_EXT)
	@echo $(START) $@
	../util/shlib_wrap.sh ./$(PACKETTEST)

M
Matt Caswell 已提交
425 426 427
#OPENSSL_ia32cap=... in ssl tests below ensures AES-NI is switched off (AES-NI does not go through the testmode engine)
test_sslvertol: ../apps/openssl$(EXE_EXT)
	@echo $(START) $@
428
	[ -z "$(SHARED_LIBS)" ] || OPENSSL_ENGINES=../engines ../util/shlib_wrap.sh $(PERL) -I../util -w ./$(SSLVERTOLTEST) "OPENSSL_ia32cap='~0x200000200000000' ../apps/openssl$(EXE_EXT)" ../apps/server.pem
429
	@[ -n "$(SHARED_LIBS)" ] || echo test_sslvertol can only be performed with OpenSSL configured shared
M
Matt Caswell 已提交
430 431 432

test_sslextension: ../apps/openssl$(EXE_EXT)
	@echo $(START) $@
433
	[ -z "$(SHARED_LIBS)" ] || OPENSSL_ENGINES=../engines ../util/shlib_wrap.sh $(PERL) -I../util -w ./$(SSLEXTENSIONTEST) "OPENSSL_ia32cap='~0x200000200000000' ../apps/openssl$(EXE_EXT)" ../apps/server.pem
434
	@[ -n "$(SHARED_LIBS)" ] || echo test_sslextension can only be performed with OpenSSL configured shared
435

M
Matt Caswell 已提交
436 437 438 439 440
test_sslsessionticket: ../apps/openssl$(EXE_EXT)
	@echo $(START) $@
	[ -z "$(SHARED_LIBS)" ] || PERL5LIB=$$PERL5LIB:../util OPENSSL_ENGINES=../engines ../util/shlib_wrap.sh ./$(SSLSESSIONTICKTEST) "OPENSSL_ia32cap='~0x200000200000000' ../apps/openssl$(EXE_EXT)" ../apps/server.pem
	@[ -n "$(SHARED_LIBS)" ] || echo test_sslsessionticket can only be performed with OpenSSL configured shared

441 442
test_sslskewith0p: ../apps/openssl$(EXE_EXT)
	@echo $(START) $@
443
	[ -z "$(SHARED_LIBS)" ] || OPENSSL_ENGINES=../engines ../util/shlib_wrap.sh $(PERL) -I../util -w ./$(SSLSKEWITH0PTEST) "OPENSSL_ia32cap='~0x200000200000000' ../apps/openssl$(EXE_EXT)" ../apps/server.pem
444
	@[ -n "$(SHARED_LIBS)" ] || echo test_sslskewith0p can only be performed with OpenSSL configured shared
M
Matt Caswell 已提交
445

446 447 448 449 450 451 452
update: local_depend
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi

depend: local_depend
	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
local_depend:
	@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC)
453 454

dclean:
455
	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
456
	mv -f Makefile.new $(MAKEFILE)
457
	rm -f newkey.pem testkey.pem testreq.pem
458 459

clean:
460
	rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log dummytest
461 462

$(DLIBSSL):
463
	(cd ..; $(MAKE) build_libssl)
464 465

$(DLIBCRYPTO):
466
	(cd ..; $(MAKE) build_libcrypto)
467

468
BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
469 470
		shlib_target="$(SHLIB_TARGET)"; \
	fi; \
471
	LIBRARIES="$(LIBSSL) $(LIBCRYPTO)"; \
A
Andy Polyakov 已提交
472
	$(MAKE) -f $(TOP)/Makefile.shared -e \
473
		APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o $$testutil" \
474
		LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
475
		link_app.$${shlib_target}
B
Ben Laurie 已提交
476

477
BUILD_CMD_STATIC=shlib_target=; \
478
	LIBRARIES="$(DLIBSSL) $(DLIBCRYPTO)"; \
479
	$(MAKE) -f $(TOP)/Makefile.shared -e \
480
		APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o $$testutil" \
481 482 483
		LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
		link_app.$${shlib_target}

484 485 486
$(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO)
	@target=$(RSATEST); $(BUILD_CMD)

487
$(BNTEST)$(EXE_EXT): $(BNTEST).o $(DLIBCRYPTO)
488
	@target=$(BNTEST); $(BUILD_CMD)
489

490
$(ECTEST)$(EXE_EXT): $(ECTEST).o $(DLIBCRYPTO)
491
	@target=$(ECTEST); $(BUILD_CMD)
492

493
$(EXPTEST)$(EXE_EXT): $(EXPTEST).o $(DLIBCRYPTO)
494
	@target=$(EXPTEST); $(BUILD_CMD)
495

496
$(IDEATEST)$(EXE_EXT): $(IDEATEST).o $(DLIBCRYPTO)
497
	@target=$(IDEATEST); $(BUILD_CMD)
498

499
$(MD2TEST)$(EXE_EXT): $(MD2TEST).o $(DLIBCRYPTO)
500
	@target=$(MD2TEST); $(BUILD_CMD)
501

502
$(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO)
503
	@target=$(SHA1TEST); $(BUILD_CMD)
A
Andy Polyakov 已提交
504

505
$(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO)
506
	@target=$(SHA256TEST); $(BUILD_CMD)
A
Andy Polyakov 已提交
507

508
$(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO)
509
	@target=$(SHA512TEST); $(BUILD_CMD)
510

511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
FIPS_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
		shlib_target="$(SHLIB_TARGET)"; \
	fi; \
	if [ "$(FIPSCANLIB)" = "libfips" ]; then \
		LIBRARIES="-L$(TOP) -lfips"; \
	elif [ -n "$(FIPSCANLIB)" ]; then \
		FIPSLD_CC="$(CC)"; CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \
		LIBRARIES="$${FIPSLIBDIR:-$(TOP)/fips/}fipscanister.o"; \
	else \
		LIBRARIES="$(LIBCRYPTO)"; \
	fi; \
	$(MAKE) -f $(TOP)/Makefile.shared -e \
		CC="$${CC}" APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
		LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
		link_app.$${shlib_target}

FIPS_CRYPTO_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
		shlib_target="$(SHLIB_TARGET)"; \
	fi; \
530
	LIBRARIES="$(LIBSSL) $(LIBCRYPTO)"; \
531 532 533 534 535 536 537 538 539
	if [ -z "$(SHARED_LIBS)" -a -n "$(FIPSCANLIB)" ] ; then \
		FIPSLD_CC="$(CC)"; CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \
	fi; \
	[ "$(FIPSCANLIB)" = "libfips" ] && LIBRARIES="$$LIBRARIES -lfips"; \
	$(MAKE) -f $(TOP)/Makefile.shared -e \
		CC="$${CC}" APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
		LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
		link_app.$${shlib_target}

540
$(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO)
541
	@target=$(RMDTEST); $(BUILD_CMD)
542

543
$(MDC2TEST)$(EXE_EXT): $(MDC2TEST).o $(DLIBCRYPTO)
544
	@target=$(MDC2TEST); $(BUILD_CMD)
545

546
$(MD4TEST)$(EXE_EXT): $(MD4TEST).o $(DLIBCRYPTO)
547
	@target=$(MD4TEST); $(BUILD_CMD)
548

549
$(MD5TEST)$(EXE_EXT): $(MD5TEST).o $(DLIBCRYPTO)
550
	@target=$(MD5TEST); $(BUILD_CMD)
551

552
$(HMACTEST)$(EXE_EXT): $(HMACTEST).o $(DLIBCRYPTO)
553
	@target=$(HMACTEST); $(BUILD_CMD)
554

555 556 557
$(WPTEST)$(EXE_EXT): $(WPTEST).o $(DLIBCRYPTO)
	@target=$(WPTEST); $(BUILD_CMD)

558
$(RC2TEST)$(EXE_EXT): $(RC2TEST).o $(DLIBCRYPTO)
559
	@target=$(RC2TEST); $(BUILD_CMD)
560

561
$(BFTEST)$(EXE_EXT): $(BFTEST).o $(DLIBCRYPTO)
562
	@target=$(BFTEST); $(BUILD_CMD)
563

564
$(CASTTEST)$(EXE_EXT): $(CASTTEST).o $(DLIBCRYPTO)
565
	@target=$(CASTTEST); $(BUILD_CMD)
566

567
$(RC4TEST)$(EXE_EXT): $(RC4TEST).o $(DLIBCRYPTO)
568
	@target=$(RC4TEST); $(BUILD_CMD)
569

570
$(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO)
571
	@target=$(RC5TEST); $(BUILD_CMD)
572

573
$(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO)
574
	@target=$(DESTEST); $(BUILD_CMD)
575

A
Andy Polyakov 已提交
576 577 578
$(GOST2814789TEST)$(EXE_EXT): $(GOST2814789TEST).o $(DLIBCRYPTO)
	@target=$(GOST2814789TEST); $(BUILD_CMD)

579
$(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO)
580
	@target=$(RANDTEST); $(BUILD_CMD)
581

582
$(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO)
583
	@target=$(DHTEST); $(BUILD_CMD)
584

585
$(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO)
586
	@target=$(DSATEST); $(BUILD_CMD)
587

588
$(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO)
589
	@target=$(METHTEST); $(BUILD_CMD)
590

591
$(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO)
592
	@target=$(SSLTEST); $(BUILD_CMD)
593

594
$(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO)
595
	@target=$(ENGINETEST); $(BUILD_CMD)
596

597
$(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO)
598
	@target=$(EVPTEST); $(BUILD_CMD)
B
Bodo Möller 已提交
599

600 601 602
$(EVPEXTRATEST)$(EXE_EXT): $(EVPEXTRATEST).o $(DLIBCRYPTO)
	@target=$(EVPEXTRATEST); $(BUILD_CMD)

C
Christian Heimes 已提交
603 604 605
$(P5_CRPT2_TEST)$(EXE_EXT): $(P5_CRPT2_TEST).o $(DLIBCRYPTO)
	@target=$(P5_CRPT2_TEST); $(BUILD_CMD)

606
$(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO)
607
	@target=$(ECDSATEST); $(BUILD_CMD)
B
Ben Laurie 已提交
608

609
$(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO)
610
	@target=$(ECDHTEST); $(BUILD_CMD)
B
Bodo Möller 已提交
611

B
Ben Laurie 已提交
612 613 614
$(IGETEST)$(EXE_EXT): $(IGETEST).o $(DLIBCRYPTO)
	@target=$(IGETEST); $(BUILD_CMD)

615 616
$(JPAKETEST)$(EXE_EXT): $(JPAKETEST).o $(DLIBCRYPTO)
	@target=$(JPAKETEST); $(BUILD_CMD)
B
Ben Laurie 已提交
617

R
Rich Salz 已提交
618 619 620
$(SECMEMTEST)$(EXE_EXT): $(SECMEMTEST).o $(DLIBCRYPTO)
	@target=$(SECMEMTEST); $(BUILD_CMD)

B
Ben Laurie 已提交
621 622 623
$(SRPTEST)$(EXE_EXT): $(SRPTEST).o $(DLIBCRYPTO)
	@target=$(SRPTEST); $(BUILD_CMD)

D
Dr. Stephen Henson 已提交
624 625 626
$(V3NAMETEST)$(EXE_EXT): $(V3NAMETEST).o $(DLIBCRYPTO)
	@target=$(V3NAMETEST); $(BUILD_CMD)

627 628
$(HEARTBEATTEST)$(EXE_EXT): $(HEARTBEATTEST).o $(DLIBCRYPTO) testutil.o
	@target=$(HEARTBEATTEST) testutil=testutil.o; $(BUILD_CMD_STATIC)
629

E
Emilia Kasper 已提交
630 631 632
$(CONSTTIMETEST)$(EXE_EXT): $(CONSTTIMETEST).o
	@target=$(CONSTTIMETEST) $(BUILD_CMD)

M
Matt Caswell 已提交
633 634 635
$(VERIFYEXTRATEST)$(EXE_EXT): $(VERIFYEXTRATEST).o
	@target=$(VERIFYEXTRATEST) $(BUILD_CMD)

636 637 638
$(CLIENTHELLOTEST)$(EXE_EXT): $(CLIENTHELLOTEST).o
	@target=$(CLIENTHELLOTEST) $(BUILD_CMD)

M
Matt Caswell 已提交
639 640 641
$(PACKETTEST)$(EXE_EXT): $(PACKETTEST).o
	@target=$(PACKETTEST) $(BUILD_CMD)

642 643
#$(AESTEST).o: $(AESTEST).c
#	$(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c
644

645
#$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO)
646
#	if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \
647
#	  $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \
648
#	else \
649
#	  $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \
B
Ben Laurie 已提交
650
#	fi
651

652
dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
D
Dr. Stephen Henson 已提交
653
	@target=dummytest; $(BUILD_CMD)
654

655
# DO NOT DELETE THIS LINE -- make depend depends on it.
B
Ben Laurie 已提交
656

R
Richard Levitte 已提交
657
bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h
658
bftest.o: ../include/openssl/opensslconf.h bftest.c
659 660 661
bntest.o: ../crypto/bn/bn_lcl.h ../crypto/include/internal/bn_int.h ../e_os.h
bntest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
662
bntest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
663 664 665 666 667 668
bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
bntest.o: ../include/openssl/evp.h ../include/openssl/lhash.h
bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
bntest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
669 670 671 672
bntest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h
bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
bntest.o: ../include/openssl/x509_vfy.h bntest.c
R
Richard Levitte 已提交
673 674
casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h
casttest.o: ../include/openssl/opensslconf.h casttest.c
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
clienthellotest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
clienthellotest.o: ../include/openssl/buffer.h ../include/openssl/comp.h
clienthellotest.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
clienthellotest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
clienthellotest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
clienthellotest.o: ../include/openssl/err.h ../include/openssl/evp.h
clienthellotest.o: ../include/openssl/hmac.h ../include/openssl/lhash.h
clienthellotest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
clienthellotest.o: ../include/openssl/opensslconf.h
clienthellotest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
clienthellotest.o: ../include/openssl/pem.h ../include/openssl/pem2.h
clienthellotest.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
clienthellotest.o: ../include/openssl/sha.h ../include/openssl/srtp.h
clienthellotest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
clienthellotest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
clienthellotest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
clienthellotest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
clienthellotest.o: clienthellotest.c
R
Richard Levitte 已提交
693
constant_time_test.o: ../e_os.h ../include/internal/constant_time_locl.h
E
Emilia Kasper 已提交
694 695
constant_time_test.o: ../include/openssl/e_os2.h
constant_time_test.o: ../include/openssl/opensslconf.h constant_time_test.c
696 697
destest.o: ../include/openssl/des.h ../include/openssl/e_os2.h
destest.o: ../include/openssl/opensslconf.h destest.c
R
Richard Levitte 已提交
698
dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
B
Bodo Möller 已提交
699
dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
G
Geoff Thorpe 已提交
700 701
dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
dhtest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
R
Richard Levitte 已提交
702 703 704
dhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dhtest.c
R
Richard Levitte 已提交
705
dsatest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
706 707 708 709 710 711
dsatest.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
dsatest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
dsatest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
dsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
dsatest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
dsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dsatest.c
D
Dr. Stephen Henson 已提交
712 713 714 715 716 717 718 719 720 721
ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h
ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
ecdhtest.o: ../include/openssl/ecdh.h ../include/openssl/err.h
ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h
ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c
R
Richard Levitte 已提交
722
ecdsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
B
Bodo Möller 已提交
723
ecdsatest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
E
Emilia Kasper 已提交
724
ecdsatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
B
Bodo Möller 已提交
725 726 727 728 729 730 731
ecdsatest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h
ecdsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
ecdsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
ecdsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
ecdsatest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
E
Emilia Kasper 已提交
732 733
ecdsatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
ecdsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
B
Bodo Möller 已提交
734 735
ecdsatest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
ecdsatest.o: ecdsatest.c
R
Richard Levitte 已提交
736
ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
B
Bodo Möller 已提交
737
ectest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
E
Emilia Kasper 已提交
738
ectest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
B
Bodo Möller 已提交
739 740 741 742 743 744 745
ectest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
ectest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
ectest.o: ../include/openssl/err.h ../include/openssl/evp.h
ectest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
ectest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
ectest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
E
Emilia Kasper 已提交
746 747
ectest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
ectest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
B
Bodo Möller 已提交
748 749
ectest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ectest.c
enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
750 751 752 753 754 755 756 757 758 759
enginetest.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
enginetest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
enginetest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h
enginetest.o: ../include/openssl/evp.h ../include/openssl/lhash.h
enginetest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
enginetest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
enginetest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
enginetest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
enginetest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
B
Bodo Möller 已提交
760 761
enginetest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
enginetest.o: enginetest.c
762 763 764 765 766 767 768 769 770 771 772 773 774
evp_extra_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h
evp_extra_test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
evp_extra_test.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
evp_extra_test.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
evp_extra_test.o: ../include/openssl/err.h ../include/openssl/evp.h
evp_extra_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
evp_extra_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
evp_extra_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
evp_extra_test.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h
evp_extra_test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
evp_extra_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
evp_extra_test.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
evp_extra_test.o: evp_extra_test.c
D
Dr. Stephen Henson 已提交
775 776 777 778 779 780 781 782 783 784
evp_test.o: ../include/internal/numbers.h ../include/openssl/asn1.h
evp_test.o: ../include/openssl/bio.h ../include/openssl/buffer.h
evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h
evp_test.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
evp_test.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h
evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
evp_test.o: ../include/openssl/pem.h ../include/openssl/pem2.h
D
Dr. Stephen Henson 已提交
785 786 787 788 789
evp_test.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h
evp_test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
evp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
evp_test.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
evp_test.o: ../include/openssl/x509v3.h evp_test.c
R
Richard Levitte 已提交
790
exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
791 792 793
exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h
exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
R
Richard Levitte 已提交
794 795 796
exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
exptest.o: ../include/openssl/symhacks.h exptest.c
R
Rich Salz 已提交
797 798 799 800 801 802 803 804 805
gost2814789test.o: ../e_os.h ../engines/ccgost/gost89.h
gost2814789test.o: ../include/openssl/asn1.h ../include/openssl/bio.h
gost2814789test.o: ../include/openssl/buffer.h ../include/openssl/conf.h
gost2814789test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
gost2814789test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
gost2814789test.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
gost2814789test.o: ../include/openssl/err.h ../include/openssl/evp.h
gost2814789test.o: ../include/openssl/hmac.h ../include/openssl/lhash.h
gost2814789test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
806 807 808 809 810 811
gost2814789test.o: ../include/openssl/opensslconf.h
gost2814789test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
gost2814789test.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
gost2814789test.o: ../include/openssl/sha.h ../include/openssl/stack.h
gost2814789test.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
gost2814789test.o: ../include/openssl/x509_vfy.h gost2814789test.c
812
heartbeat_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
M
Matt Caswell 已提交
813 814 815 816 817 818 819 820 821
heartbeat_test.o: ../include/openssl/bn.h ../include/openssl/buffer.h
heartbeat_test.o: ../include/openssl/comp.h ../include/openssl/crypto.h
heartbeat_test.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
heartbeat_test.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
heartbeat_test.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
heartbeat_test.o: ../include/openssl/err.h ../include/openssl/evp.h
heartbeat_test.o: ../include/openssl/hmac.h ../include/openssl/lhash.h
heartbeat_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
heartbeat_test.o: ../include/openssl/opensslconf.h
822 823 824 825 826 827
heartbeat_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
heartbeat_test.o: ../include/openssl/pem.h ../include/openssl/pem2.h
heartbeat_test.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
heartbeat_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
heartbeat_test.o: ../include/openssl/sha.h ../include/openssl/srtp.h
heartbeat_test.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
828 829 830
heartbeat_test.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
heartbeat_test.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
heartbeat_test.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
M
Matt Caswell 已提交
831 832
heartbeat_test.o: ../ssl/packet_locl.h ../ssl/record/record.h ../ssl/ssl_locl.h
heartbeat_test.o: heartbeat_test.c testutil.h
R
Richard Levitte 已提交
833
hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
834 835 836 837 838 839 840
hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
hmactest.o: ../include/openssl/symhacks.h hmactest.c
R
Richard Levitte 已提交
841 842
ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h
ideatest.o: ../include/openssl/opensslconf.h ideatest.c
R
Rich Salz 已提交
843
igetest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/crypto.h
D
Dr. Stephen Henson 已提交
844 845 846 847
igetest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
igetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
igetest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
igetest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h igetest.c
E
Emilia Kasper 已提交
848 849 850
jpaketest.o: ../include/openssl/opensslconf.h jpaketest.c
md2test.o: ../e_os.h ../include/openssl/e_os2.h
md2test.o: ../include/openssl/opensslconf.h md2test.c
R
Richard Levitte 已提交
851
md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
852 853 854 855 856 857
md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
md4test.o: ../include/openssl/evp.h ../include/openssl/md4.h
md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md4test.c
R
Richard Levitte 已提交
858
md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
859 860 861 862 863 864
md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h
md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c
865
mdc2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
866
mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h
867 868 869 870 871 872
mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h
mdc2test.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h
mdc2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
mdc2test.o: ../include/openssl/symhacks.h mdc2test.c
B
Ben Laurie 已提交
873
p5_crpt2_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
874 875 876 877 878 879 880 881 882 883 884
p5_crpt2_test.o: ../include/openssl/buffer.h ../include/openssl/conf.h
p5_crpt2_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
p5_crpt2_test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
p5_crpt2_test.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
p5_crpt2_test.o: ../include/openssl/err.h ../include/openssl/evp.h
p5_crpt2_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
p5_crpt2_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
p5_crpt2_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
p5_crpt2_test.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
p5_crpt2_test.o: ../include/openssl/sha.h ../include/openssl/stack.h
p5_crpt2_test.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
B
Ben Laurie 已提交
885
p5_crpt2_test.o: ../include/openssl/x509_vfy.h p5_crpt2_test.c
M
Matt Caswell 已提交
886 887 888 889 890 891
packettest.o: ../e_os.h ../include/openssl/bn.h ../include/openssl/buffer.h
packettest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
packettest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
packettest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
packettest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
packettest.o: ../ssl/packet_locl.h packettest.c
892 893 894
randtest.o: ../e_os.h ../include/openssl/e_os2.h
randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h
randtest.o: ../include/openssl/rand.h randtest.c
R
Richard Levitte 已提交
895
rc2test.o: ../e_os.h ../include/openssl/e_os2.h
896
rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c
897 898 899
rc4test.o: ../e_os.h ../include/openssl/e_os2.h
rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h
rc4test.o: ../include/openssl/sha.h rc4test.c
E
Emilia Kasper 已提交
900 901
rc5test.o: ../e_os.h ../include/openssl/e_os2.h
rc5test.o: ../include/openssl/opensslconf.h rc5test.c
R
Richard Levitte 已提交
902
rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
903 904 905 906 907 908
rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
rmdtest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
rmdtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
rmdtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/safestack.h
rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h rmdtest.c
L
Lutz Jänicke 已提交
909 910
rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h
R
Richard Levitte 已提交
911
rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h
B
Bodo Möller 已提交
912 913 914 915
rsa_test.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h
rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
R
Richard Levitte 已提交
916
rsa_test.o: ../include/openssl/symhacks.h rsa_test.c
R
Richard Levitte 已提交
917
sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
918 919 920 921 922 923
sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c
R
Richard Levitte 已提交
924
ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
L
Lutz Jänicke 已提交
925
ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
926 927
ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h
ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
B
Bodo Möller 已提交
928 929 930
ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
B
Bodo Möller 已提交
931 932
ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h
ssltest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
933 934 935 936 937 938 939 940 941
ssltest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
ssltest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
ssltest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
ssltest.o: ../include/openssl/pem.h ../include/openssl/pem2.h
ssltest.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
ssltest.o: ../include/openssl/rand.h ../include/openssl/rsa.h
ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
ssltest.o: ../include/openssl/srp.h ../include/openssl/srtp.h
ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
942 943 944
ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
M
Matt Caswell 已提交
945 946
ssltest.o: ../include/openssl/x509v3.h ../ssl/packet_locl.h
ssltest.o: ../ssl/record/record.h ../ssl/ssl_locl.h ssltest.c
R
Rich Salz 已提交
947 948
testutil.o: ../e_os.h ../include/openssl/e_os2.h
testutil.o: ../include/openssl/opensslconf.h testutil.c testutil.h
949
v3nametest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
E
Emilia Kasper 已提交
950 951 952 953 954 955 956 957
v3nametest.o: ../include/openssl/buffer.h ../include/openssl/conf.h
v3nametest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
v3nametest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
v3nametest.o: ../include/openssl/ecdsa.h ../include/openssl/evp.h
v3nametest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
v3nametest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
v3nametest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
v3nametest.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h
D
Dr. Stephen Henson 已提交
958 959 960 961
v3nametest.o: ../include/openssl/sha.h ../include/openssl/stack.h
v3nametest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h
v3nametest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h
v3nametest.o: v3nametest.c
962 963 964 965 966 967 968
verify_extra_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h
verify_extra_test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
verify_extra_test.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
verify_extra_test.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
verify_extra_test.o: ../include/openssl/err.h ../include/openssl/evp.h
verify_extra_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
verify_extra_test.o: ../include/openssl/objects.h
M
Matt Caswell 已提交
969 970
verify_extra_test.o: ../include/openssl/opensslconf.h
verify_extra_test.o: ../include/openssl/opensslv.h
971 972 973 974 975 976
verify_extra_test.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
verify_extra_test.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
verify_extra_test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
verify_extra_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
verify_extra_test.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
verify_extra_test.o: verify_extra_test.c
977 978 979 980 981
wp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
wp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
wp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
wp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
wp_test.o: ../include/openssl/whrlpool.h wp_test.c