1142425Snectar#
2160814Ssimon# OpenSSL/ssl/Makefile
3142425Snectar#
4142425Snectar
5142425SnectarDIR=	ssl
6142425SnectarTOP=	..
7142425SnectarCC=	cc
8142425SnectarINCLUDES= -I../crypto -I$(TOP) -I../include $(KRB5_INCLUDES)
9142425SnectarCFLAG=-g
10142425SnectarMAKEFILE=	Makefile
11142425SnectarAR=		ar r
12142425Snectar# KRB5 stuff
13142425SnectarKRB5_INCLUDES=
14142425Snectar
15142425SnectarCFLAGS= $(INCLUDES) $(CFLAG)
16142425Snectar
17142425SnectarGENERAL=Makefile README ssl-lib.com install.com
18267258SjkimTEST=ssltest.c heartbeat_test.c
19142425SnectarAPPS=
20142425Snectar
21142425SnectarLIB=$(TOP)/libssl.a
22142425SnectarSHARED_LIB= libssl$(SHLIB_EXT)
23142425SnectarLIBSRC=	\
24142425Snectar	s2_meth.c   s2_srvr.c s2_clnt.c  s2_lib.c  s2_enc.c s2_pkt.c \
25246772Sjkim	s3_meth.c   s3_srvr.c s3_clnt.c  s3_lib.c  s3_enc.c s3_pkt.c s3_both.c s3_cbc.c \
26142425Snectar	s23_meth.c s23_srvr.c s23_clnt.c s23_lib.c          s23_pkt.c \
27142425Snectar	t1_meth.c   t1_srvr.c t1_clnt.c  t1_lib.c  t1_enc.c \
28160814Ssimon	d1_meth.c   d1_srvr.c d1_clnt.c  d1_lib.c  d1_pkt.c \
29238405Sjkim	d1_both.c d1_enc.c d1_srtp.c \
30142425Snectar	ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \
31142425Snectar	ssl_ciph.c ssl_stat.c ssl_rsa.c \
32142425Snectar	ssl_asn1.c ssl_txt.c ssl_algs.c \
33269686Sjkim	bio_ssl.c ssl_err.c kssl.c tls_srp.c t1_reneg.c ssl_utst.c
34142425SnectarLIBOBJ= \
35142425Snectar	s2_meth.o  s2_srvr.o  s2_clnt.o  s2_lib.o  s2_enc.o s2_pkt.o \
36246772Sjkim	s3_meth.o  s3_srvr.o  s3_clnt.o  s3_lib.o  s3_enc.o s3_pkt.o s3_both.o s3_cbc.o \
37142425Snectar	s23_meth.o s23_srvr.o s23_clnt.o s23_lib.o          s23_pkt.o \
38142425Snectar	t1_meth.o   t1_srvr.o t1_clnt.o  t1_lib.o  t1_enc.o \
39160814Ssimon	d1_meth.o   d1_srvr.o d1_clnt.o  d1_lib.o  d1_pkt.o \
40238405Sjkim	d1_both.o d1_enc.o d1_srtp.o\
41142425Snectar	ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \
42142425Snectar	ssl_ciph.o ssl_stat.o ssl_rsa.o \
43142425Snectar	ssl_asn1.o ssl_txt.o ssl_algs.o \
44269686Sjkim	bio_ssl.o ssl_err.o kssl.o tls_srp.o t1_reneg.o ssl_utst.o
45142425Snectar
46142425SnectarSRC= $(LIBSRC)
47142425Snectar
48238405SjkimEXHEADER= ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h srtp.h
49142425SnectarHEADER=	$(EXHEADER) ssl_locl.h kssl_lcl.h
50142425Snectar
51142425SnectarALL=    $(GENERAL) $(SRC) $(HEADER)
52142425Snectar
53142425Snectartop:
54142425Snectar	(cd ..; $(MAKE) DIRS=$(DIR) all)
55142425Snectar
56238405Sjkimall:	shared
57142425Snectar
58142425Snectarlib:	$(LIBOBJ)
59142425Snectar	$(AR) $(LIB) $(LIBOBJ)
60142425Snectar	$(RANLIB) $(LIB) || echo Never mind.
61142425Snectar	@touch lib
62142425Snectar
63142425Snectarshared: lib
64142425Snectar	if [ -n "$(SHARED_LIBS)" ]; then \
65142425Snectar		(cd ..; $(MAKE) $(SHARED_LIB)); \
66142425Snectar	fi
67142425Snectar
68142425Snectarfiles:
69142425Snectar	$(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO
70142425Snectar
71142425Snectarlinks:
72142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../include/openssl $(EXHEADER)
73142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../test $(TEST)
74142425Snectar	@$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS)
75142425Snectar
76142425Snectarinstall:
77160814Ssimon	@[ -n "$(INSTALLTOP)" ] # should be set by top Makefile...
78160814Ssimon	@headerlist="$(EXHEADER)"; for i in $$headerlist ; \
79142425Snectar	do  \
80142425Snectar	(cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
81142425Snectar	chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
82142425Snectar	done;
83142425Snectar
84142425Snectartags:
85142425Snectar	ctags $(SRC)
86142425Snectar
87142425Snectartests:
88142425Snectar
89142425Snectarlint:
90142425Snectar	lint -DLINT $(INCLUDES) $(SRC)>fluff
91142425Snectar
92296341Sdelphijupdate: local_depend
93296341Sdelphij	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
94142425Snectar
95296341Sdelphijdepend: local_depend
96296341Sdelphij	@if [ -z "$(THIS)" ]; then $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; fi
97296341Sdelphijlocal_depend:
98296341Sdelphij	@[ -z "$(THIS)" ] || $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC)
99296341Sdelphij
100142425Snectardclean:
101142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
102142425Snectar	mv -f Makefile.new $(MAKEFILE)
103142425Snectar
104142425Snectarclean:
105142425Snectar	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
106142425Snectar
107142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
108142425Snectar
109160814Ssimonbio_ssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h
110238405Sjkimbio_ssl.o: ../include/openssl/buffer.h ../include/openssl/comp.h
111238405Sjkimbio_ssl.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
112238405Sjkimbio_ssl.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
113238405Sjkimbio_ssl.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
114238405Sjkimbio_ssl.o: ../include/openssl/err.h ../include/openssl/evp.h
115194206Ssimonbio_ssl.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
116160814Ssimonbio_ssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
117142425Snectarbio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
118142425Snectarbio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
119142425Snectarbio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
120238405Sjkimbio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
121238405Sjkimbio_ssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h
122238405Sjkimbio_ssl.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
123160814Ssimonbio_ssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
124160814Ssimonbio_ssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
125160814Ssimonbio_ssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
126160814Ssimonbio_ssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bio_ssl.c
127160814Ssimond1_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
128238405Sjkimd1_both.o: ../include/openssl/buffer.h ../include/openssl/comp.h
129238405Sjkimd1_both.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
130238405Sjkimd1_both.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
131238405Sjkimd1_both.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
132238405Sjkimd1_both.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
133238405Sjkimd1_both.o: ../include/openssl/evp.h ../include/openssl/hmac.h
134160814Ssimond1_both.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
135160814Ssimond1_both.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
136160814Ssimond1_both.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
137160814Ssimond1_both.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
138160814Ssimond1_both.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
139238405Sjkimd1_both.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
140238405Sjkimd1_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
141238405Sjkimd1_both.o: ../include/openssl/sha.h ../include/openssl/srtp.h
142160814Ssimond1_both.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
143160814Ssimond1_both.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
144160814Ssimond1_both.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
145160814Ssimond1_both.o: ../include/openssl/tls1.h ../include/openssl/x509.h
146160814Ssimond1_both.o: ../include/openssl/x509_vfy.h d1_both.c ssl_locl.h
147160814Ssimond1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
148160814Ssimond1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h
149160814Ssimond1_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h
150160814Ssimond1_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h
151160814Ssimond1_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
152160814Ssimond1_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
153160814Ssimond1_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
154238405Sjkimd1_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
155238405Sjkimd1_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
156238405Sjkimd1_clnt.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
157238405Sjkimd1_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
158238405Sjkimd1_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
159238405Sjkimd1_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h
160238405Sjkimd1_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
161160814Ssimond1_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h
162160814Ssimond1_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
163238405Sjkimd1_clnt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
164238405Sjkimd1_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
165238405Sjkimd1_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
166238405Sjkimd1_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
167238405Sjkimd1_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_clnt.c
168238405Sjkimd1_clnt.o: kssl_lcl.h ssl_locl.h
169160814Ssimond1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
170238405Sjkimd1_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
171238405Sjkimd1_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
172238405Sjkimd1_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
173238405Sjkimd1_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
174238405Sjkimd1_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
175238405Sjkimd1_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
176194206Ssimond1_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
177194206Ssimond1_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
178194206Ssimond1_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
179194206Ssimond1_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
180194206Ssimond1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
181238405Sjkimd1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
182238405Sjkimd1_enc.o: ../include/openssl/rand.h ../include/openssl/rsa.h
183238405Sjkimd1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
184238405Sjkimd1_enc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
185194206Ssimond1_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
186194206Ssimond1_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
187194206Ssimond1_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
188194206Ssimond1_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_enc.c
189194206Ssimond1_enc.o: ssl_locl.h
190160814Ssimond1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
191238405Sjkimd1_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
192238405Sjkimd1_lib.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
193238405Sjkimd1_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
194238405Sjkimd1_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
195238405Sjkimd1_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
196238405Sjkimd1_lib.o: ../include/openssl/evp.h ../include/openssl/hmac.h
197160814Ssimond1_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
198160814Ssimond1_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
199160814Ssimond1_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
200160814Ssimond1_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
201160814Ssimond1_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
202238405Sjkimd1_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
203238405Sjkimd1_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h
204238405Sjkimd1_lib.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
205160814Ssimond1_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
206160814Ssimond1_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
207160814Ssimond1_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
208160814Ssimond1_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_lib.c
209160814Ssimond1_lib.o: ssl_locl.h
210160814Ssimond1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
211238405Sjkimd1_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
212238405Sjkimd1_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
213238405Sjkimd1_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
214238405Sjkimd1_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
215238405Sjkimd1_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
216238405Sjkimd1_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
217160814Ssimond1_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
218160814Ssimond1_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
219160814Ssimond1_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
220160814Ssimond1_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
221160814Ssimond1_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
222238405Sjkimd1_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
223238405Sjkimd1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
224238405Sjkimd1_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
225160814Ssimond1_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
226160814Ssimond1_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
227160814Ssimond1_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
228160814Ssimond1_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_meth.c
229160814Ssimond1_meth.o: ssl_locl.h
230160814Ssimond1_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
231238405Sjkimd1_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
232238405Sjkimd1_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
233238405Sjkimd1_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
234238405Sjkimd1_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
235238405Sjkimd1_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
236238405Sjkimd1_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
237160814Ssimond1_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
238160814Ssimond1_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
239160814Ssimond1_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
240160814Ssimond1_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
241160814Ssimond1_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
242238405Sjkimd1_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
243238405Sjkimd1_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
244238405Sjkimd1_pkt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
245194206Ssimond1_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
246194206Ssimond1_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
247194206Ssimond1_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
248194206Ssimond1_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
249194206Ssimond1_pkt.o: ../include/openssl/x509_vfy.h d1_pkt.c ssl_locl.h
250238405Sjkimd1_srtp.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
251238405Sjkimd1_srtp.o: ../include/openssl/buffer.h ../include/openssl/comp.h
252238405Sjkimd1_srtp.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
253238405Sjkimd1_srtp.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
254238405Sjkimd1_srtp.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
255238405Sjkimd1_srtp.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
256238405Sjkimd1_srtp.o: ../include/openssl/evp.h ../include/openssl/hmac.h
257238405Sjkimd1_srtp.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
258238405Sjkimd1_srtp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
259238405Sjkimd1_srtp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
260238405Sjkimd1_srtp.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
261238405Sjkimd1_srtp.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
262238405Sjkimd1_srtp.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
263238405Sjkimd1_srtp.o: ../include/openssl/safestack.h ../include/openssl/sha.h
264238405Sjkimd1_srtp.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
265238405Sjkimd1_srtp.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
266238405Sjkimd1_srtp.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
267238405Sjkimd1_srtp.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
268238405Sjkimd1_srtp.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_srtp.c
269238405Sjkimd1_srtp.o: srtp.h ssl_locl.h
270160814Ssimond1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
271160814Ssimond1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h
272160814Ssimond1_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h
273160814Ssimond1_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h
274160814Ssimond1_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
275160814Ssimond1_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
276160814Ssimond1_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
277238405Sjkimd1_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h
278238405Sjkimd1_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
279238405Sjkimd1_srvr.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
280238405Sjkimd1_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
281238405Sjkimd1_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
282238405Sjkimd1_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h
283238405Sjkimd1_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
284160814Ssimond1_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h
285160814Ssimond1_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
286238405Sjkimd1_srvr.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
287238405Sjkimd1_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
288238405Sjkimd1_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
289238405Sjkimd1_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
290238405Sjkimd1_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_srvr.c
291238405Sjkimd1_srvr.o: ssl_locl.h
292160814Ssimonkssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h
293238405Sjkimkssl.o: ../include/openssl/buffer.h ../include/openssl/comp.h
294238405Sjkimkssl.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
295238405Sjkimkssl.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
296238405Sjkimkssl.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
297238405Sjkimkssl.o: ../include/openssl/evp.h ../include/openssl/hmac.h
298142425Snectarkssl.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h
299160814Ssimonkssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
300142425Snectarkssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
301142425Snectarkssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
302142425Snectarkssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
303238405Sjkimkssl.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
304238405Sjkimkssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h
305238405Sjkimkssl.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
306160814Ssimonkssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
307160814Ssimonkssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
308160814Ssimonkssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
309160814Ssimonkssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl.c
310238405Sjkimkssl.o: kssl_lcl.h
311160814Ssimons23_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
312238405Sjkims23_clnt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
313238405Sjkims23_clnt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
314238405Sjkims23_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
315238405Sjkims23_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
316238405Sjkims23_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
317238405Sjkims23_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
318160814Ssimons23_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
319160814Ssimons23_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
320160814Ssimons23_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
321160814Ssimons23_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
322160814Ssimons23_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
323238405Sjkims23_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
324238405Sjkims23_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
325238405Sjkims23_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
326160814Ssimons23_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
327160814Ssimons23_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
328160814Ssimons23_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
329160814Ssimons23_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
330160814Ssimons23_clnt.o: ../include/openssl/x509_vfy.h s23_clnt.c ssl_locl.h
331160814Ssimons23_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
332238405Sjkims23_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
333238405Sjkims23_lib.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
334238405Sjkims23_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
335238405Sjkims23_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
336238405Sjkims23_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
337238405Sjkims23_lib.o: ../include/openssl/evp.h ../include/openssl/hmac.h
338160814Ssimons23_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
339160814Ssimons23_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
340160814Ssimons23_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
341160814Ssimons23_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
342160814Ssimons23_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
343238405Sjkims23_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
344238405Sjkims23_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h
345238405Sjkims23_lib.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
346160814Ssimons23_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
347160814Ssimons23_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
348160814Ssimons23_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
349160814Ssimons23_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_lib.c
350160814Ssimons23_lib.o: ssl_locl.h
351160814Ssimons23_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
352238405Sjkims23_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
353238405Sjkims23_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
354238405Sjkims23_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
355238405Sjkims23_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
356238405Sjkims23_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
357238405Sjkims23_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
358160814Ssimons23_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
359160814Ssimons23_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
360160814Ssimons23_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
361160814Ssimons23_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
362160814Ssimons23_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
363238405Sjkims23_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
364238405Sjkims23_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
365238405Sjkims23_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
366160814Ssimons23_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
367160814Ssimons23_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
368160814Ssimons23_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
369160814Ssimons23_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_meth.c
370160814Ssimons23_meth.o: ssl_locl.h
371160814Ssimons23_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
372238405Sjkims23_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
373238405Sjkims23_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
374238405Sjkims23_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
375238405Sjkims23_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
376238405Sjkims23_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
377238405Sjkims23_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
378160814Ssimons23_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
379160814Ssimons23_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
380160814Ssimons23_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
381160814Ssimons23_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
382160814Ssimons23_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
383238405Sjkims23_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
384238405Sjkims23_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
385238405Sjkims23_pkt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
386160814Ssimons23_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
387160814Ssimons23_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
388160814Ssimons23_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
389160814Ssimons23_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_pkt.c
390160814Ssimons23_pkt.o: ssl_locl.h
391160814Ssimons23_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
392238405Sjkims23_srvr.o: ../include/openssl/buffer.h ../include/openssl/comp.h
393238405Sjkims23_srvr.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
394238405Sjkims23_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
395238405Sjkims23_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
396238405Sjkims23_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
397238405Sjkims23_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h
398160814Ssimons23_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
399160814Ssimons23_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
400160814Ssimons23_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
401160814Ssimons23_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
402160814Ssimons23_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
403238405Sjkims23_srvr.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
404238405Sjkims23_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
405238405Sjkims23_srvr.o: ../include/openssl/sha.h ../include/openssl/srtp.h
406160814Ssimons23_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
407160814Ssimons23_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
408160814Ssimons23_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
409160814Ssimons23_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
410160814Ssimons23_srvr.o: ../include/openssl/x509_vfy.h s23_srvr.c ssl_locl.h
411160814Ssimons2_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
412238405Sjkims2_clnt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
413238405Sjkims2_clnt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
414238405Sjkims2_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
415238405Sjkims2_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
416238405Sjkims2_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
417238405Sjkims2_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
418160814Ssimons2_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
419160814Ssimons2_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
420160814Ssimons2_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
421160814Ssimons2_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
422160814Ssimons2_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
423238405Sjkims2_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
424238405Sjkims2_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
425238405Sjkims2_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
426160814Ssimons2_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
427160814Ssimons2_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
428160814Ssimons2_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
429160814Ssimons2_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
430160814Ssimons2_clnt.o: ../include/openssl/x509_vfy.h s2_clnt.c ssl_locl.h
431160814Ssimons2_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
432238405Sjkims2_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
433238405Sjkims2_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
434238405Sjkims2_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
435238405Sjkims2_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
436238405Sjkims2_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
437238405Sjkims2_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
438160814Ssimons2_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
439160814Ssimons2_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
440160814Ssimons2_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
441160814Ssimons2_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
442160814Ssimons2_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
443238405Sjkims2_enc.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
444238405Sjkims2_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
445238405Sjkims2_enc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
446160814Ssimons2_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
447160814Ssimons2_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
448160814Ssimons2_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
449160814Ssimons2_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_enc.c
450160814Ssimons2_enc.o: ssl_locl.h
451160814Ssimons2_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
452238405Sjkims2_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
453238405Sjkims2_lib.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
454238405Sjkims2_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
455238405Sjkims2_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
456238405Sjkims2_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
457238405Sjkims2_lib.o: ../include/openssl/evp.h ../include/openssl/hmac.h
458160814Ssimons2_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
459160814Ssimons2_lib.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
460142425Snectars2_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
461142425Snectars2_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
462142425Snectars2_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h
463238405Sjkims2_lib.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
464238405Sjkims2_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
465238405Sjkims2_lib.o: ../include/openssl/sha.h ../include/openssl/srtp.h
466142425Snectars2_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
467142425Snectars2_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
468142425Snectars2_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
469160814Ssimons2_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
470142425Snectars2_lib.o: ../include/openssl/x509_vfy.h s2_lib.c ssl_locl.h
471160814Ssimons2_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
472238405Sjkims2_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
473238405Sjkims2_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
474238405Sjkims2_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
475238405Sjkims2_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
476238405Sjkims2_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
477238405Sjkims2_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
478160814Ssimons2_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
479160814Ssimons2_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
480160814Ssimons2_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
481160814Ssimons2_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
482160814Ssimons2_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
483238405Sjkims2_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
484238405Sjkims2_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
485238405Sjkims2_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
486160814Ssimons2_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
487160814Ssimons2_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
488160814Ssimons2_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
489160814Ssimons2_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_meth.c
490160814Ssimons2_meth.o: ssl_locl.h
491160814Ssimons2_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
492238405Sjkims2_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
493238405Sjkims2_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
494238405Sjkims2_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
495238405Sjkims2_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
496238405Sjkims2_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
497238405Sjkims2_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
498160814Ssimons2_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
499160814Ssimons2_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
500160814Ssimons2_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
501160814Ssimons2_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
502160814Ssimons2_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
503238405Sjkims2_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
504238405Sjkims2_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
505238405Sjkims2_pkt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
506160814Ssimons2_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
507160814Ssimons2_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
508160814Ssimons2_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
509160814Ssimons2_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_pkt.c
510160814Ssimons2_pkt.o: ssl_locl.h
511296341Sdelphijs2_srvr.o: ../crypto/constant_time_locl.h ../e_os.h ../include/openssl/asn1.h
512296341Sdelphijs2_srvr.o: ../include/openssl/bio.h ../include/openssl/buffer.h
513296341Sdelphijs2_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h
514296341Sdelphijs2_srvr.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
515296341Sdelphijs2_srvr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
516296341Sdelphijs2_srvr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
517296341Sdelphijs2_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h
518296341Sdelphijs2_srvr.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
519296341Sdelphijs2_srvr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
520296341Sdelphijs2_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
521296341Sdelphijs2_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
522296341Sdelphijs2_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h
523296341Sdelphijs2_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
524296341Sdelphijs2_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h
525296341Sdelphijs2_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
526296341Sdelphijs2_srvr.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
527296341Sdelphijs2_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
528296341Sdelphijs2_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
529296341Sdelphijs2_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
530296341Sdelphijs2_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_srvr.c
531296341Sdelphijs2_srvr.o: ssl_locl.h
532160814Ssimons3_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
533238405Sjkims3_both.o: ../include/openssl/buffer.h ../include/openssl/comp.h
534238405Sjkims3_both.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
535238405Sjkims3_both.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
536238405Sjkims3_both.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
537238405Sjkims3_both.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
538238405Sjkims3_both.o: ../include/openssl/evp.h ../include/openssl/hmac.h
539160814Ssimons3_both.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
540160814Ssimons3_both.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
541160814Ssimons3_both.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
542160814Ssimons3_both.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
543160814Ssimons3_both.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
544238405Sjkims3_both.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
545238405Sjkims3_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
546238405Sjkims3_both.o: ../include/openssl/sha.h ../include/openssl/srtp.h
547160814Ssimons3_both.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
548160814Ssimons3_both.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
549160814Ssimons3_both.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
550160814Ssimons3_both.o: ../include/openssl/tls1.h ../include/openssl/x509.h
551160814Ssimons3_both.o: ../include/openssl/x509_vfy.h s3_both.c ssl_locl.h
552273399Sdelphijs3_cbc.o: ../crypto/constant_time_locl.h ../e_os.h ../include/openssl/asn1.h
553273399Sdelphijs3_cbc.o: ../include/openssl/bio.h ../include/openssl/buffer.h
554273399Sdelphijs3_cbc.o: ../include/openssl/comp.h ../include/openssl/crypto.h
555273399Sdelphijs3_cbc.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
556273399Sdelphijs3_cbc.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
557273399Sdelphijs3_cbc.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
558273399Sdelphijs3_cbc.o: ../include/openssl/err.h ../include/openssl/evp.h
559273399Sdelphijs3_cbc.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
560273399Sdelphijs3_cbc.o: ../include/openssl/lhash.h ../include/openssl/md5.h
561273399Sdelphijs3_cbc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
562273399Sdelphijs3_cbc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
563273399Sdelphijs3_cbc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
564273399Sdelphijs3_cbc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
565273399Sdelphijs3_cbc.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
566273399Sdelphijs3_cbc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
567273399Sdelphijs3_cbc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
568273399Sdelphijs3_cbc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
569273399Sdelphijs3_cbc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
570273399Sdelphijs3_cbc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
571273399Sdelphijs3_cbc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_cbc.c
572273399Sdelphijs3_cbc.o: ssl_locl.h
573160814Ssimons3_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
574142425Snectars3_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h
575160814Ssimons3_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h
576160814Ssimons3_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h
577160814Ssimons3_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
578160814Ssimons3_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
579194206Ssimons3_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
580194206Ssimons3_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h
581238405Sjkims3_clnt.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
582238405Sjkims3_clnt.o: ../include/openssl/lhash.h ../include/openssl/md5.h
583238405Sjkims3_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
584238405Sjkims3_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
585238405Sjkims3_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
586238405Sjkims3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
587194206Ssimons3_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
588194206Ssimons3_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
589238405Sjkims3_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
590238405Sjkims3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
591238405Sjkims3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
592238405Sjkims3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
593238405Sjkims3_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
594238405Sjkims3_clnt.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_clnt.c ssl_locl.h
595160814Ssimons3_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
596238405Sjkims3_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
597238405Sjkims3_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
598238405Sjkims3_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
599238405Sjkims3_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
600238405Sjkims3_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
601238405Sjkims3_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
602160814Ssimons3_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
603160814Ssimons3_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
604142425Snectars3_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
605142425Snectars3_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
606142425Snectars3_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
607238405Sjkims3_enc.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
608238405Sjkims3_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
609238405Sjkims3_enc.o: ../include/openssl/sha.h ../include/openssl/srtp.h
610142425Snectars3_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
611142425Snectars3_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
612142425Snectars3_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
613160814Ssimons3_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h
614142425Snectars3_enc.o: ../include/openssl/x509_vfy.h s3_enc.c ssl_locl.h
615238405Sjkims3_lib.o: ../crypto/ec/ec_lcl.h ../e_os.h ../include/openssl/asn1.h
616238405Sjkims3_lib.o: ../include/openssl/bio.h ../include/openssl/bn.h
617238405Sjkims3_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
618238405Sjkims3_lib.o: ../include/openssl/crypto.h ../include/openssl/dh.h
619238405Sjkims3_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
620238405Sjkims3_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
621238405Sjkims3_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
622238405Sjkims3_lib.o: ../include/openssl/err.h ../include/openssl/evp.h
623194206Ssimons3_lib.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
624160814Ssimons3_lib.o: ../include/openssl/lhash.h ../include/openssl/md5.h
625160814Ssimons3_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
626160814Ssimons3_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
627160814Ssimons3_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
628160814Ssimons3_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
629238405Sjkims3_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
630238405Sjkims3_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h
631238405Sjkims3_lib.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
632160814Ssimons3_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
633160814Ssimons3_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
634160814Ssimons3_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
635160814Ssimons3_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h
636160814Ssimons3_lib.o: s3_lib.c ssl_locl.h
637160814Ssimons3_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
638238405Sjkims3_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
639238405Sjkims3_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
640238405Sjkims3_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
641238405Sjkims3_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
642238405Sjkims3_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
643238405Sjkims3_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
644160814Ssimons3_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
645160814Ssimons3_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
646160814Ssimons3_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
647160814Ssimons3_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
648160814Ssimons3_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
649238405Sjkims3_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
650238405Sjkims3_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
651238405Sjkims3_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
652160814Ssimons3_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
653160814Ssimons3_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
654160814Ssimons3_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
655160814Ssimons3_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_meth.c
656160814Ssimons3_meth.o: ssl_locl.h
657160814Ssimons3_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
658238405Sjkims3_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
659238405Sjkims3_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
660238405Sjkims3_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
661238405Sjkims3_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
662238405Sjkims3_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
663238405Sjkims3_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
664160814Ssimons3_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
665160814Ssimons3_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
666160814Ssimons3_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
667160814Ssimons3_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
668160814Ssimons3_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
669238405Sjkims3_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
670160814Ssimons3_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
671238405Sjkims3_pkt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
672238405Sjkims3_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
673238405Sjkims3_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
674238405Sjkims3_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
675238405Sjkims3_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
676238405Sjkims3_pkt.o: ../include/openssl/x509_vfy.h s3_pkt.c ssl_locl.h
677273399Sdelphijs3_srvr.o: ../crypto/constant_time_locl.h ../e_os.h ../include/openssl/asn1.h
678273399Sdelphijs3_srvr.o: ../include/openssl/bio.h ../include/openssl/bn.h
679273399Sdelphijs3_srvr.o: ../include/openssl/buffer.h ../include/openssl/comp.h
680273399Sdelphijs3_srvr.o: ../include/openssl/crypto.h ../include/openssl/dh.h
681273399Sdelphijs3_srvr.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
682273399Sdelphijs3_srvr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
683273399Sdelphijs3_srvr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
684273399Sdelphijs3_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h
685273399Sdelphijs3_srvr.o: ../include/openssl/hmac.h ../include/openssl/krb5_asn.h
686273399Sdelphijs3_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
687273399Sdelphijs3_srvr.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
688273399Sdelphijs3_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
689273399Sdelphijs3_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
690273399Sdelphijs3_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h
691273399Sdelphijs3_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
692273399Sdelphijs3_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h
693273399Sdelphijs3_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
694273399Sdelphijs3_srvr.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
695273399Sdelphijs3_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
696273399Sdelphijs3_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
697273399Sdelphijs3_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
698273399Sdelphijs3_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h
699273399Sdelphijs3_srvr.o: s3_srvr.c ssl_locl.h
700160814Ssimonssl_algs.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
701238405Sjkimssl_algs.o: ../include/openssl/buffer.h ../include/openssl/comp.h
702238405Sjkimssl_algs.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
703238405Sjkimssl_algs.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
704238405Sjkimssl_algs.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
705238405Sjkimssl_algs.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
706238405Sjkimssl_algs.o: ../include/openssl/evp.h ../include/openssl/hmac.h
707160814Ssimonssl_algs.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
708160814Ssimonssl_algs.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
709160814Ssimonssl_algs.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
710160814Ssimonssl_algs.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
711160814Ssimonssl_algs.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
712238405Sjkimssl_algs.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
713238405Sjkimssl_algs.o: ../include/openssl/safestack.h ../include/openssl/sha.h
714238405Sjkimssl_algs.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
715160814Ssimonssl_algs.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
716160814Ssimonssl_algs.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
717160814Ssimonssl_algs.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
718160814Ssimonssl_algs.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_algs.c
719160814Ssimonssl_algs.o: ssl_locl.h
720160814Ssimonssl_asn1.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/asn1_mac.h
721238405Sjkimssl_asn1.o: ../include/openssl/bio.h ../include/openssl/buffer.h
722238405Sjkimssl_asn1.o: ../include/openssl/comp.h ../include/openssl/crypto.h
723238405Sjkimssl_asn1.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
724238405Sjkimssl_asn1.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
725238405Sjkimssl_asn1.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
726238405Sjkimssl_asn1.o: ../include/openssl/err.h ../include/openssl/evp.h
727194206Ssimonssl_asn1.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
728160814Ssimonssl_asn1.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
729160814Ssimonssl_asn1.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
730160814Ssimonssl_asn1.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
731160814Ssimonssl_asn1.o: ../include/openssl/pem.h ../include/openssl/pem2.h
732238405Sjkimssl_asn1.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
733238405Sjkimssl_asn1.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
734238405Sjkimssl_asn1.o: ../include/openssl/sha.h ../include/openssl/srtp.h
735160814Ssimonssl_asn1.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
736160814Ssimonssl_asn1.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
737160814Ssimonssl_asn1.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
738160814Ssimonssl_asn1.o: ../include/openssl/tls1.h ../include/openssl/x509.h
739160814Ssimonssl_asn1.o: ../include/openssl/x509_vfy.h ssl_asn1.c ssl_locl.h
740160814Ssimonssl_cert.o: ../crypto/o_dir.h ../e_os.h ../include/openssl/asn1.h
741160814Ssimonssl_cert.o: ../include/openssl/bio.h ../include/openssl/bn.h
742160814Ssimonssl_cert.o: ../include/openssl/buffer.h ../include/openssl/comp.h
743142425Snectarssl_cert.o: ../include/openssl/conf.h ../include/openssl/crypto.h
744142425Snectarssl_cert.o: ../include/openssl/dh.h ../include/openssl/dsa.h
745160814Ssimonssl_cert.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
746160814Ssimonssl_cert.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
747160814Ssimonssl_cert.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
748238405Sjkimssl_cert.o: ../include/openssl/evp.h ../include/openssl/hmac.h
749238405Sjkimssl_cert.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
750238405Sjkimssl_cert.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
751238405Sjkimssl_cert.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
752238405Sjkimssl_cert.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
753238405Sjkimssl_cert.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
754160814Ssimonssl_cert.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
755142425Snectarssl_cert.o: ../include/openssl/safestack.h ../include/openssl/sha.h
756238405Sjkimssl_cert.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
757238405Sjkimssl_cert.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
758238405Sjkimssl_cert.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
759238405Sjkimssl_cert.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
760238405Sjkimssl_cert.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
761238405Sjkimssl_cert.o: ../include/openssl/x509v3.h ssl_cert.c ssl_locl.h
762160814Ssimonssl_ciph.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
763238405Sjkimssl_ciph.o: ../include/openssl/buffer.h ../include/openssl/comp.h
764238405Sjkimssl_ciph.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
765238405Sjkimssl_ciph.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
766238405Sjkimssl_ciph.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
767238405Sjkimssl_ciph.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
768142425Snectarssl_ciph.o: ../include/openssl/err.h ../include/openssl/evp.h
769238405Sjkimssl_ciph.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
770238405Sjkimssl_ciph.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
771238405Sjkimssl_ciph.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
772238405Sjkimssl_ciph.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
773238405Sjkimssl_ciph.o: ../include/openssl/pem.h ../include/openssl/pem2.h
774238405Sjkimssl_ciph.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
775142425Snectarssl_ciph.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
776238405Sjkimssl_ciph.o: ../include/openssl/sha.h ../include/openssl/srtp.h
777238405Sjkimssl_ciph.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
778238405Sjkimssl_ciph.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
779238405Sjkimssl_ciph.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
780238405Sjkimssl_ciph.o: ../include/openssl/tls1.h ../include/openssl/x509.h
781238405Sjkimssl_ciph.o: ../include/openssl/x509_vfy.h ssl_ciph.c ssl_locl.h
782160814Ssimonssl_err.o: ../include/openssl/asn1.h ../include/openssl/bio.h
783238405Sjkimssl_err.o: ../include/openssl/buffer.h ../include/openssl/comp.h
784238405Sjkimssl_err.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
785238405Sjkimssl_err.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
786238405Sjkimssl_err.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
787238405Sjkimssl_err.o: ../include/openssl/err.h ../include/openssl/evp.h
788194206Ssimonssl_err.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
789160814Ssimonssl_err.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
790142425Snectarssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
791142425Snectarssl_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
792142425Snectarssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h
793238405Sjkimssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
794238405Sjkimssl_err.o: ../include/openssl/safestack.h ../include/openssl/sha.h
795238405Sjkimssl_err.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
796160814Ssimonssl_err.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
797160814Ssimonssl_err.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
798160814Ssimonssl_err.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
799160814Ssimonssl_err.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_err.c
800160814Ssimonssl_err2.o: ../include/openssl/asn1.h ../include/openssl/bio.h
801238405Sjkimssl_err2.o: ../include/openssl/buffer.h ../include/openssl/comp.h
802238405Sjkimssl_err2.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
803238405Sjkimssl_err2.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
804238405Sjkimssl_err2.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
805238405Sjkimssl_err2.o: ../include/openssl/err.h ../include/openssl/evp.h
806194206Ssimonssl_err2.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
807160814Ssimonssl_err2.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
808142425Snectarssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
809142425Snectarssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
810142425Snectarssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h
811238405Sjkimssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
812238405Sjkimssl_err2.o: ../include/openssl/safestack.h ../include/openssl/sha.h
813238405Sjkimssl_err2.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
814160814Ssimonssl_err2.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
815160814Ssimonssl_err2.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
816160814Ssimonssl_err2.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
817160814Ssimonssl_err2.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_err2.c
818160814Ssimonssl_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
819238405Sjkimssl_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
820238405Sjkimssl_lib.o: ../include/openssl/conf.h ../include/openssl/crypto.h
821238405Sjkimssl_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h
822238405Sjkimssl_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
823238405Sjkimssl_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
824238405Sjkimssl_lib.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
825238405Sjkimssl_lib.o: ../include/openssl/err.h ../include/openssl/evp.h
826194206Ssimonssl_lib.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
827194206Ssimonssl_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
828194206Ssimonssl_lib.o: ../include/openssl/objects.h ../include/openssl/ocsp.h
829160814Ssimonssl_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
830160814Ssimonssl_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
831160814Ssimonssl_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
832238405Sjkimssl_lib.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
833238405Sjkimssl_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
834238405Sjkimssl_lib.o: ../include/openssl/sha.h ../include/openssl/srtp.h
835194206Ssimonssl_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
836194206Ssimonssl_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
837194206Ssimonssl_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
838194206Ssimonssl_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
839194206Ssimonssl_lib.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h kssl_lcl.h
840194206Ssimonssl_lib.o: ssl_lib.c ssl_locl.h
841160814Ssimonssl_rsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
842238405Sjkimssl_rsa.o: ../include/openssl/buffer.h ../include/openssl/comp.h
843238405Sjkimssl_rsa.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
844238405Sjkimssl_rsa.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
845238405Sjkimssl_rsa.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
846238405Sjkimssl_rsa.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
847238405Sjkimssl_rsa.o: ../include/openssl/evp.h ../include/openssl/hmac.h
848160814Ssimonssl_rsa.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
849160814Ssimonssl_rsa.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
850160814Ssimonssl_rsa.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
851160814Ssimonssl_rsa.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
852160814Ssimonssl_rsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
853238405Sjkimssl_rsa.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
854238405Sjkimssl_rsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h
855238405Sjkimssl_rsa.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
856160814Ssimonssl_rsa.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
857160814Ssimonssl_rsa.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
858160814Ssimonssl_rsa.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
859160814Ssimonssl_rsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
860160814Ssimonssl_rsa.o: ssl_rsa.c
861160814Ssimonssl_sess.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
862238405Sjkimssl_sess.o: ../include/openssl/buffer.h ../include/openssl/comp.h
863238405Sjkimssl_sess.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
864238405Sjkimssl_sess.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
865238405Sjkimssl_sess.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
866238405Sjkimssl_sess.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
867238405Sjkimssl_sess.o: ../include/openssl/err.h ../include/openssl/evp.h
868194206Ssimonssl_sess.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
869194206Ssimonssl_sess.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
870194206Ssimonssl_sess.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
871194206Ssimonssl_sess.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
872194206Ssimonssl_sess.o: ../include/openssl/pem.h ../include/openssl/pem2.h
873238405Sjkimssl_sess.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
874238405Sjkimssl_sess.o: ../include/openssl/rand.h ../include/openssl/rsa.h
875238405Sjkimssl_sess.o: ../include/openssl/safestack.h ../include/openssl/sha.h
876238405Sjkimssl_sess.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
877194206Ssimonssl_sess.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
878194206Ssimonssl_sess.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
879194206Ssimonssl_sess.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
880194206Ssimonssl_sess.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
881194206Ssimonssl_sess.o: ssl_sess.c
882160814Ssimonssl_stat.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
883238405Sjkimssl_stat.o: ../include/openssl/buffer.h ../include/openssl/comp.h
884238405Sjkimssl_stat.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
885238405Sjkimssl_stat.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
886238405Sjkimssl_stat.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
887238405Sjkimssl_stat.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
888238405Sjkimssl_stat.o: ../include/openssl/evp.h ../include/openssl/hmac.h
889160814Ssimonssl_stat.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
890160814Ssimonssl_stat.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
891160814Ssimonssl_stat.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
892160814Ssimonssl_stat.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
893160814Ssimonssl_stat.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
894238405Sjkimssl_stat.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
895238405Sjkimssl_stat.o: ../include/openssl/safestack.h ../include/openssl/sha.h
896238405Sjkimssl_stat.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
897160814Ssimonssl_stat.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
898160814Ssimonssl_stat.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
899160814Ssimonssl_stat.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
900160814Ssimonssl_stat.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
901160814Ssimonssl_stat.o: ssl_stat.c
902160814Ssimonssl_txt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
903238405Sjkimssl_txt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
904238405Sjkimssl_txt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
905238405Sjkimssl_txt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
906238405Sjkimssl_txt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
907238405Sjkimssl_txt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
908238405Sjkimssl_txt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
909160814Ssimonssl_txt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
910160814Ssimonssl_txt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
911160814Ssimonssl_txt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
912160814Ssimonssl_txt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
913160814Ssimonssl_txt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
914238405Sjkimssl_txt.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
915238405Sjkimssl_txt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
916238405Sjkimssl_txt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
917160814Ssimonssl_txt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
918160814Ssimonssl_txt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
919160814Ssimonssl_txt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
920160814Ssimonssl_txt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
921160814Ssimonssl_txt.o: ssl_txt.c
922269686Sjkimssl_utst.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
923269686Sjkimssl_utst.o: ../include/openssl/buffer.h ../include/openssl/comp.h
924269686Sjkimssl_utst.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
925269686Sjkimssl_utst.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
926269686Sjkimssl_utst.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
927269686Sjkimssl_utst.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
928269686Sjkimssl_utst.o: ../include/openssl/evp.h ../include/openssl/hmac.h
929269686Sjkimssl_utst.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
930269686Sjkimssl_utst.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
931269686Sjkimssl_utst.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
932269686Sjkimssl_utst.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
933269686Sjkimssl_utst.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
934269686Sjkimssl_utst.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
935269686Sjkimssl_utst.o: ../include/openssl/safestack.h ../include/openssl/sha.h
936269686Sjkimssl_utst.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
937269686Sjkimssl_utst.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
938269686Sjkimssl_utst.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
939269686Sjkimssl_utst.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
940269686Sjkimssl_utst.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
941269686Sjkimssl_utst.o: ssl_utst.c
942160814Ssimont1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
943238405Sjkimt1_clnt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
944238405Sjkimt1_clnt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
945238405Sjkimt1_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
946238405Sjkimt1_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
947238405Sjkimt1_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
948238405Sjkimt1_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
949160814Ssimont1_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
950160814Ssimont1_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
951160814Ssimont1_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
952160814Ssimont1_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
953160814Ssimont1_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
954238405Sjkimt1_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
955238405Sjkimt1_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
956238405Sjkimt1_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
957160814Ssimont1_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
958160814Ssimont1_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
959160814Ssimont1_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
960160814Ssimont1_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
961160814Ssimont1_clnt.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_clnt.c
962160814Ssimont1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
963238405Sjkimt1_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
964238405Sjkimt1_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
965238405Sjkimt1_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
966238405Sjkimt1_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
967238405Sjkimt1_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
968238405Sjkimt1_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
969194206Ssimont1_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
970194206Ssimont1_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
971194206Ssimont1_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
972194206Ssimont1_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
973194206Ssimont1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
974238405Sjkimt1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
975238405Sjkimt1_enc.o: ../include/openssl/rand.h ../include/openssl/rsa.h
976194206Ssimont1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
977238405Sjkimt1_enc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
978238405Sjkimt1_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
979238405Sjkimt1_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
980238405Sjkimt1_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
981238405Sjkimt1_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
982238405Sjkimt1_enc.o: t1_enc.c
983160814Ssimont1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
984238405Sjkimt1_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
985238405Sjkimt1_lib.o: ../include/openssl/conf.h ../include/openssl/crypto.h
986238405Sjkimt1_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
987238405Sjkimt1_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
988238405Sjkimt1_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
989238405Sjkimt1_lib.o: ../include/openssl/err.h ../include/openssl/evp.h
990194206Ssimont1_lib.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
991194206Ssimont1_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
992194206Ssimont1_lib.o: ../include/openssl/objects.h ../include/openssl/ocsp.h
993160814Ssimont1_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
994160814Ssimont1_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
995160814Ssimont1_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
996238405Sjkimt1_lib.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
997160814Ssimont1_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
998238405Sjkimt1_lib.o: ../include/openssl/sha.h ../include/openssl/srtp.h
999238405Sjkimt1_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
1000238405Sjkimt1_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
1001238405Sjkimt1_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
1002238405Sjkimt1_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
1003238405Sjkimt1_lib.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssl_locl.h
1004238405Sjkimt1_lib.o: t1_lib.c
1005160814Ssimont1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1006238405Sjkimt1_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
1007238405Sjkimt1_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
1008238405Sjkimt1_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
1009238405Sjkimt1_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
1010238405Sjkimt1_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
1011238405Sjkimt1_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
1012160814Ssimont1_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
1013160814Ssimont1_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
1014160814Ssimont1_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
1015160814Ssimont1_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
1016160814Ssimont1_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
1017238405Sjkimt1_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
1018238405Sjkimt1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
1019238405Sjkimt1_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
1020160814Ssimont1_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
1021160814Ssimont1_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
1022160814Ssimont1_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
1023160814Ssimont1_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
1024160814Ssimont1_meth.o: t1_meth.c
1025205128Ssimont1_reneg.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1026238405Sjkimt1_reneg.o: ../include/openssl/buffer.h ../include/openssl/comp.h
1027238405Sjkimt1_reneg.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
1028238405Sjkimt1_reneg.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
1029238405Sjkimt1_reneg.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
1030238405Sjkimt1_reneg.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
1031238405Sjkimt1_reneg.o: ../include/openssl/evp.h ../include/openssl/hmac.h
1032205128Ssimont1_reneg.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
1033205128Ssimont1_reneg.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
1034205128Ssimont1_reneg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
1035205128Ssimont1_reneg.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
1036205128Ssimont1_reneg.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
1037238405Sjkimt1_reneg.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
1038238405Sjkimt1_reneg.o: ../include/openssl/safestack.h ../include/openssl/sha.h
1039238405Sjkimt1_reneg.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
1040205128Ssimont1_reneg.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
1041205128Ssimont1_reneg.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
1042205128Ssimont1_reneg.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
1043205128Ssimont1_reneg.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
1044205128Ssimont1_reneg.o: t1_reneg.c
1045160814Ssimont1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1046238405Sjkimt1_srvr.o: ../include/openssl/buffer.h ../include/openssl/comp.h
1047238405Sjkimt1_srvr.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
1048238405Sjkimt1_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
1049238405Sjkimt1_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
1050238405Sjkimt1_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
1051238405Sjkimt1_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h
1052160814Ssimont1_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
1053160814Ssimont1_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
1054160814Ssimont1_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
1055160814Ssimont1_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
1056160814Ssimont1_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
1057238405Sjkimt1_srvr.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
1058238405Sjkimt1_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
1059238405Sjkimt1_srvr.o: ../include/openssl/sha.h ../include/openssl/srtp.h
1060160814Ssimont1_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
1061160814Ssimont1_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
1062160814Ssimont1_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
1063160814Ssimont1_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
1064160814Ssimont1_srvr.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_srvr.c
1065238405Sjkimtls_srp.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1066238405Sjkimtls_srp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
1067238405Sjkimtls_srp.o: ../include/openssl/comp.h ../include/openssl/crypto.h
1068238405Sjkimtls_srp.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
1069238405Sjkimtls_srp.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
1070238405Sjkimtls_srp.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
1071238405Sjkimtls_srp.o: ../include/openssl/err.h ../include/openssl/evp.h
1072238405Sjkimtls_srp.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
1073238405Sjkimtls_srp.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
1074238405Sjkimtls_srp.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
1075238405Sjkimtls_srp.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
1076238405Sjkimtls_srp.o: ../include/openssl/pem.h ../include/openssl/pem2.h
1077238405Sjkimtls_srp.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
1078238405Sjkimtls_srp.o: ../include/openssl/rand.h ../include/openssl/rsa.h
1079238405Sjkimtls_srp.o: ../include/openssl/safestack.h ../include/openssl/sha.h
1080238405Sjkimtls_srp.o: ../include/openssl/srp.h ../include/openssl/srtp.h
1081238405Sjkimtls_srp.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
1082238405Sjkimtls_srp.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
1083238405Sjkimtls_srp.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
1084238405Sjkimtls_srp.o: ../include/openssl/tls1.h ../include/openssl/x509.h
1085238405Sjkimtls_srp.o: ../include/openssl/x509_vfy.h ssl_locl.h tls_srp.c
1086