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