summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/asn1')
-rw-r--r--src/lib/libcrypto/asn1/Makefile.ssl862
-rw-r--r--src/lib/libcrypto/asn1/f.c4
-rw-r--r--src/lib/libcrypto/asn1/x_cinf.c72
3 files changed, 854 insertions, 84 deletions
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl
index 30751bd156..09d4cb4896 100644
--- a/src/lib/libcrypto/asn1/Makefile.ssl
+++ b/src/lib/libcrypto/asn1/Makefile.ssl
@@ -5,57 +5,52 @@
5DIR= asn1 5DIR= asn1
6TOP= ../.. 6TOP= ../..
7CC= cc 7CC= cc
8INCLUDES= -I.. -I../../include 8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g 9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
10INSTALLTOP=/usr/local/ssl 12INSTALLTOP=/usr/local/ssl
11MAKE= make -f Makefile.ssl 13MAKE= make -f Makefile.ssl
12MAKEDEPEND= makedepend -f Makefile.ssl 14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
13MAKEFILE= Makefile.ssl 16MAKEFILE= Makefile.ssl
14AR= ar r 17AR= ar r
15 18
16CFLAGS= $(INCLUDES) $(CFLAG) 19CFLAGS= $(INCLUDES) $(CFLAG)
17 20
18ERR=asn1
19ERRC=asn1_err
20GENERAL=Makefile README 21GENERAL=Makefile README
21TEST= 22TEST=
22APPS= 23APPS=
23 24
24LIB=$(TOP)/libcrypto.a 25LIB=$(TOP)/libcrypto.a
25LIBSRC= a_object.c a_bitstr.c a_utctm.c a_int.c a_octet.c a_print.c \ 26LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \
26 a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ 27 a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \
27 a_sign.c a_digest.c a_verify.c \ 28 a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \
28 x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c \ 29 x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \
29 x_name.c x_cinf.c x_x509.c x_crl.c x_info.c x_spki.c \ 30 x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \
30 d2i_r_pr.c i2d_r_pr.c d2i_r_pu.c i2d_r_pu.c \
31 d2i_s_pr.c i2d_s_pr.c d2i_s_pu.c i2d_s_pu.c \
32 d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ 31 d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\
33 t_req.c t_x509.c t_pkey.c \ 32 t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \
34 p7_i_s.c p7_signi.c p7_signd.c p7_recip.c p7_enc_c.c p7_evp.c \ 33 tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \
35 p7_dgst.c p7_s_e.c p7_enc.c p7_lib.c \ 34 f_int.c f_string.c n_pkey.c \
36 f_int.c f_string.c i2d_dhp.c i2d_dsap.c d2i_dhp.c d2i_dsap.c n_pkey.c \ 35 f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \
37 a_hdr.c x_pkey.c a_bool.c x_exten.c \ 36 asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \
38 asn1_par.c asn1_lib.c $(ERRC).c a_meth.c a_bytes.c \ 37 evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
39 evp_asn1.c 38LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \
40LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_int.o a_octet.o a_print.o \ 39 a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \
41 a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ 40 a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \
42 a_sign.o a_digest.o a_verify.o \ 41 x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \
43 x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o \ 42 x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \
44 x_name.o x_cinf.o x_x509.o x_crl.o x_info.o x_spki.o \
45 d2i_r_pr.o i2d_r_pr.o d2i_r_pu.o i2d_r_pu.o \
46 d2i_s_pr.o i2d_s_pr.o d2i_s_pu.o i2d_s_pu.o \
47 d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ 43 d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \
48 t_req.o t_x509.o t_pkey.o \ 44 t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \
49 p7_i_s.o p7_signi.o p7_signd.o p7_recip.o p7_enc_c.o p7_evp.o \ 45 tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \
50 p7_dgst.o p7_s_e.o p7_enc.o p7_lib.o \ 46 f_int.o f_string.o n_pkey.o \
51 f_int.o f_string.o i2d_dhp.o i2d_dsap.o d2i_dhp.o d2i_dsap.o n_pkey.o \ 47 f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \
52 a_hdr.o x_pkey.o a_bool.o x_exten.o \ 48 asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \
53 asn1_par.o asn1_lib.o $(ERRC).o a_meth.o a_bytes.o \ 49 evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o
54 evp_asn1.o
55 50
56SRC= $(LIBSRC) 51SRC= $(LIBSRC)
57 52
58EXHEADER= asn1.h asn1_mac.h 53EXHEADER= asn1.h asn1_mac.h asn1t.h
59HEADER= $(EXHEADER) 54HEADER= $(EXHEADER)
60 55
61ALL= $(GENERAL) $(SRC) $(HEADER) 56ALL= $(GENERAL) $(SRC) $(HEADER)
@@ -75,24 +70,23 @@ all: lib
75 70
76lib: $(LIBOBJ) 71lib: $(LIBOBJ)
77 $(AR) $(LIB) $(LIBOBJ) 72 $(AR) $(LIB) $(LIBOBJ)
78 sh $(TOP)/util/ranlib.sh $(LIB) 73 $(RANLIB) $(LIB) || echo Never mind.
79 @touch lib 74 @touch lib
80 75
81files: 76files:
82 perl $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO 77 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
83 78
84links: 79links:
85 /bin/rm -f Makefile 80 @$(TOP)/util/point.sh Makefile.ssl Makefile
86 $(TOP)/util/point.sh Makefile.ssl Makefile ; 81 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
87 $(TOP)/util/mklink.sh ../../include $(EXHEADER) 82 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
88 $(TOP)/util/mklink.sh ../../test $(TEST) 83 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
89 $(TOP)/util/mklink.sh ../../apps $(APPS)
90 84
91install: 85install:
92 @for i in $(EXHEADER) ; \ 86 @for i in $(EXHEADER) ; \
93 do \ 87 do \
94 (cp $$i $(INSTALLTOP)/include/$$i; \ 88 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
95 chmod 644 $(INSTALLTOP)/include/$$i ); \ 89 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
96 done; 90 done;
97 91
98tags: 92tags:
@@ -104,17 +98,789 @@ lint:
104 lint -DLINT $(INCLUDES) $(SRC)>fluff 98 lint -DLINT $(INCLUDES) $(SRC)>fluff
105 99
106depend: 100depend:
107 $(MAKEDEPEND) $(INCLUDES) $(PROGS) $(LIBSRC) 101 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
108 102
109dclean: 103dclean:
110 perl -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new 104 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
111 mv -f Makefile.new $(MAKEFILE) 105 mv -f Makefile.new $(MAKEFILE)
112 106
113clean: 107clean:
114 /bin/rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff 108 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
115 109
116errors:
117 perl $(TOP)/util/err-ins.pl $(ERR).err $(ERR).h
118 perl ../err/err_genc.pl -s $(ERR).h $(ERRC).c
119 110
120# DO NOT DELETE THIS LINE -- make depend depends on it. 111# DO NOT DELETE THIS LINE -- make depend depends on it.
112
113a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h
114a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
115a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
116a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
117a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
118a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
119a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
120a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c
121a_bool.o: ../../e_os.h ../../include/openssl/asn1.h
122a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
123a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
124a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
125a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
126a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
127a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
128a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
129a_bool.o: ../cryptlib.h a_bool.c
130a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h
131a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
132a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
133a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
134a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
135a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
136a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
137a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c
138a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h
139a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
140a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
141a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
142a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
143a_d2i_fp.o: ../../include/openssl/opensslconf.h
144a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
145a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
146a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c
147a_digest.o: ../../e_os.h ../../include/openssl/asn1.h
148a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
149a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
150a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
151a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
152a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
153a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
154a_digest.o: ../../include/openssl/opensslconf.h
155a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
156a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
157a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
158a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
159a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
160a_digest.o: ../cryptlib.h a_digest.c
161a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
162a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
163a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
164a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
165a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
166a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
167a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
168a_dup.o: ../cryptlib.h a_dup.c
169a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
170a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
171a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
172a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
173a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
174a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
175a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
176a_enum.o: ../cryptlib.h a_enum.c
177a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h
178a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
179a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
180a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
181a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
182a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
183a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
184a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c
185a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h
186a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
187a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
188a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
189a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
190a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
191a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
192a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193a_hdr.o: ../cryptlib.h a_hdr.c
194a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h
195a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
196a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
197a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
198a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
199a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
200a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
201a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c
202a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
203a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
204a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
205a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
206a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
207a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
208a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
209a_int.o: ../cryptlib.h a_int.c
210a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h
211a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
212a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
213a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
214a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
215a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
216a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
217a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c
218a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
219a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
220a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
221a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
222a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
223a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
224a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
225a_meth.o: ../cryptlib.h a_meth.c
226a_object.o: ../../e_os.h ../../include/openssl/asn1.h
227a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
228a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
229a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
230a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
231a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
232a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
233a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
234a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c
235a_octet.o: ../../e_os.h ../../include/openssl/asn1.h
236a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
237a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
238a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
239a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
240a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
241a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
242a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c
243a_print.o: ../../e_os.h ../../include/openssl/asn1.h
244a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
245a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
246a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
247a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
248a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
249a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
250a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c
251a_set.o: ../../e_os.h ../../include/openssl/asn1.h
252a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
253a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
254a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
255a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
256a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
257a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
258a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
259a_set.o: ../cryptlib.h a_set.c
260a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
261a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
262a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
263a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
264a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
265a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
266a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
267a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
268a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
269a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
270a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
271a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
272a_sign.o: ../cryptlib.h a_sign.c
273a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
274a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
275a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
276a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
277a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
278a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
279a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
280a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
281a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
282a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
283a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
284a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h
285a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h
286a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
287a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
288a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
289a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
290a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
291a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
292a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
293a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c
294a_time.o: ../../e_os.h ../../include/openssl/asn1.h
295a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
296a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
297a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
298a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
299a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
300a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
301a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
302a_time.o: ../cryptlib.h ../o_time.h a_time.c
303a_type.o: ../../e_os.h ../../include/openssl/asn1.h
304a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
305a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
306a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
307a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
308a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
309a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
310a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
311a_type.o: ../cryptlib.h a_type.c
312a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h
313a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
314a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
315a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
316a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
317a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
318a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
319a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c
320a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
321a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
322a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
323a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
324a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
325a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
326a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
327a_utf8.o: ../cryptlib.h a_utf8.c
328a_verify.o: ../../e_os.h ../../include/openssl/asn1.h
329a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
330a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
331a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
332a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
333a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
334a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
335a_verify.o: ../../include/openssl/opensslconf.h
336a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
337a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
338a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
339a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
340a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
341a_verify.o: ../cryptlib.h a_verify.c
342asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
343asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
344asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
345asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
346asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
347asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
348asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c
349asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h
350asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
351asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
352asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
353asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
354asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
355asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
356asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c
357asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h
358asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
359asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
360asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
361asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
362asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
363asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
364asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
365asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c
366asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h
367asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
368asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
369asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
370asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
371asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
372asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
373asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
374asn_moid.o: ../../include/openssl/opensslconf.h
375asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
376asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
377asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
378asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
379asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
380asn_moid.o: ../cryptlib.h asn_moid.c
381asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h
382asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
383asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
384asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
385asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
386asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
387asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
388asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c
389d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
390d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
391d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
392d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
393d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
394d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
395d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
396d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
397d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
398d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
399d2i_pr.o: ../cryptlib.h d2i_pr.c
400d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
401d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
402d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
403d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
404d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
405d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
406d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
407d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
408d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
409d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
410d2i_pu.o: ../cryptlib.h d2i_pu.c
411evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
412evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
413evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
414evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
415evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
416evp_asn1.o: ../../include/openssl/opensslconf.h
417evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
418evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
419evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c
420f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
421f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
422f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
423f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
424f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
425f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
426f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
427f_enum.o: ../cryptlib.h f_enum.c
428f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
429f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
430f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
431f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
432f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
433f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
434f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
435f_int.o: ../cryptlib.h f_int.c
436f_string.o: ../../e_os.h ../../include/openssl/asn1.h
437f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
438f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
439f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
440f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
441f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
442f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
443f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c
444i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
445i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
446i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
447i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
448i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
449i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
450i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
451i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
452i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
453i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
454i2d_pr.o: ../cryptlib.h i2d_pr.c
455i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
456i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
457i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
458i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
459i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
460i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
461i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
462i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
463i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
464i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
465i2d_pu.o: ../cryptlib.h i2d_pu.c
466n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
467n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h
468n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
469n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
470n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
471n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
472n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
473n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
474n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
475n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
476n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
477n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
478n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
479n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c
480nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
481nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
482nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
483nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
484nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
485nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
486nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
487nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
488nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
489nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
490nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
491nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c
492p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
493p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
494p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
495p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
496p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
497p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h
498p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
499p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
500p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
501p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
502p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
503p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
504p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
505p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c
506p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h
507p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
508p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
509p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
510p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
511p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
512p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
513p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
514p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
515p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
516p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
517p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
518p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
519p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c
520p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
521p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
522p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
523p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
524p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
525p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
526p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
527p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
528p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
529p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
530p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
531p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
532p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
533p8_pkey.o: ../cryptlib.h p8_pkey.c
534t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h
535t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
536t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
537t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
538t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
539t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h
540t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
541t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
542t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
543t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
544t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
545t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
546t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
547t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c
548t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
549t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
550t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
551t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
552t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
553t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
554t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
555t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
556t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
557t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
558t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
559t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
560t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
561t_crl.o: ../cryptlib.h t_crl.c
562t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
563t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
564t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
565t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
566t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
567t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
568t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h
569t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
570t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c
571t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
572t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
573t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
574t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
575t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
576t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
577t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
578t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
579t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
580t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
581t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
582t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
583t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
584t_req.o: ../cryptlib.h t_req.c
585t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
586t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
587t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
588t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
589t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
590t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
591t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
592t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
593t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
594t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
595t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
596t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
597t_spki.o: ../cryptlib.h t_spki.c
598t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
599t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
600t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
601t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
602t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
603t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
604t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
605t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
606t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
607t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
608t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
609t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
610t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
611t_x509.o: ../cryptlib.h t_x509.c
612t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
613t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
614t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
615t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
616t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
617t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
618t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
619t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
620t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
621t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
622t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
623t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
624t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c
625tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
626tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
627tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
628tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
629tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
630tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
631tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
632tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
633tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c
634tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
635tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
636tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
637tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
638tasn_enc.o: ../../include/openssl/opensslconf.h
639tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
640tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
641tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c
642tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
643tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
644tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
645tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
646tasn_fre.o: ../../include/openssl/opensslconf.h
647tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
648tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
649tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c
650tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
651tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
652tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
653tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
654tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
655tasn_new.o: ../../include/openssl/opensslconf.h
656tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
657tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
658tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c
659tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
660tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
661tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
662tasn_typ.o: ../../include/openssl/opensslconf.h
663tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
664tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
665tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c
666tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
667tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
668tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
669tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
670tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
671tasn_utl.o: ../../include/openssl/opensslconf.h
672tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
673tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
674tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c
675x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
676x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
677x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
678x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
679x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
680x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
681x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
682x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
683x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
684x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
685x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
686x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
687x_algor.o: x_algor.c
688x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h
689x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
690x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
691x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
692x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
693x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
694x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
695x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
696x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
697x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
698x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
699x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
700x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
701x_attrib.o: ../cryptlib.h x_attrib.c
702x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h
703x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
704x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
705x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
706x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
707x_bignum.o: ../../include/openssl/opensslconf.h
708x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
709x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
710x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c
711x_crl.o: ../../e_os.h ../../include/openssl/asn1.h
712x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
713x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
714x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
715x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
716x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
717x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
718x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
719x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
720x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
721x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
722x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
723x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
724x_crl.o: ../cryptlib.h x_crl.c
725x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
726x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
727x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
728x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
729x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
730x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
731x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
732x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
733x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
734x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
735x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
736x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
737x_exten.o: x_exten.c
738x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
739x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
740x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
741x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
742x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
743x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
744x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
745x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
746x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
747x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
748x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
749x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
750x_info.o: ../cryptlib.h x_info.c
751x_long.o: ../../e_os.h ../../include/openssl/asn1.h
752x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
753x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
754x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
755x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
756x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
757x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
758x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
759x_long.o: ../cryptlib.h x_long.c
760x_name.o: ../../e_os.h ../../include/openssl/asn1.h
761x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
762x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
763x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
764x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
765x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h
766x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
767x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
768x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
769x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
770x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
771x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
772x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
773x_name.o: ../cryptlib.h x_name.c
774x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
775x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
776x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
777x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
778x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
779x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
780x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
781x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
782x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
783x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
784x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
785x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
786x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
787x_pkey.o: ../cryptlib.h x_pkey.c
788x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h
789x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
790x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
791x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
792x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
793x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
794x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
795x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
796x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
797x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
798x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
799x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
800x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
801x_pubkey.o: ../cryptlib.h x_pubkey.c
802x_req.o: ../../e_os.h ../../include/openssl/asn1.h
803x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
804x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
805x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
806x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
807x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h
808x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
809x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
810x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
811x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
812x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
813x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
814x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
815x_req.o: ../cryptlib.h x_req.c
816x_sig.o: ../../e_os.h ../../include/openssl/asn1.h
817x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
818x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
819x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
820x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
821x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h
822x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
823x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
824x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
825x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
826x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
827x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
828x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
829x_sig.o: ../cryptlib.h x_sig.c
830x_spki.o: ../../e_os.h ../../include/openssl/asn1.h
831x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
832x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
833x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
834x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
835x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
836x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
837x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
838x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
839x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
840x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
841x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
842x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
843x_spki.o: ../cryptlib.h x_spki.c
844x_val.o: ../../e_os.h ../../include/openssl/asn1.h
845x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
846x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
847x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
848x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
849x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h
850x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
851x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
852x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
853x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
854x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
855x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
856x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
857x_val.o: ../cryptlib.h x_val.c
858x_x509.o: ../../e_os.h ../../include/openssl/asn1.h
859x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
860x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
861x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
862x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
863x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
864x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
865x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
866x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
867x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
868x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
869x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
870x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
871x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
872x_x509.o: ../cryptlib.h x_x509.c
873x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
874x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
875x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
876x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
877x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
878x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h
879x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
880x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
881x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
882x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
883x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
884x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
885x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
886x_x509a.o: ../cryptlib.h x_x509a.c
diff --git a/src/lib/libcrypto/asn1/f.c b/src/lib/libcrypto/asn1/f.c
index 2ab3a262ac..82bccdfd51 100644
--- a/src/lib/libcrypto/asn1/f.c
+++ b/src/lib/libcrypto/asn1/f.c
@@ -56,8 +56,8 @@
56 * [including the GNU Public Licence.] 56 * [including the GNU Public Licence.]
57 */ 57 */
58#include <stdio.h> 58#include <stdio.h>
59#include "asn1.h" 59#include <openssl/asn1.h>
60#include "err.h" 60#include <openssl/err.h>
61 61
62main() 62main()
63 { 63 {
diff --git a/src/lib/libcrypto/asn1/x_cinf.c b/src/lib/libcrypto/asn1/x_cinf.c
index 4fc2cc9f6e..339a110eef 100644
--- a/src/lib/libcrypto/asn1/x_cinf.c
+++ b/src/lib/libcrypto/asn1/x_cinf.c
@@ -58,16 +58,10 @@
58 58
59#include <stdio.h> 59#include <stdio.h>
60#include "cryptlib.h" 60#include "cryptlib.h"
61#include "asn1_mac.h" 61#include <openssl/asn1_mac.h>
62#include <openssl/x509.h>
62 63
63/* 64int i2d_X509_CINF(X509_CINF *a, unsigned char **pp)
64 * ASN1err(ASN1_F_D2I_X509_CINF,ASN1_R_LENGTH_MISMATCH);
65 * ASN1err(ASN1_F_X509_CINF_NEW,ASN1_R_LENGTH_MISMATCH);
66 */
67
68int i2d_X509_CINF(a,pp)
69X509_CINF *a;
70unsigned char **pp;
71 { 65 {
72 int v1=0,v2=0; 66 int v1=0,v2=0;
73 M_ASN1_I2D_vars(a); 67 M_ASN1_I2D_vars(a);
@@ -81,7 +75,9 @@ unsigned char **pp;
81 M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); 75 M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY);
82 M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); 76 M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING);
83 M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); 77 M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING);
84 M_ASN1_I2D_len_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); 78 M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions,
79 i2d_X509_EXTENSION,3,
80 V_ASN1_SEQUENCE,v2);
85 81
86 M_ASN1_I2D_seq_total(); 82 M_ASN1_I2D_seq_total();
87 83
@@ -94,15 +90,14 @@ unsigned char **pp;
94 M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); 90 M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY);
95 M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); 91 M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1);
96 M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); 92 M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2);
97 M_ASN1_I2D_put_EXP_set_opt(a->extensions,i2d_X509_EXTENSION,3,V_ASN1_SEQUENCE,v2); 93 M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions,
94 i2d_X509_EXTENSION,3,
95 V_ASN1_SEQUENCE,v2);
98 96
99 M_ASN1_I2D_finish(); 97 M_ASN1_I2D_finish();
100 } 98 }
101 99
102X509_CINF *d2i_X509_CINF(a,pp,length) 100X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length)
103X509_CINF **a;
104unsigned char **pp;
105long length;
106 { 101 {
107 int ver=0; 102 int ver=0;
108 M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); 103 M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new);
@@ -120,7 +115,7 @@ long length;
120 { 115 {
121 if (ret->version != NULL) 116 if (ret->version != NULL)
122 { 117 {
123 ASN1_INTEGER_free(ret->version); 118 M_ASN1_INTEGER_free(ret->version);
124 ret->version=NULL; 119 ret->version=NULL;
125 } 120 }
126 } 121 }
@@ -134,38 +129,48 @@ long length;
134 { 129 {
135 if (ret->issuerUID != NULL) 130 if (ret->issuerUID != NULL)
136 { 131 {
137 ASN1_BIT_STRING_free(ret->issuerUID); 132 M_ASN1_BIT_STRING_free(ret->issuerUID);
138 ret->issuerUID=NULL; 133 ret->issuerUID=NULL;
139 } 134 }
140 if (ret->subjectUID != NULL) 135 if (ret->subjectUID != NULL)
141 { 136 {
142 ASN1_BIT_STRING_free(ret->subjectUID); 137 M_ASN1_BIT_STRING_free(ret->subjectUID);
143 ret->issuerUID=NULL; 138 ret->subjectUID=NULL;
144 } 139 }
145 M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, 140 M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1,
146 V_ASN1_BIT_STRING); 141 V_ASN1_BIT_STRING);
147 M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, 142 M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2,
148 V_ASN1_BIT_STRING); 143 V_ASN1_BIT_STRING);
149 } 144 }
145/* Note: some broken certificates include extensions but don't set
146 * the version number properly. By bypassing this check they can
147 * be parsed.
148 */
149
150#ifdef VERSION_EXT_CHECK
150 if (ver >= 2) /* version 3 extensions */ 151 if (ver >= 2) /* version 3 extensions */
152#endif
151 { 153 {
152 if (ret->extensions != NULL) 154 if (ret->extensions != NULL)
153 while (sk_num(ret->extensions)) 155 while (sk_X509_EXTENSION_num(ret->extensions))
154 X509_EXTENSION_free((X509_EXTENSION *) 156 X509_EXTENSION_free(
155 sk_pop(ret->extensions)); 157 sk_X509_EXTENSION_pop(ret->extensions));
156 M_ASN1_D2I_get_EXP_set_opt(ret->extensions,d2i_X509_EXTENSION,3, 158 M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions,
157 V_ASN1_SEQUENCE); 159 d2i_X509_EXTENSION,
160 X509_EXTENSION_free,3,
161 V_ASN1_SEQUENCE);
158 } 162 }
159 M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); 163 M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF);
160 } 164 }
161 165
162X509_CINF *X509_CINF_new() 166X509_CINF *X509_CINF_new(void)
163 { 167 {
164 X509_CINF *ret=NULL; 168 X509_CINF *ret=NULL;
169 ASN1_CTX c;
165 170
166 M_ASN1_New_Malloc(ret,X509_CINF); 171 M_ASN1_New_Malloc(ret,X509_CINF);
167 ret->version=NULL; 172 ret->version=NULL;
168 M_ASN1_New(ret->serialNumber,ASN1_INTEGER_new); 173 M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new);
169 M_ASN1_New(ret->signature,X509_ALGOR_new); 174 M_ASN1_New(ret->signature,X509_ALGOR_new);
170 M_ASN1_New(ret->issuer,X509_NAME_new); 175 M_ASN1_New(ret->issuer,X509_NAME_new);
171 M_ASN1_New(ret->validity,X509_VAL_new); 176 M_ASN1_New(ret->validity,X509_VAL_new);
@@ -178,20 +183,19 @@ X509_CINF *X509_CINF_new()
178 M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); 183 M_ASN1_New_Error(ASN1_F_X509_CINF_NEW);
179 } 184 }
180 185
181void X509_CINF_free(a) 186void X509_CINF_free(X509_CINF *a)
182X509_CINF *a;
183 { 187 {
184 if (a == NULL) return; 188 if (a == NULL) return;
185 ASN1_INTEGER_free(a->version); 189 M_ASN1_INTEGER_free(a->version);
186 ASN1_INTEGER_free(a->serialNumber); 190 M_ASN1_INTEGER_free(a->serialNumber);
187 X509_ALGOR_free(a->signature); 191 X509_ALGOR_free(a->signature);
188 X509_NAME_free(a->issuer); 192 X509_NAME_free(a->issuer);
189 X509_VAL_free(a->validity); 193 X509_VAL_free(a->validity);
190 X509_NAME_free(a->subject); 194 X509_NAME_free(a->subject);
191 X509_PUBKEY_free(a->key); 195 X509_PUBKEY_free(a->key);
192 ASN1_BIT_STRING_free(a->issuerUID); 196 M_ASN1_BIT_STRING_free(a->issuerUID);
193 ASN1_BIT_STRING_free(a->subjectUID); 197 M_ASN1_BIT_STRING_free(a->subjectUID);
194 sk_pop_free(a->extensions,X509_EXTENSION_free); 198 sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free);
195 Free((char *)a); 199 OPENSSL_free(a);
196 } 200 }
197 201