]> git.ipfire.org Git - thirdparty/openssl.git/blob - test/Makefile
Keep cipher lists sorted in the source instead of sorting them at
[thirdparty/openssl.git] / test / Makefile
1 #
2 # test/Makefile
3 #
4
5 DIR= test
6 TOP= ..
7 CC= cc
8 INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES)
9 CFLAG= -g
10 MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
11 PERL= perl
12 # KRB5 stuff
13 KRB5_INCLUDES=
14 LIBKRB5=
15
16 PEX_LIBS=
17 EX_LIBS= #-lnsl -lsocket
18
19 CFLAGS= $(INCLUDES) $(CFLAG)
20
21 GENERAL=Makefile maketests.com \
22 tests.com testenc.com tx509.com trsa.com tcrl.com tsid.com treq.com \
23 tpkcs7.com tpkcs7d.com tverify.com testgen.com testss.com testssl.com \
24 testca.com VMSca-response.1 VMSca-response.2
25
26 DLIBCRYPTO= ../libcrypto.a
27 DLIBSSL= ../libssl.a
28 LIBCRYPTO= -L.. -lcrypto
29 LIBSSL= -L.. -lssl
30
31 BNTEST= bntest
32 ECTEST= ectest
33 ECDSATEST= ecdsatest
34 ECDHTEST= ecdhtest
35 EXPTEST= exptest
36 IDEATEST= ideatest
37 SHATEST= shatest
38 SHA1TEST= sha1test
39 SHA256TEST= sha256t
40 SHA512TEST= sha512t
41 MDC2TEST= mdc2test
42 RMDTEST= rmdtest
43 MD2TEST= md2test
44 MD4TEST= md4test
45 MD5TEST= md5test
46 HMACTEST= hmactest
47 RC2TEST= rc2test
48 RC4TEST= rc4test
49 RC5TEST= rc5test
50 BFTEST= bftest
51 CASTTEST= casttest
52 DESTEST= destest
53 RANDTEST= randtest
54 DHTEST= dhtest
55 DSATEST= dsatest
56 METHTEST= methtest
57 SSLTEST= ssltest
58 RSATEST= rsa_test
59 ENGINETEST= enginetest
60 EVPTEST= evp_test
61
62 TESTS= alltests
63
64 EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \
65 $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \
66 $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \
67 $(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \
68 $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \
69 $(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \
70 $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \
71 $(EVPTEST)$(EXE_EXT)
72
73 # $(METHTEST)$(EXE_EXT)
74
75 OBJ= $(BNTEST).o $(ECTEST).o $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \
76 $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \
77 $(HMACTEST).o \
78 $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \
79 $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \
80 $(MDC2TEST).o $(RMDTEST).o \
81 $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \
82 $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \
83 $(EVPTEST).o
84 SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \
85 $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \
86 $(HMACTEST).c \
87 $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \
88 $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \
89 $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \
90 $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \
91 $(EVPTEST).c
92
93 EXHEADER=
94 HEADER= $(EXHEADER)
95
96 ALL= $(GENERAL) $(SRC) $(HEADER)
97
98 top:
99 (cd ..; $(MAKE) DIRS=$(DIR) TESTS=$(TESTS) all)
100
101 all: exe
102
103 exe: $(EXE) dummytest$(EXE_EXT)
104
105 files:
106 $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
107
108 links:
109
110 generate: $(SRC)
111 $(SRC):
112 @sh $(TOP)/util/point.sh dummytest.c $@
113
114 errors:
115
116 install:
117
118 tags:
119 ctags $(SRC)
120
121 tests: exe apps $(TESTS)
122
123 apps:
124 @(cd ..; $(MAKE) DIRS=apps all)
125
126 alltests: \
127 test_des test_idea test_sha test_md4 test_md5 test_hmac \
128 test_md2 test_mdc2 \
129 test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \
130 test_rand test_bn test_ec test_ecdsa test_ecdh \
131 test_enc test_x509 test_rsa test_crl test_sid \
132 test_gen test_req test_pkcs7 test_verify test_dh test_dsa \
133 test_ss test_ca test_engine test_evp test_ssl
134
135 test_evp:
136 ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt
137
138 test_des:
139 ../util/shlib_wrap.sh ./$(DESTEST)
140
141 test_idea:
142 ../util/shlib_wrap.sh ./$(IDEATEST)
143
144 test_sha:
145 ../util/shlib_wrap.sh ./$(SHATEST)
146 ../util/shlib_wrap.sh ./$(SHA1TEST)
147 ../util/shlib_wrap.sh ./$(SHA256TEST)
148 ../util/shlib_wrap.sh ./$(SHA512TEST)
149
150 test_mdc2:
151 ../util/shlib_wrap.sh ./$(MDC2TEST)
152
153 test_md5:
154 ../util/shlib_wrap.sh ./$(MD5TEST)
155
156 test_md4:
157 ../util/shlib_wrap.sh ./$(MD4TEST)
158
159 test_hmac:
160 ../util/shlib_wrap.sh ./$(HMACTEST)
161
162 test_md2:
163 ../util/shlib_wrap.sh ./$(MD2TEST)
164
165 test_rmd:
166 ../util/shlib_wrap.sh ./$(RMDTEST)
167
168 test_bf:
169 ../util/shlib_wrap.sh ./$(BFTEST)
170
171 test_cast:
172 ../util/shlib_wrap.sh ./$(CASTTEST)
173
174 test_rc2:
175 ../util/shlib_wrap.sh ./$(RC2TEST)
176
177 test_rc4:
178 ../util/shlib_wrap.sh ./$(RC4TEST)
179
180 test_rc5:
181 ../util/shlib_wrap.sh ./$(RC5TEST)
182
183 test_rand:
184 ../util/shlib_wrap.sh ./$(RANDTEST)
185
186 test_enc:
187 @sh ./testenc
188
189 test_x509:
190 echo test normal x509v1 certificate
191 sh ./tx509 2>/dev/null
192 echo test first x509v3 certificate
193 sh ./tx509 v3-cert1.pem 2>/dev/null
194 echo test second x509v3 certificate
195 sh ./tx509 v3-cert2.pem 2>/dev/null
196
197 test_rsa:
198 @sh ./trsa 2>/dev/null
199 ../util/shlib_wrap.sh ./$(RSATEST)
200
201 test_crl:
202 @sh ./tcrl 2>/dev/null
203
204 test_sid:
205 @sh ./tsid 2>/dev/null
206
207 test_req:
208 @sh ./treq 2>/dev/null
209 @sh ./treq testreq2.pem 2>/dev/null
210
211 test_pkcs7:
212 @sh ./tpkcs7 2>/dev/null
213 @sh ./tpkcs7d 2>/dev/null
214
215 test_bn:
216 @echo starting big number library test, could take a while...
217 @../util/shlib_wrap.sh ./$(BNTEST) >tmp.bntest
218 @echo quit >>tmp.bntest
219 @echo "running bc"
220 @<tmp.bntest sh -c "`sh ./bctest ignore`" | $(PERL) -e '$$i=0; while (<STDIN>) {if (/^test (.*)/) {print STDERR "\nverify $$1";} elsif (!/^0$$/) {die "\nFailed! bc: $$_";} else {print STDERR "."; $$i++;}} print STDERR "\n$$i tests passed\n"'
221 @echo 'test a^b%c implementations'
222 ../util/shlib_wrap.sh ./$(EXPTEST)
223
224 test_ec:
225 @echo 'test elliptic curves'
226 ../util/shlib_wrap.sh ./$(ECTEST)
227
228 test_ecdsa:
229 @echo 'test ecdsa'
230 ../util/shlib_wrap.sh ./$(ECDSATEST)
231
232 test_ecdh:
233 @echo 'test ecdh'
234 ../util/shlib_wrap.sh ./$(ECDHTEST)
235
236 test_verify:
237 @echo "The following command should have some OK's and some failures"
238 @echo "There are definitly a few expired certificates"
239 ../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem
240
241 test_dh:
242 @echo "Generate a set of DH parameters"
243 ../util/shlib_wrap.sh ./$(DHTEST)
244
245 test_dsa:
246 @echo "Generate a set of DSA parameters"
247 ../util/shlib_wrap.sh ./$(DSATEST)
248 ../util/shlib_wrap.sh ./$(DSATEST) -app2_1
249
250 test_gen:
251 @echo "Generate and verify a certificate request"
252 @sh ./testgen
253
254 test_ss keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
255 intP1.ss intP2.ss: testss
256 @echo "Generate and certify a test certificate"
257 @sh ./testss
258 @cat certCA.ss certU.ss > intP1.ss
259 @cat certCA.ss certU.ss certP1.ss > intP2.ss
260
261 test_engine:
262 @echo "Manipulate the ENGINE structures"
263 ../util/shlib_wrap.sh ./$(ENGINETEST)
264
265 test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \
266 intP1.ss intP2.ss
267 @echo "test SSL protocol"
268 ../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist
269 @sh ./testssl keyU.ss certU.ss certCA.ss
270 @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss
271 @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss
272
273 test_ca:
274 @if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \
275 echo "skipping CA.sh test -- requires RSA"; \
276 else \
277 echo "Generate and certify a test certificate via the 'ca' program"; \
278 sh ./testca; \
279 fi
280
281 test_aes: #$(AESTEST)
282 # @echo "test Rijndael"
283 # ../util/shlib_wrap.sh ./$(AESTEST)
284
285 lint:
286 lint -DLINT $(INCLUDES) $(SRC)>fluff
287
288 depend:
289 @if [ -z "$(THIS)" ]; then \
290 $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
291 else \
292 $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \
293 fi
294
295 dclean:
296 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
297 mv -f Makefile.new $(MAKEFILE)
298
299 clean:
300 rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log
301
302 $(DLIBSSL):
303 (cd ..; $(MAKE) DIRS=ssl all)
304
305 $(DLIBCRYPTO):
306 (cd ..; $(MAKE) DIRS=crypto all)
307
308 BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \
309 shlib_target="$(SHLIB_TARGET)"; \
310 fi; \
311 if [ "$${shlib_target}" = "hpux-shared" -o "$${shlib_target}" = "darwin-shared" ] ; then \
312 LIBRARIES="$(DLIBSSL) $(DLIBCRYPTO)"; \
313 else \
314 LIBRARIES="$(LIBSSL) $(LIBCRYPTO)"; \
315 fi; \
316 $(MAKE) -f $(TOP)/Makefile.shared -e \
317 APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \
318 LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \
319 link_app.$${shlib_target}
320
321 $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO)
322 @target=$(RSATEST); $(BUILD_CMD)
323
324 $(BNTEST)$(EXE_EXT): $(BNTEST).o $(DLIBCRYPTO)
325 @target=$(BNTEST); $(BUILD_CMD)
326
327 $(ECTEST)$(EXE_EXT): $(ECTEST).o $(DLIBCRYPTO)
328 @target=$(ECTEST); $(BUILD_CMD)
329
330 $(EXPTEST)$(EXE_EXT): $(EXPTEST).o $(DLIBCRYPTO)
331 @target=$(EXPTEST); $(BUILD_CMD)
332
333 $(IDEATEST)$(EXE_EXT): $(IDEATEST).o $(DLIBCRYPTO)
334 @target=$(IDEATEST); $(BUILD_CMD)
335
336 $(MD2TEST)$(EXE_EXT): $(MD2TEST).o $(DLIBCRYPTO)
337 @target=$(MD2TEST); $(BUILD_CMD)
338
339 $(SHATEST)$(EXE_EXT): $(SHATEST).o $(DLIBCRYPTO)
340 @target=$(SHATEST); $(BUILD_CMD)
341
342 $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO)
343 @target=$(SHA1TEST); $(BUILD_CMD)
344
345 $(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO)
346 @target=$(SHA256TEST); $(BUILD_CMD)
347
348 $(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO)
349 @target=$(SHA512TEST); $(BUILD_CMD)
350
351 $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO)
352 @target=$(RMDTEST); $(BUILD_CMD)
353
354 $(MDC2TEST)$(EXE_EXT): $(MDC2TEST).o $(DLIBCRYPTO)
355 @target=$(MDC2TEST); $(BUILD_CMD)
356
357 $(MD4TEST)$(EXE_EXT): $(MD4TEST).o $(DLIBCRYPTO)
358 @target=$(MD4TEST); $(BUILD_CMD)
359
360 $(MD5TEST)$(EXE_EXT): $(MD5TEST).o $(DLIBCRYPTO)
361 @target=$(MD5TEST); $(BUILD_CMD)
362
363 $(HMACTEST)$(EXE_EXT): $(HMACTEST).o $(DLIBCRYPTO)
364 @target=$(HMACTEST); $(BUILD_CMD)
365
366 $(RC2TEST)$(EXE_EXT): $(RC2TEST).o $(DLIBCRYPTO)
367 @target=$(RC2TEST); $(BUILD_CMD)
368
369 $(BFTEST)$(EXE_EXT): $(BFTEST).o $(DLIBCRYPTO)
370 @target=$(BFTEST); $(BUILD_CMD)
371
372 $(CASTTEST)$(EXE_EXT): $(CASTTEST).o $(DLIBCRYPTO)
373 @target=$(CASTTEST); $(BUILD_CMD)
374
375 $(RC4TEST)$(EXE_EXT): $(RC4TEST).o $(DLIBCRYPTO)
376 @target=$(RC4TEST); $(BUILD_CMD)
377
378 $(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO)
379 @target=$(RC5TEST); $(BUILD_CMD)
380
381 $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO)
382 @target=$(DESTEST); $(BUILD_CMD)
383
384 $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO)
385 @target=$(RANDTEST); $(BUILD_CMD)
386
387 $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO)
388 @target=$(DHTEST); $(BUILD_CMD)
389
390 $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO)
391 @target=$(DSATEST); $(BUILD_CMD)
392
393 $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO)
394 @target=$(METHTEST); $(BUILD_CMD)
395
396 $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO)
397 @target=$(SSLTEST); $(BUILD_CMD)
398
399 $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO)
400 @target=$(ENGINETEST); $(BUILD_CMD)
401
402 $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO)
403 @target=$(EVPTEST); $(BUILD_CMD)
404
405 $(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO)
406 @target=$(ECDSATEST); $(BUILD_CMD)
407
408 $(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO)
409 @target=$(ECDHTEST); $(BUILD_CMD)
410
411 #$(AESTEST).o: $(AESTEST).c
412 # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c
413
414 #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO)
415 # if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \
416 # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \
417 # else \
418 # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \
419 # fi
420
421 dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO)
422 @target=dummytest$; $(BUILD_CMD)
423
424 # DO NOT DELETE THIS LINE -- make depend depends on it.
425
426 bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h
427 bftest.o: ../include/openssl/opensslconf.h bftest.c
428 bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
429 bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
430 bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
431 bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
432 bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
433 bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
434 bntest.o: ../include/openssl/evp.h ../include/openssl/lhash.h
435 bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
436 bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
437 bntest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h
438 bntest.o: ../include/openssl/rand.h ../include/openssl/rsa.h
439 bntest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
440 bntest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
441 bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bntest.c
442 casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h
443 casttest.o: ../include/openssl/opensslconf.h casttest.c
444 destest.o: ../include/openssl/des.h ../include/openssl/des_old.h
445 destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
446 destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
447 destest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
448 destest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h destest.c
449 dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
450 dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
451 dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h
452 dhtest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
453 dhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
454 dhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
455 dhtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h dhtest.c
456 dsatest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
457 dsatest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
458 dsatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h
459 dsatest.o: ../include/openssl/err.h ../include/openssl/lhash.h
460 dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
461 dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
462 dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
463 dsatest.o: ../include/openssl/symhacks.h dsatest.c
464 ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
465 ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h
466 ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
467 ecdhtest.o: ../include/openssl/ecdh.h ../include/openssl/err.h
468 ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
469 ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
470 ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
471 ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
472 ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h
473 ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c
474 ecdsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h
475 ecdsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h
476 ecdsatest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
477 ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
478 ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h
479 ecdsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
480 ecdsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
481 ecdsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
482 ecdsatest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
483 ecdsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
484 ecdsatest.o: ecdsatest.c
485 ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
486 ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h
487 ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
488 ectest.o: ../include/openssl/engine.h ../include/openssl/err.h
489 ectest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
490 ectest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
491 ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
492 ectest.o: ../include/openssl/rand.h ../include/openssl/safestack.h
493 ectest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h ectest.c
494 enginetest.o: ../include/openssl/bio.h ../include/openssl/buffer.h
495 enginetest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
496 enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h
497 enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
498 enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
499 enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
500 enginetest.o: ../include/openssl/symhacks.h enginetest.c
501 evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
502 evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h
503 evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h
504 evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h
505 evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
506 evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
507 evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
508 evp_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
509 evp_test.o: ../include/openssl/symhacks.h evp_test.c
510 exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h
511 exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
512 exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h
513 exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
514 exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h
515 exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
516 exptest.o: ../include/openssl/symhacks.h exptest.c
517 hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
518 hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
519 hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h
520 hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
521 hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
522 hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
523 hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h
524 hmactest.o: ../include/openssl/symhacks.h hmactest.c
525 ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h
526 ideatest.o: ../include/openssl/opensslconf.h ideatest.c
527 md2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
528 md2test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
529 md2test.o: ../include/openssl/evp.h ../include/openssl/md2.h
530 md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
531 md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
532 md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
533 md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md2test.c
534 md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
535 md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
536 md4test.o: ../include/openssl/evp.h ../include/openssl/md4.h
537 md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
538 md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
539 md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
540 md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md4test.c
541 md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
542 md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
543 md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h
544 md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
545 md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
546 md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h
547 md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c
548 mdc2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
549 mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
550 mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
551 mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
552 mdc2test.o: ../include/openssl/symhacks.h mdc2test.c
553 randtest.o: ../e_os.h ../include/openssl/e_os2.h
554 randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h
555 randtest.o: ../include/openssl/rand.h randtest.c
556 rc2test.o: ../e_os.h ../include/openssl/e_os2.h
557 rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c
558 rc4test.o: ../e_os.h ../include/openssl/e_os2.h
559 rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h
560 rc4test.o: ../include/openssl/sha.h rc4test.c
561 rc5test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h
562 rc5test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h
563 rc5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
564 rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
565 rc5test.o: ../include/openssl/symhacks.h rc5test.c
566 rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
567 rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
568 rmdtest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
569 rmdtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
570 rmdtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
571 rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/safestack.h
572 rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h rmdtest.c
573 rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
574 rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h
575 rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h
576 rsa_test.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h
577 rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
578 rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h
579 rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h
580 rsa_test.o: ../include/openssl/symhacks.h rsa_test.c
581 sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
582 sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
583 sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
584 sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
585 sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
586 sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h
587 sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c
588 shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
589 shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h
590 shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h
591 shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
592 shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
593 shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h
594 shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c
595 ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
596 ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h
597 ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h
598 ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h
599 ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
600 ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
601 ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
602 ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h
603 ssltest.o: ../include/openssl/evp.h ../include/openssl/kssl.h
604 ssltest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
605 ssltest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
606 ssltest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
607 ssltest.o: ../include/openssl/pem.h ../include/openssl/pem2.h
608 ssltest.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h
609 ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
610 ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
611 ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h
612 ssltest.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
613 ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
614 ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
615 ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
616 ssltest.o: ../include/openssl/x509v3.h ssltest.c