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