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
18279264SdelphijTEST=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 \
33279264Sdelphij	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 \
44279264Sdelphij	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
92142425Snectardepend:
93160814Ssimon	@if [ -z "$(THIS)" ]; then \
94160814Ssimon	    $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \
95160814Ssimon	else \
96160814Ssimon	    $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC); \
97160814Ssimon	fi
98142425Snectar
99142425Snectardclean:
100142425Snectar	$(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
101142425Snectar	mv -f Makefile.new $(MAKEFILE)
102142425Snectar
103142425Snectarclean:
104142425Snectar	rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
105142425Snectar
106142425Snectar# DO NOT DELETE THIS LINE -- make depend depends on it.
107142425Snectar
108160814Ssimonbio_ssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h
109238405Sjkimbio_ssl.o: ../include/openssl/buffer.h ../include/openssl/comp.h
110238405Sjkimbio_ssl.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
111238405Sjkimbio_ssl.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
112238405Sjkimbio_ssl.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
113238405Sjkimbio_ssl.o: ../include/openssl/err.h ../include/openssl/evp.h
114194206Ssimonbio_ssl.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
115160814Ssimonbio_ssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
116142425Snectarbio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
117142425Snectarbio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
118142425Snectarbio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
119238405Sjkimbio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
120238405Sjkimbio_ssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h
121238405Sjkimbio_ssl.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
122160814Ssimonbio_ssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
123160814Ssimonbio_ssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
124160814Ssimonbio_ssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
125160814Ssimonbio_ssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bio_ssl.c
126160814Ssimond1_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
127238405Sjkimd1_both.o: ../include/openssl/buffer.h ../include/openssl/comp.h
128238405Sjkimd1_both.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
129238405Sjkimd1_both.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
130238405Sjkimd1_both.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
131238405Sjkimd1_both.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
132238405Sjkimd1_both.o: ../include/openssl/evp.h ../include/openssl/hmac.h
133160814Ssimond1_both.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
134160814Ssimond1_both.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
135160814Ssimond1_both.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
136160814Ssimond1_both.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
137160814Ssimond1_both.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
138238405Sjkimd1_both.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
139238405Sjkimd1_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
140238405Sjkimd1_both.o: ../include/openssl/sha.h ../include/openssl/srtp.h
141160814Ssimond1_both.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
142160814Ssimond1_both.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
143160814Ssimond1_both.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
144160814Ssimond1_both.o: ../include/openssl/tls1.h ../include/openssl/x509.h
145160814Ssimond1_both.o: ../include/openssl/x509_vfy.h d1_both.c ssl_locl.h
146160814Ssimond1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
147160814Ssimond1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h
148160814Ssimond1_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h
149160814Ssimond1_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h
150160814Ssimond1_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
151160814Ssimond1_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
152160814Ssimond1_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
153238405Sjkimd1_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
154238405Sjkimd1_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
155238405Sjkimd1_clnt.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
156238405Sjkimd1_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
157238405Sjkimd1_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
158238405Sjkimd1_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h
159238405Sjkimd1_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
160160814Ssimond1_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h
161160814Ssimond1_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
162238405Sjkimd1_clnt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
163238405Sjkimd1_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
164238405Sjkimd1_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
165238405Sjkimd1_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
166238405Sjkimd1_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_clnt.c
167238405Sjkimd1_clnt.o: kssl_lcl.h ssl_locl.h
168160814Ssimond1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
169238405Sjkimd1_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
170238405Sjkimd1_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
171238405Sjkimd1_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
172238405Sjkimd1_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
173238405Sjkimd1_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
174238405Sjkimd1_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
175194206Ssimond1_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
176194206Ssimond1_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
177194206Ssimond1_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
178194206Ssimond1_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
179194206Ssimond1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
180238405Sjkimd1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
181238405Sjkimd1_enc.o: ../include/openssl/rand.h ../include/openssl/rsa.h
182238405Sjkimd1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
183238405Sjkimd1_enc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
184194206Ssimond1_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
185194206Ssimond1_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
186194206Ssimond1_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
187194206Ssimond1_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_enc.c
188194206Ssimond1_enc.o: ssl_locl.h
189160814Ssimond1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
190238405Sjkimd1_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
191238405Sjkimd1_lib.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
192238405Sjkimd1_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
193238405Sjkimd1_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
194238405Sjkimd1_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
195238405Sjkimd1_lib.o: ../include/openssl/evp.h ../include/openssl/hmac.h
196160814Ssimond1_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
197160814Ssimond1_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
198160814Ssimond1_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
199160814Ssimond1_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
200160814Ssimond1_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
201238405Sjkimd1_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
202238405Sjkimd1_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h
203238405Sjkimd1_lib.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
204160814Ssimond1_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
205160814Ssimond1_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
206160814Ssimond1_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
207160814Ssimond1_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_lib.c
208160814Ssimond1_lib.o: ssl_locl.h
209160814Ssimond1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
210238405Sjkimd1_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
211238405Sjkimd1_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
212238405Sjkimd1_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
213238405Sjkimd1_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
214238405Sjkimd1_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
215238405Sjkimd1_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
216160814Ssimond1_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
217160814Ssimond1_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
218160814Ssimond1_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
219160814Ssimond1_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
220160814Ssimond1_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
221238405Sjkimd1_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
222238405Sjkimd1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
223238405Sjkimd1_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
224160814Ssimond1_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
225160814Ssimond1_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
226160814Ssimond1_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
227160814Ssimond1_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_meth.c
228160814Ssimond1_meth.o: ssl_locl.h
229160814Ssimond1_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
230238405Sjkimd1_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
231238405Sjkimd1_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
232238405Sjkimd1_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
233238405Sjkimd1_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
234238405Sjkimd1_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
235238405Sjkimd1_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
236160814Ssimond1_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
237160814Ssimond1_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
238160814Ssimond1_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
239160814Ssimond1_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
240160814Ssimond1_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
241238405Sjkimd1_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
242238405Sjkimd1_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
243238405Sjkimd1_pkt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
244194206Ssimond1_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
245194206Ssimond1_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
246194206Ssimond1_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
247194206Ssimond1_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
248194206Ssimond1_pkt.o: ../include/openssl/x509_vfy.h d1_pkt.c ssl_locl.h
249238405Sjkimd1_srtp.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
250238405Sjkimd1_srtp.o: ../include/openssl/buffer.h ../include/openssl/comp.h
251238405Sjkimd1_srtp.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
252238405Sjkimd1_srtp.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
253238405Sjkimd1_srtp.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
254238405Sjkimd1_srtp.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
255238405Sjkimd1_srtp.o: ../include/openssl/evp.h ../include/openssl/hmac.h
256238405Sjkimd1_srtp.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
257238405Sjkimd1_srtp.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
258238405Sjkimd1_srtp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
259238405Sjkimd1_srtp.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
260238405Sjkimd1_srtp.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
261238405Sjkimd1_srtp.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
262238405Sjkimd1_srtp.o: ../include/openssl/safestack.h ../include/openssl/sha.h
263238405Sjkimd1_srtp.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
264238405Sjkimd1_srtp.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
265238405Sjkimd1_srtp.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
266238405Sjkimd1_srtp.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
267238405Sjkimd1_srtp.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_srtp.c
268238405Sjkimd1_srtp.o: srtp.h ssl_locl.h
269160814Ssimond1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
270160814Ssimond1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h
271160814Ssimond1_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h
272160814Ssimond1_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h
273160814Ssimond1_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
274160814Ssimond1_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
275160814Ssimond1_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
276238405Sjkimd1_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h
277238405Sjkimd1_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
278238405Sjkimd1_srvr.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
279238405Sjkimd1_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
280238405Sjkimd1_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
281238405Sjkimd1_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h
282238405Sjkimd1_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
283160814Ssimond1_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h
284160814Ssimond1_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
285238405Sjkimd1_srvr.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
286238405Sjkimd1_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
287238405Sjkimd1_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
288238405Sjkimd1_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
289238405Sjkimd1_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_srvr.c
290238405Sjkimd1_srvr.o: ssl_locl.h
291160814Ssimonkssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h
292238405Sjkimkssl.o: ../include/openssl/buffer.h ../include/openssl/comp.h
293238405Sjkimkssl.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
294238405Sjkimkssl.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
295238405Sjkimkssl.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
296238405Sjkimkssl.o: ../include/openssl/evp.h ../include/openssl/hmac.h
297142425Snectarkssl.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h
298160814Ssimonkssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
299142425Snectarkssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
300142425Snectarkssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
301142425Snectarkssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h
302238405Sjkimkssl.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
303238405Sjkimkssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h
304238405Sjkimkssl.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
305160814Ssimonkssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
306160814Ssimonkssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
307160814Ssimonkssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
308160814Ssimonkssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl.c
309238405Sjkimkssl.o: kssl_lcl.h
310160814Ssimons23_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
311238405Sjkims23_clnt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
312238405Sjkims23_clnt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
313238405Sjkims23_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
314238405Sjkims23_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
315238405Sjkims23_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
316238405Sjkims23_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
317160814Ssimons23_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
318160814Ssimons23_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
319160814Ssimons23_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
320160814Ssimons23_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
321160814Ssimons23_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
322238405Sjkims23_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
323238405Sjkims23_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
324238405Sjkims23_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
325160814Ssimons23_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
326160814Ssimons23_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
327160814Ssimons23_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
328160814Ssimons23_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
329160814Ssimons23_clnt.o: ../include/openssl/x509_vfy.h s23_clnt.c ssl_locl.h
330160814Ssimons23_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
331238405Sjkims23_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
332238405Sjkims23_lib.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
333238405Sjkims23_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
334238405Sjkims23_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
335238405Sjkims23_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
336238405Sjkims23_lib.o: ../include/openssl/evp.h ../include/openssl/hmac.h
337160814Ssimons23_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
338160814Ssimons23_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
339160814Ssimons23_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
340160814Ssimons23_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
341160814Ssimons23_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
342238405Sjkims23_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
343238405Sjkims23_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h
344238405Sjkims23_lib.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
345160814Ssimons23_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
346160814Ssimons23_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
347160814Ssimons23_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
348160814Ssimons23_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_lib.c
349160814Ssimons23_lib.o: ssl_locl.h
350160814Ssimons23_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
351238405Sjkims23_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
352238405Sjkims23_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
353238405Sjkims23_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
354238405Sjkims23_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
355238405Sjkims23_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
356238405Sjkims23_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
357160814Ssimons23_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
358160814Ssimons23_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
359160814Ssimons23_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
360160814Ssimons23_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
361160814Ssimons23_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
362238405Sjkims23_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
363238405Sjkims23_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
364238405Sjkims23_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
365160814Ssimons23_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
366160814Ssimons23_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
367160814Ssimons23_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
368160814Ssimons23_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_meth.c
369160814Ssimons23_meth.o: ssl_locl.h
370160814Ssimons23_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
371238405Sjkims23_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
372238405Sjkims23_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
373238405Sjkims23_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
374238405Sjkims23_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
375238405Sjkims23_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
376238405Sjkims23_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
377160814Ssimons23_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
378160814Ssimons23_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
379160814Ssimons23_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
380160814Ssimons23_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
381160814Ssimons23_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
382238405Sjkims23_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
383238405Sjkims23_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
384238405Sjkims23_pkt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
385160814Ssimons23_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
386160814Ssimons23_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
387160814Ssimons23_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
388160814Ssimons23_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_pkt.c
389160814Ssimons23_pkt.o: ssl_locl.h
390160814Ssimons23_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
391238405Sjkims23_srvr.o: ../include/openssl/buffer.h ../include/openssl/comp.h
392238405Sjkims23_srvr.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
393238405Sjkims23_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
394238405Sjkims23_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
395238405Sjkims23_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
396238405Sjkims23_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h
397160814Ssimons23_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
398160814Ssimons23_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
399160814Ssimons23_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
400160814Ssimons23_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
401160814Ssimons23_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
402238405Sjkims23_srvr.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
403238405Sjkims23_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
404238405Sjkims23_srvr.o: ../include/openssl/sha.h ../include/openssl/srtp.h
405160814Ssimons23_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
406160814Ssimons23_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
407160814Ssimons23_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
408160814Ssimons23_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
409160814Ssimons23_srvr.o: ../include/openssl/x509_vfy.h s23_srvr.c ssl_locl.h
410160814Ssimons2_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
411238405Sjkims2_clnt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
412238405Sjkims2_clnt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
413238405Sjkims2_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
414238405Sjkims2_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
415238405Sjkims2_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
416238405Sjkims2_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
417160814Ssimons2_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
418160814Ssimons2_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
419160814Ssimons2_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
420160814Ssimons2_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
421160814Ssimons2_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
422238405Sjkims2_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
423238405Sjkims2_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
424238405Sjkims2_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
425160814Ssimons2_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
426160814Ssimons2_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
427160814Ssimons2_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
428160814Ssimons2_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
429160814Ssimons2_clnt.o: ../include/openssl/x509_vfy.h s2_clnt.c ssl_locl.h
430160814Ssimons2_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
431238405Sjkims2_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
432238405Sjkims2_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
433238405Sjkims2_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
434238405Sjkims2_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
435238405Sjkims2_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
436238405Sjkims2_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
437160814Ssimons2_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
438160814Ssimons2_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
439160814Ssimons2_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
440160814Ssimons2_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
441160814Ssimons2_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
442238405Sjkims2_enc.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
443238405Sjkims2_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
444238405Sjkims2_enc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
445160814Ssimons2_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
446160814Ssimons2_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
447160814Ssimons2_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
448160814Ssimons2_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_enc.c
449160814Ssimons2_enc.o: ssl_locl.h
450160814Ssimons2_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
451238405Sjkims2_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
452238405Sjkims2_lib.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
453238405Sjkims2_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
454238405Sjkims2_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
455238405Sjkims2_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
456238405Sjkims2_lib.o: ../include/openssl/evp.h ../include/openssl/hmac.h
457160814Ssimons2_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
458160814Ssimons2_lib.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
459142425Snectars2_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
460142425Snectars2_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
461142425Snectars2_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h
462238405Sjkims2_lib.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
463238405Sjkims2_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
464238405Sjkims2_lib.o: ../include/openssl/sha.h ../include/openssl/srtp.h
465142425Snectars2_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
466142425Snectars2_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
467142425Snectars2_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
468160814Ssimons2_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
469142425Snectars2_lib.o: ../include/openssl/x509_vfy.h s2_lib.c ssl_locl.h
470160814Ssimons2_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
471238405Sjkims2_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
472238405Sjkims2_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
473238405Sjkims2_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
474238405Sjkims2_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
475238405Sjkims2_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
476238405Sjkims2_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
477160814Ssimons2_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
478160814Ssimons2_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
479160814Ssimons2_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
480160814Ssimons2_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
481160814Ssimons2_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
482238405Sjkims2_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
483238405Sjkims2_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
484238405Sjkims2_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
485160814Ssimons2_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
486160814Ssimons2_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
487160814Ssimons2_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
488160814Ssimons2_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_meth.c
489160814Ssimons2_meth.o: ssl_locl.h
490160814Ssimons2_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
491238405Sjkims2_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
492238405Sjkims2_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
493238405Sjkims2_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
494238405Sjkims2_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
495238405Sjkims2_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
496238405Sjkims2_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
497160814Ssimons2_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
498160814Ssimons2_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
499160814Ssimons2_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
500160814Ssimons2_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
501160814Ssimons2_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
502238405Sjkims2_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
503238405Sjkims2_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
504238405Sjkims2_pkt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
505160814Ssimons2_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
506160814Ssimons2_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
507160814Ssimons2_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
508160814Ssimons2_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_pkt.c
509160814Ssimons2_pkt.o: ssl_locl.h
510160814Ssimons2_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
511238405Sjkims2_srvr.o: ../include/openssl/buffer.h ../include/openssl/comp.h
512238405Sjkims2_srvr.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
513238405Sjkims2_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
514238405Sjkims2_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
515238405Sjkims2_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
516238405Sjkims2_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h
517160814Ssimons2_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
518160814Ssimons2_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
519160814Ssimons2_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
520160814Ssimons2_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
521160814Ssimons2_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
522238405Sjkims2_srvr.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
523238405Sjkims2_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
524238405Sjkims2_srvr.o: ../include/openssl/sha.h ../include/openssl/srtp.h
525160814Ssimons2_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
526160814Ssimons2_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
527160814Ssimons2_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
528160814Ssimons2_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
529160814Ssimons2_srvr.o: ../include/openssl/x509_vfy.h s2_srvr.c ssl_locl.h
530160814Ssimons3_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
531238405Sjkims3_both.o: ../include/openssl/buffer.h ../include/openssl/comp.h
532238405Sjkims3_both.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
533238405Sjkims3_both.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
534238405Sjkims3_both.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
535238405Sjkims3_both.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
536238405Sjkims3_both.o: ../include/openssl/evp.h ../include/openssl/hmac.h
537160814Ssimons3_both.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
538160814Ssimons3_both.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
539160814Ssimons3_both.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
540160814Ssimons3_both.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
541160814Ssimons3_both.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
542238405Sjkims3_both.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
543238405Sjkims3_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
544238405Sjkims3_both.o: ../include/openssl/sha.h ../include/openssl/srtp.h
545160814Ssimons3_both.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
546160814Ssimons3_both.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
547160814Ssimons3_both.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
548160814Ssimons3_both.o: ../include/openssl/tls1.h ../include/openssl/x509.h
549160814Ssimons3_both.o: ../include/openssl/x509_vfy.h s3_both.c ssl_locl.h
550279264Sdelphijs3_cbc.o: ../crypto/constant_time_locl.h ../e_os.h ../include/openssl/asn1.h
551279264Sdelphijs3_cbc.o: ../include/openssl/bio.h ../include/openssl/buffer.h
552279264Sdelphijs3_cbc.o: ../include/openssl/comp.h ../include/openssl/crypto.h
553279264Sdelphijs3_cbc.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
554279264Sdelphijs3_cbc.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
555279264Sdelphijs3_cbc.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
556279264Sdelphijs3_cbc.o: ../include/openssl/err.h ../include/openssl/evp.h
557279264Sdelphijs3_cbc.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
558279264Sdelphijs3_cbc.o: ../include/openssl/lhash.h ../include/openssl/md5.h
559279264Sdelphijs3_cbc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
560279264Sdelphijs3_cbc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
561279264Sdelphijs3_cbc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
562279264Sdelphijs3_cbc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
563279264Sdelphijs3_cbc.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
564279264Sdelphijs3_cbc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
565279264Sdelphijs3_cbc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
566279264Sdelphijs3_cbc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
567279264Sdelphijs3_cbc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
568279264Sdelphijs3_cbc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
569279264Sdelphijs3_cbc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_cbc.c
570279264Sdelphijs3_cbc.o: ssl_locl.h
571160814Ssimons3_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
572142425Snectars3_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h
573160814Ssimons3_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h
574160814Ssimons3_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h
575160814Ssimons3_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
576160814Ssimons3_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
577194206Ssimons3_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
578194206Ssimons3_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h
579238405Sjkims3_clnt.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
580238405Sjkims3_clnt.o: ../include/openssl/lhash.h ../include/openssl/md5.h
581238405Sjkims3_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
582238405Sjkims3_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
583238405Sjkims3_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
584238405Sjkims3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
585194206Ssimons3_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
586194206Ssimons3_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
587238405Sjkims3_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
588238405Sjkims3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
589238405Sjkims3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
590238405Sjkims3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
591238405Sjkims3_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
592238405Sjkims3_clnt.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_clnt.c ssl_locl.h
593160814Ssimons3_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
594238405Sjkims3_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
595238405Sjkims3_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
596238405Sjkims3_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
597238405Sjkims3_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
598238405Sjkims3_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
599238405Sjkims3_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
600160814Ssimons3_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
601160814Ssimons3_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
602142425Snectars3_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
603142425Snectars3_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
604142425Snectars3_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
605238405Sjkims3_enc.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
606238405Sjkims3_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
607238405Sjkims3_enc.o: ../include/openssl/sha.h ../include/openssl/srtp.h
608142425Snectars3_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
609142425Snectars3_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
610142425Snectars3_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
611160814Ssimons3_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h
612142425Snectars3_enc.o: ../include/openssl/x509_vfy.h s3_enc.c ssl_locl.h
613238405Sjkims3_lib.o: ../crypto/ec/ec_lcl.h ../e_os.h ../include/openssl/asn1.h
614238405Sjkims3_lib.o: ../include/openssl/bio.h ../include/openssl/bn.h
615238405Sjkims3_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
616238405Sjkims3_lib.o: ../include/openssl/crypto.h ../include/openssl/dh.h
617238405Sjkims3_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
618238405Sjkims3_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
619238405Sjkims3_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
620238405Sjkims3_lib.o: ../include/openssl/err.h ../include/openssl/evp.h
621194206Ssimons3_lib.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
622160814Ssimons3_lib.o: ../include/openssl/lhash.h ../include/openssl/md5.h
623160814Ssimons3_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
624160814Ssimons3_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
625160814Ssimons3_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
626160814Ssimons3_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
627238405Sjkims3_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
628238405Sjkims3_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h
629238405Sjkims3_lib.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
630160814Ssimons3_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
631160814Ssimons3_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
632160814Ssimons3_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
633160814Ssimons3_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h
634160814Ssimons3_lib.o: s3_lib.c ssl_locl.h
635160814Ssimons3_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
636238405Sjkims3_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
637238405Sjkims3_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
638238405Sjkims3_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
639238405Sjkims3_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
640238405Sjkims3_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
641238405Sjkims3_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
642160814Ssimons3_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
643160814Ssimons3_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
644160814Ssimons3_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
645160814Ssimons3_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
646160814Ssimons3_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
647238405Sjkims3_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
648238405Sjkims3_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
649238405Sjkims3_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
650160814Ssimons3_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
651160814Ssimons3_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
652160814Ssimons3_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
653160814Ssimons3_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_meth.c
654160814Ssimons3_meth.o: ssl_locl.h
655160814Ssimons3_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
656238405Sjkims3_pkt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
657238405Sjkims3_pkt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
658238405Sjkims3_pkt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
659238405Sjkims3_pkt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
660238405Sjkims3_pkt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
661238405Sjkims3_pkt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
662160814Ssimons3_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
663160814Ssimons3_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
664160814Ssimons3_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
665160814Ssimons3_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
666160814Ssimons3_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
667238405Sjkims3_pkt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
668160814Ssimons3_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
669238405Sjkims3_pkt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
670238405Sjkims3_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
671238405Sjkims3_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
672238405Sjkims3_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
673238405Sjkims3_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
674238405Sjkims3_pkt.o: ../include/openssl/x509_vfy.h s3_pkt.c ssl_locl.h
675279264Sdelphijs3_srvr.o: ../crypto/constant_time_locl.h ../e_os.h ../include/openssl/asn1.h
676279264Sdelphijs3_srvr.o: ../include/openssl/bio.h ../include/openssl/bn.h
677279264Sdelphijs3_srvr.o: ../include/openssl/buffer.h ../include/openssl/comp.h
678279264Sdelphijs3_srvr.o: ../include/openssl/crypto.h ../include/openssl/dh.h
679279264Sdelphijs3_srvr.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
680279264Sdelphijs3_srvr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
681279264Sdelphijs3_srvr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
682279264Sdelphijs3_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h
683279264Sdelphijs3_srvr.o: ../include/openssl/hmac.h ../include/openssl/krb5_asn.h
684279264Sdelphijs3_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
685279264Sdelphijs3_srvr.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
686279264Sdelphijs3_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
687279264Sdelphijs3_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
688279264Sdelphijs3_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h
689279264Sdelphijs3_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
690279264Sdelphijs3_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h
691279264Sdelphijs3_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h
692279264Sdelphijs3_srvr.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
693279264Sdelphijs3_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
694279264Sdelphijs3_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
695279264Sdelphijs3_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
696279264Sdelphijs3_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h
697279264Sdelphijs3_srvr.o: s3_srvr.c ssl_locl.h
698160814Ssimonssl_algs.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
699238405Sjkimssl_algs.o: ../include/openssl/buffer.h ../include/openssl/comp.h
700238405Sjkimssl_algs.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
701238405Sjkimssl_algs.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
702238405Sjkimssl_algs.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
703238405Sjkimssl_algs.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
704238405Sjkimssl_algs.o: ../include/openssl/evp.h ../include/openssl/hmac.h
705160814Ssimonssl_algs.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
706160814Ssimonssl_algs.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
707160814Ssimonssl_algs.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
708160814Ssimonssl_algs.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
709160814Ssimonssl_algs.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
710238405Sjkimssl_algs.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
711238405Sjkimssl_algs.o: ../include/openssl/safestack.h ../include/openssl/sha.h
712238405Sjkimssl_algs.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
713160814Ssimonssl_algs.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
714160814Ssimonssl_algs.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
715160814Ssimonssl_algs.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
716160814Ssimonssl_algs.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_algs.c
717160814Ssimonssl_algs.o: ssl_locl.h
718160814Ssimonssl_asn1.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/asn1_mac.h
719238405Sjkimssl_asn1.o: ../include/openssl/bio.h ../include/openssl/buffer.h
720238405Sjkimssl_asn1.o: ../include/openssl/comp.h ../include/openssl/crypto.h
721238405Sjkimssl_asn1.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
722238405Sjkimssl_asn1.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
723238405Sjkimssl_asn1.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
724238405Sjkimssl_asn1.o: ../include/openssl/err.h ../include/openssl/evp.h
725194206Ssimonssl_asn1.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
726160814Ssimonssl_asn1.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
727160814Ssimonssl_asn1.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
728160814Ssimonssl_asn1.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
729160814Ssimonssl_asn1.o: ../include/openssl/pem.h ../include/openssl/pem2.h
730238405Sjkimssl_asn1.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
731238405Sjkimssl_asn1.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
732238405Sjkimssl_asn1.o: ../include/openssl/sha.h ../include/openssl/srtp.h
733160814Ssimonssl_asn1.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
734160814Ssimonssl_asn1.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
735160814Ssimonssl_asn1.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
736160814Ssimonssl_asn1.o: ../include/openssl/tls1.h ../include/openssl/x509.h
737160814Ssimonssl_asn1.o: ../include/openssl/x509_vfy.h ssl_asn1.c ssl_locl.h
738160814Ssimonssl_cert.o: ../crypto/o_dir.h ../e_os.h ../include/openssl/asn1.h
739160814Ssimonssl_cert.o: ../include/openssl/bio.h ../include/openssl/bn.h
740160814Ssimonssl_cert.o: ../include/openssl/buffer.h ../include/openssl/comp.h
741142425Snectarssl_cert.o: ../include/openssl/conf.h ../include/openssl/crypto.h
742142425Snectarssl_cert.o: ../include/openssl/dh.h ../include/openssl/dsa.h
743160814Ssimonssl_cert.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
744160814Ssimonssl_cert.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
745160814Ssimonssl_cert.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
746238405Sjkimssl_cert.o: ../include/openssl/evp.h ../include/openssl/hmac.h
747238405Sjkimssl_cert.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
748238405Sjkimssl_cert.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
749238405Sjkimssl_cert.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
750238405Sjkimssl_cert.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
751238405Sjkimssl_cert.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
752160814Ssimonssl_cert.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
753142425Snectarssl_cert.o: ../include/openssl/safestack.h ../include/openssl/sha.h
754238405Sjkimssl_cert.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
755238405Sjkimssl_cert.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
756238405Sjkimssl_cert.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
757238405Sjkimssl_cert.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
758238405Sjkimssl_cert.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h
759238405Sjkimssl_cert.o: ../include/openssl/x509v3.h ssl_cert.c ssl_locl.h
760160814Ssimonssl_ciph.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
761238405Sjkimssl_ciph.o: ../include/openssl/buffer.h ../include/openssl/comp.h
762238405Sjkimssl_ciph.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
763238405Sjkimssl_ciph.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
764238405Sjkimssl_ciph.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
765238405Sjkimssl_ciph.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
766142425Snectarssl_ciph.o: ../include/openssl/err.h ../include/openssl/evp.h
767238405Sjkimssl_ciph.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
768238405Sjkimssl_ciph.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
769238405Sjkimssl_ciph.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
770238405Sjkimssl_ciph.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
771238405Sjkimssl_ciph.o: ../include/openssl/pem.h ../include/openssl/pem2.h
772238405Sjkimssl_ciph.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
773142425Snectarssl_ciph.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
774238405Sjkimssl_ciph.o: ../include/openssl/sha.h ../include/openssl/srtp.h
775238405Sjkimssl_ciph.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
776238405Sjkimssl_ciph.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
777238405Sjkimssl_ciph.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
778238405Sjkimssl_ciph.o: ../include/openssl/tls1.h ../include/openssl/x509.h
779238405Sjkimssl_ciph.o: ../include/openssl/x509_vfy.h ssl_ciph.c ssl_locl.h
780160814Ssimonssl_err.o: ../include/openssl/asn1.h ../include/openssl/bio.h
781238405Sjkimssl_err.o: ../include/openssl/buffer.h ../include/openssl/comp.h
782238405Sjkimssl_err.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
783238405Sjkimssl_err.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
784238405Sjkimssl_err.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
785238405Sjkimssl_err.o: ../include/openssl/err.h ../include/openssl/evp.h
786194206Ssimonssl_err.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
787160814Ssimonssl_err.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
788142425Snectarssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
789142425Snectarssl_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
790142425Snectarssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h
791238405Sjkimssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
792238405Sjkimssl_err.o: ../include/openssl/safestack.h ../include/openssl/sha.h
793238405Sjkimssl_err.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
794160814Ssimonssl_err.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
795160814Ssimonssl_err.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
796160814Ssimonssl_err.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
797160814Ssimonssl_err.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_err.c
798160814Ssimonssl_err2.o: ../include/openssl/asn1.h ../include/openssl/bio.h
799238405Sjkimssl_err2.o: ../include/openssl/buffer.h ../include/openssl/comp.h
800238405Sjkimssl_err2.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h
801238405Sjkimssl_err2.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
802238405Sjkimssl_err2.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
803238405Sjkimssl_err2.o: ../include/openssl/err.h ../include/openssl/evp.h
804194206Ssimonssl_err2.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
805160814Ssimonssl_err2.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
806142425Snectarssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
807142425Snectarssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
808142425Snectarssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h
809238405Sjkimssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
810238405Sjkimssl_err2.o: ../include/openssl/safestack.h ../include/openssl/sha.h
811238405Sjkimssl_err2.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
812160814Ssimonssl_err2.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
813160814Ssimonssl_err2.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
814160814Ssimonssl_err2.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
815160814Ssimonssl_err2.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_err2.c
816160814Ssimonssl_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
817238405Sjkimssl_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
818238405Sjkimssl_lib.o: ../include/openssl/conf.h ../include/openssl/crypto.h
819238405Sjkimssl_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h
820238405Sjkimssl_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
821238405Sjkimssl_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
822238405Sjkimssl_lib.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
823238405Sjkimssl_lib.o: ../include/openssl/err.h ../include/openssl/evp.h
824194206Ssimonssl_lib.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
825194206Ssimonssl_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
826194206Ssimonssl_lib.o: ../include/openssl/objects.h ../include/openssl/ocsp.h
827160814Ssimonssl_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
828160814Ssimonssl_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
829160814Ssimonssl_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
830238405Sjkimssl_lib.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
831238405Sjkimssl_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
832238405Sjkimssl_lib.o: ../include/openssl/sha.h ../include/openssl/srtp.h
833194206Ssimonssl_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
834194206Ssimonssl_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
835194206Ssimonssl_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
836194206Ssimonssl_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
837194206Ssimonssl_lib.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h kssl_lcl.h
838194206Ssimonssl_lib.o: ssl_lib.c ssl_locl.h
839160814Ssimonssl_rsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
840238405Sjkimssl_rsa.o: ../include/openssl/buffer.h ../include/openssl/comp.h
841238405Sjkimssl_rsa.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
842238405Sjkimssl_rsa.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
843238405Sjkimssl_rsa.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
844238405Sjkimssl_rsa.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
845238405Sjkimssl_rsa.o: ../include/openssl/evp.h ../include/openssl/hmac.h
846160814Ssimonssl_rsa.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
847160814Ssimonssl_rsa.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
848160814Ssimonssl_rsa.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
849160814Ssimonssl_rsa.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
850160814Ssimonssl_rsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
851238405Sjkimssl_rsa.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
852238405Sjkimssl_rsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h
853238405Sjkimssl_rsa.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
854160814Ssimonssl_rsa.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
855160814Ssimonssl_rsa.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
856160814Ssimonssl_rsa.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
857160814Ssimonssl_rsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
858160814Ssimonssl_rsa.o: ssl_rsa.c
859160814Ssimonssl_sess.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
860238405Sjkimssl_sess.o: ../include/openssl/buffer.h ../include/openssl/comp.h
861238405Sjkimssl_sess.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
862238405Sjkimssl_sess.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
863238405Sjkimssl_sess.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
864238405Sjkimssl_sess.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h
865238405Sjkimssl_sess.o: ../include/openssl/err.h ../include/openssl/evp.h
866194206Ssimonssl_sess.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
867194206Ssimonssl_sess.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
868194206Ssimonssl_sess.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
869194206Ssimonssl_sess.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
870194206Ssimonssl_sess.o: ../include/openssl/pem.h ../include/openssl/pem2.h
871238405Sjkimssl_sess.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
872238405Sjkimssl_sess.o: ../include/openssl/rand.h ../include/openssl/rsa.h
873238405Sjkimssl_sess.o: ../include/openssl/safestack.h ../include/openssl/sha.h
874238405Sjkimssl_sess.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
875194206Ssimonssl_sess.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
876194206Ssimonssl_sess.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
877194206Ssimonssl_sess.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
878194206Ssimonssl_sess.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
879194206Ssimonssl_sess.o: ssl_sess.c
880160814Ssimonssl_stat.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
881238405Sjkimssl_stat.o: ../include/openssl/buffer.h ../include/openssl/comp.h
882238405Sjkimssl_stat.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
883238405Sjkimssl_stat.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
884238405Sjkimssl_stat.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
885238405Sjkimssl_stat.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
886238405Sjkimssl_stat.o: ../include/openssl/evp.h ../include/openssl/hmac.h
887160814Ssimonssl_stat.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
888160814Ssimonssl_stat.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
889160814Ssimonssl_stat.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
890160814Ssimonssl_stat.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
891160814Ssimonssl_stat.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
892238405Sjkimssl_stat.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
893238405Sjkimssl_stat.o: ../include/openssl/safestack.h ../include/openssl/sha.h
894238405Sjkimssl_stat.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
895160814Ssimonssl_stat.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
896160814Ssimonssl_stat.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
897160814Ssimonssl_stat.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
898160814Ssimonssl_stat.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
899160814Ssimonssl_stat.o: ssl_stat.c
900160814Ssimonssl_txt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
901238405Sjkimssl_txt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
902238405Sjkimssl_txt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
903238405Sjkimssl_txt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
904238405Sjkimssl_txt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
905238405Sjkimssl_txt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
906238405Sjkimssl_txt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
907160814Ssimonssl_txt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
908160814Ssimonssl_txt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
909160814Ssimonssl_txt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
910160814Ssimonssl_txt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
911160814Ssimonssl_txt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
912238405Sjkimssl_txt.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
913238405Sjkimssl_txt.o: ../include/openssl/safestack.h ../include/openssl/sha.h
914238405Sjkimssl_txt.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
915160814Ssimonssl_txt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
916160814Ssimonssl_txt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
917160814Ssimonssl_txt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
918160814Ssimonssl_txt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
919160814Ssimonssl_txt.o: ssl_txt.c
920279264Sdelphijssl_utst.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
921279264Sdelphijssl_utst.o: ../include/openssl/buffer.h ../include/openssl/comp.h
922279264Sdelphijssl_utst.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
923279264Sdelphijssl_utst.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
924279264Sdelphijssl_utst.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
925279264Sdelphijssl_utst.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
926279264Sdelphijssl_utst.o: ../include/openssl/evp.h ../include/openssl/hmac.h
927279264Sdelphijssl_utst.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
928279264Sdelphijssl_utst.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
929279264Sdelphijssl_utst.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
930279264Sdelphijssl_utst.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
931279264Sdelphijssl_utst.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
932279264Sdelphijssl_utst.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
933279264Sdelphijssl_utst.o: ../include/openssl/safestack.h ../include/openssl/sha.h
934279264Sdelphijssl_utst.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
935279264Sdelphijssl_utst.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
936279264Sdelphijssl_utst.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
937279264Sdelphijssl_utst.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
938279264Sdelphijssl_utst.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
939279264Sdelphijssl_utst.o: ssl_utst.c
940160814Ssimont1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
941238405Sjkimt1_clnt.o: ../include/openssl/buffer.h ../include/openssl/comp.h
942238405Sjkimt1_clnt.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
943238405Sjkimt1_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
944238405Sjkimt1_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
945238405Sjkimt1_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
946238405Sjkimt1_clnt.o: ../include/openssl/evp.h ../include/openssl/hmac.h
947160814Ssimont1_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
948160814Ssimont1_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
949160814Ssimont1_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
950160814Ssimont1_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
951160814Ssimont1_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
952238405Sjkimt1_clnt.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
953238405Sjkimt1_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
954238405Sjkimt1_clnt.o: ../include/openssl/sha.h ../include/openssl/srtp.h
955160814Ssimont1_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
956160814Ssimont1_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
957160814Ssimont1_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
958160814Ssimont1_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h
959160814Ssimont1_clnt.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_clnt.c
960160814Ssimont1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
961238405Sjkimt1_enc.o: ../include/openssl/buffer.h ../include/openssl/comp.h
962238405Sjkimt1_enc.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
963238405Sjkimt1_enc.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
964238405Sjkimt1_enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
965238405Sjkimt1_enc.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
966238405Sjkimt1_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h
967194206Ssimont1_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
968194206Ssimont1_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h
969194206Ssimont1_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
970194206Ssimont1_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
971194206Ssimont1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h
972238405Sjkimt1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
973238405Sjkimt1_enc.o: ../include/openssl/rand.h ../include/openssl/rsa.h
974194206Ssimont1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h
975238405Sjkimt1_enc.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
976238405Sjkimt1_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
977238405Sjkimt1_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
978238405Sjkimt1_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
979238405Sjkimt1_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
980238405Sjkimt1_enc.o: t1_enc.c
981160814Ssimont1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
982238405Sjkimt1_lib.o: ../include/openssl/buffer.h ../include/openssl/comp.h
983238405Sjkimt1_lib.o: ../include/openssl/conf.h ../include/openssl/crypto.h
984238405Sjkimt1_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
985238405Sjkimt1_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
986238405Sjkimt1_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
987238405Sjkimt1_lib.o: ../include/openssl/err.h ../include/openssl/evp.h
988194206Ssimont1_lib.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
989194206Ssimont1_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
990194206Ssimont1_lib.o: ../include/openssl/objects.h ../include/openssl/ocsp.h
991160814Ssimont1_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
992160814Ssimont1_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
993160814Ssimont1_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
994238405Sjkimt1_lib.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
995160814Ssimont1_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
996238405Sjkimt1_lib.o: ../include/openssl/sha.h ../include/openssl/srtp.h
997238405Sjkimt1_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
998238405Sjkimt1_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
999238405Sjkimt1_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
1000238405Sjkimt1_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h
1001238405Sjkimt1_lib.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssl_locl.h
1002238405Sjkimt1_lib.o: t1_lib.c
1003160814Ssimont1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1004238405Sjkimt1_meth.o: ../include/openssl/buffer.h ../include/openssl/comp.h
1005238405Sjkimt1_meth.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
1006238405Sjkimt1_meth.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
1007238405Sjkimt1_meth.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
1008238405Sjkimt1_meth.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
1009238405Sjkimt1_meth.o: ../include/openssl/evp.h ../include/openssl/hmac.h
1010160814Ssimont1_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
1011160814Ssimont1_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
1012160814Ssimont1_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
1013160814Ssimont1_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
1014160814Ssimont1_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
1015238405Sjkimt1_meth.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
1016238405Sjkimt1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h
1017238405Sjkimt1_meth.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
1018160814Ssimont1_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
1019160814Ssimont1_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
1020160814Ssimont1_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
1021160814Ssimont1_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
1022160814Ssimont1_meth.o: t1_meth.c
1023205128Ssimont1_reneg.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1024238405Sjkimt1_reneg.o: ../include/openssl/buffer.h ../include/openssl/comp.h
1025238405Sjkimt1_reneg.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
1026238405Sjkimt1_reneg.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
1027238405Sjkimt1_reneg.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
1028238405Sjkimt1_reneg.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
1029238405Sjkimt1_reneg.o: ../include/openssl/evp.h ../include/openssl/hmac.h
1030205128Ssimont1_reneg.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
1031205128Ssimont1_reneg.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
1032205128Ssimont1_reneg.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
1033205128Ssimont1_reneg.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
1034205128Ssimont1_reneg.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
1035238405Sjkimt1_reneg.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h
1036238405Sjkimt1_reneg.o: ../include/openssl/safestack.h ../include/openssl/sha.h
1037238405Sjkimt1_reneg.o: ../include/openssl/srtp.h ../include/openssl/ssl.h
1038205128Ssimont1_reneg.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h
1039205128Ssimont1_reneg.o: ../include/openssl/ssl3.h ../include/openssl/stack.h
1040205128Ssimont1_reneg.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h
1041205128Ssimont1_reneg.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h
1042205128Ssimont1_reneg.o: t1_reneg.c
1043160814Ssimont1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1044238405Sjkimt1_srvr.o: ../include/openssl/buffer.h ../include/openssl/comp.h
1045238405Sjkimt1_srvr.o: ../include/openssl/crypto.h ../include/openssl/dsa.h
1046238405Sjkimt1_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h
1047238405Sjkimt1_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h
1048238405Sjkimt1_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h
1049238405Sjkimt1_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h
1050160814Ssimont1_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h
1051160814Ssimont1_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h
1052160814Ssimont1_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h
1053160814Ssimont1_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h
1054160814Ssimont1_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h
1055238405Sjkimt1_srvr.o: ../include/openssl/pqueue.h ../include/openssl/rand.h
1056238405Sjkimt1_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h
1057238405Sjkimt1_srvr.o: ../include/openssl/sha.h ../include/openssl/srtp.h
1058160814Ssimont1_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
1059160814Ssimont1_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
1060160814Ssimont1_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
1061160814Ssimont1_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h
1062160814Ssimont1_srvr.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_srvr.c
1063238405Sjkimtls_srp.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
1064238405Sjkimtls_srp.o: ../include/openssl/bn.h ../include/openssl/buffer.h
1065238405Sjkimtls_srp.o: ../include/openssl/comp.h ../include/openssl/crypto.h
1066238405Sjkimtls_srp.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h
1067238405Sjkimtls_srp.o: ../include/openssl/e_os2.h ../include/openssl/ec.h
1068238405Sjkimtls_srp.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h
1069238405Sjkimtls_srp.o: ../include/openssl/err.h ../include/openssl/evp.h
1070238405Sjkimtls_srp.o: ../include/openssl/hmac.h ../include/openssl/kssl.h
1071238405Sjkimtls_srp.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h
1072238405Sjkimtls_srp.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h
1073238405Sjkimtls_srp.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h
1074238405Sjkimtls_srp.o: ../include/openssl/pem.h ../include/openssl/pem2.h
1075238405Sjkimtls_srp.o: ../include/openssl/pkcs7.h ../include/openssl/pqueue.h
1076238405Sjkimtls_srp.o: ../include/openssl/rand.h ../include/openssl/rsa.h
1077238405Sjkimtls_srp.o: ../include/openssl/safestack.h ../include/openssl/sha.h
1078238405Sjkimtls_srp.o: ../include/openssl/srp.h ../include/openssl/srtp.h
1079238405Sjkimtls_srp.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h
1080238405Sjkimtls_srp.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h
1081238405Sjkimtls_srp.o: ../include/openssl/stack.h ../include/openssl/symhacks.h
1082238405Sjkimtls_srp.o: ../include/openssl/tls1.h ../include/openssl/x509.h
1083238405Sjkimtls_srp.o: ../include/openssl/x509_vfy.h ssl_locl.h tls_srp.c
1084