diff options
Diffstat (limited to 'src/lib/libcrypto/asn1')
30 files changed, 3537 insertions, 176 deletions
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile new file mode 100644 index 0000000000..b11298d621 --- /dev/null +++ b/src/lib/libcrypto/asn1/Makefile | |||
@@ -0,0 +1,1150 @@ | |||
1 | # | ||
2 | # SSLeay/crypto/asn1/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= asn1 | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
9 | CFLAG=-g | ||
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | ||
16 | AR= ar r | ||
17 | |||
18 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
19 | |||
20 | GENERAL=Makefile README | ||
21 | TEST= | ||
22 | APPS= | ||
23 | |||
24 | LIB=$(TOP)/libcrypto.a | ||
25 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ | ||
26 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | ||
27 | 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 x_bignum.c \ | ||
29 | 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_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | ||
31 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ | ||
32 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ | ||
33 | f_int.c f_string.c n_pkey.c \ | ||
34 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \ | ||
35 | asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ | ||
36 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | ||
37 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | ||
38 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | ||
39 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ | ||
40 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ | ||
41 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ | ||
42 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | ||
43 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | ||
44 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | ||
45 | f_int.o f_string.o n_pkey.o \ | ||
46 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \ | ||
47 | asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ | ||
48 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | ||
49 | |||
50 | SRC= $(LIBSRC) | ||
51 | |||
52 | EXHEADER= asn1.h asn1_mac.h asn1t.h | ||
53 | HEADER= $(EXHEADER) | ||
54 | |||
55 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
56 | |||
57 | top: | ||
58 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
59 | |||
60 | test: test.c | ||
61 | cc -g -I../../include -c test.c | ||
62 | cc -g -I../../include -o test test.o -L../.. -lcrypto | ||
63 | |||
64 | pk: pk.c | ||
65 | cc -g -I../../include -c pk.c | ||
66 | cc -g -I../../include -o pk pk.o -L../.. -lcrypto | ||
67 | |||
68 | all: lib | ||
69 | |||
70 | lib: $(LIBOBJ) | ||
71 | $(AR) $(LIB) $(LIBOBJ) | ||
72 | $(RANLIB) $(LIB) || echo Never mind. | ||
73 | @touch lib | ||
74 | |||
75 | files: | ||
76 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
77 | |||
78 | links: | ||
79 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
80 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
81 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
82 | |||
83 | install: | ||
84 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
85 | do \ | ||
86 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
87 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
88 | done; | ||
89 | |||
90 | tags: | ||
91 | ctags $(SRC) | ||
92 | |||
93 | tests: | ||
94 | |||
95 | lint: | ||
96 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
97 | |||
98 | depend: | ||
99 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
100 | |||
101 | dclean: | ||
102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
103 | mv -f Makefile.new $(MAKEFILE) | ||
104 | |||
105 | clean: | ||
106 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
107 | |||
108 | |||
109 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
110 | |||
111 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
112 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
113 | a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
114 | a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
115 | a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
116 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
117 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
118 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | ||
119 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | ||
120 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
121 | a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
122 | a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
123 | a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
124 | a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
125 | a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
126 | a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
127 | a_bool.o: ../cryptlib.h a_bool.c | ||
128 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | ||
129 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
130 | a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
131 | a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
132 | a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
133 | a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
134 | a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
135 | a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c | ||
136 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
137 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
138 | a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
139 | a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
140 | a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
141 | a_d2i_fp.o: ../../include/openssl/opensslconf.h | ||
142 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
143 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
144 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | ||
145 | a_digest.o: ../../e_os.h ../../include/openssl/aes.h | ||
146 | a_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
147 | a_digest.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
148 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
149 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
150 | a_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
151 | a_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
152 | a_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
153 | a_digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
154 | a_digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
155 | a_digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
156 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
157 | a_digest.o: ../../include/openssl/opensslconf.h | ||
158 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
159 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
160 | a_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
161 | a_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
162 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
163 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
164 | a_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
165 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
166 | a_digest.o: ../cryptlib.h a_digest.c | ||
167 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
168 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
169 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
170 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
171 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
172 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
173 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
174 | a_dup.o: ../cryptlib.h a_dup.c | ||
175 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
176 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
177 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
178 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
179 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
180 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
181 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
182 | a_enum.o: ../cryptlib.h a_enum.c | ||
183 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
184 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
185 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
186 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
187 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
188 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
189 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
190 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | ||
191 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
192 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
193 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
194 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
195 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
196 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
197 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
198 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
199 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
200 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
201 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
202 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
203 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
204 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
205 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
206 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
207 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
208 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
209 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
210 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
211 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
212 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
213 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
214 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
215 | a_int.o: ../cryptlib.h a_int.c | ||
216 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
217 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
218 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
219 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
220 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
221 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
222 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
223 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | ||
224 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
225 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
226 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
227 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
228 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
229 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
230 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
231 | a_meth.o: ../cryptlib.h a_meth.c | ||
232 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
233 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
234 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
235 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
236 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
237 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
238 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
239 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
240 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
241 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
242 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
243 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
244 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
245 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
246 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
247 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
248 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | ||
249 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
250 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
251 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
252 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
253 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
254 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
255 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
256 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | ||
257 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
258 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
259 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
260 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
261 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
262 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
263 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
264 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
265 | a_set.o: ../cryptlib.h a_set.c | ||
266 | a_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
267 | a_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
268 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
269 | a_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
270 | a_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
271 | a_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
272 | a_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
273 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
274 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
275 | a_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
276 | a_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
277 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
278 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
279 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
280 | a_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
281 | a_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
282 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
283 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
284 | a_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
285 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
286 | a_sign.o: ../cryptlib.h a_sign.c | ||
287 | a_strex.o: ../../e_os.h ../../include/openssl/aes.h | ||
288 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
289 | a_strex.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
290 | a_strex.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
291 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
292 | a_strex.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
293 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
294 | a_strex.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
295 | a_strex.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
296 | a_strex.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
297 | a_strex.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
298 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
299 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
300 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
301 | a_strex.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
302 | a_strex.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
303 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
304 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
305 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
306 | a_strex.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
307 | a_strex.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_strex.c charmap.h | ||
308 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
309 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
310 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
311 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
312 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
313 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
314 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
315 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
316 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
317 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
318 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
319 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
320 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
321 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
322 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
323 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
324 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
325 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
326 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
327 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
328 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
329 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
330 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
331 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
332 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
333 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
334 | a_type.o: ../cryptlib.h a_type.c | ||
335 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
336 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
337 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
338 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
339 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
340 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
341 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
342 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | ||
343 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
344 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
345 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
346 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
347 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
348 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
349 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
350 | a_utf8.o: ../cryptlib.h a_utf8.c | ||
351 | a_verify.o: ../../e_os.h ../../include/openssl/aes.h | ||
352 | a_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
353 | a_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
354 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
355 | a_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
356 | a_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
357 | a_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
358 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
359 | a_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
360 | a_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
361 | a_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
362 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
363 | a_verify.o: ../../include/openssl/opensslconf.h | ||
364 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
365 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
366 | a_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
367 | a_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
368 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
369 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
370 | a_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
371 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
372 | a_verify.o: ../cryptlib.h a_verify.c | ||
373 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
374 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
375 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
376 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
377 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
378 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
379 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
380 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
381 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
382 | asn1_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
383 | asn1_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
384 | asn1_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
385 | asn1_lib.o: ../../include/openssl/opensslconf.h | ||
386 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
387 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
388 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
389 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
390 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
391 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
392 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
393 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
394 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
395 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
396 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
397 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
398 | asn_moid.o: ../../e_os.h ../../include/openssl/aes.h | ||
399 | asn_moid.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
400 | asn_moid.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
401 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
402 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
403 | asn_moid.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
404 | asn_moid.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
405 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
406 | asn_moid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
407 | asn_moid.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
408 | asn_moid.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
409 | asn_moid.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
410 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
411 | asn_moid.o: ../../include/openssl/opensslconf.h | ||
412 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
413 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
414 | asn_moid.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
415 | asn_moid.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
416 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
417 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
418 | asn_moid.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
419 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
420 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
421 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
422 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
423 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
424 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
425 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
426 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
427 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
428 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
429 | d2i_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
430 | d2i_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
431 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
432 | d2i_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
433 | d2i_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
434 | d2i_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
435 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
436 | d2i_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
437 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
438 | d2i_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
439 | d2i_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
440 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
441 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
442 | d2i_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
443 | d2i_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
444 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
445 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
446 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
447 | d2i_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pr.c | ||
448 | d2i_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
449 | d2i_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
450 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
451 | d2i_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
452 | d2i_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
453 | d2i_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
454 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
455 | d2i_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
456 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
457 | d2i_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
458 | d2i_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
459 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
460 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
461 | d2i_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
462 | d2i_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
463 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
464 | d2i_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
465 | d2i_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
466 | d2i_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pu.c | ||
467 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
468 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
469 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
470 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
471 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
472 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
473 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
474 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
475 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
476 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
477 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
478 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
479 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
480 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
481 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
482 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
483 | f_enum.o: ../cryptlib.h f_enum.c | ||
484 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
485 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
486 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
487 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
488 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
489 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
490 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
491 | f_int.o: ../cryptlib.h f_int.c | ||
492 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
493 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
494 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
495 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
496 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
497 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
498 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
499 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
500 | i2d_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
501 | i2d_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
502 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
503 | i2d_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
504 | i2d_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
505 | i2d_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
506 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
507 | i2d_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
508 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
509 | i2d_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
510 | i2d_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
511 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
512 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
513 | i2d_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
514 | i2d_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
515 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
516 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
517 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
518 | i2d_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pr.c | ||
519 | i2d_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
520 | i2d_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
521 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
522 | i2d_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
523 | i2d_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
524 | i2d_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
525 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
526 | i2d_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
527 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
528 | i2d_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
529 | i2d_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
530 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
531 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
532 | i2d_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
533 | i2d_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
534 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
535 | i2d_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
536 | i2d_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
537 | i2d_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pu.c | ||
538 | n_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
539 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
540 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
541 | n_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
542 | n_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
543 | n_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
544 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
545 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
546 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
547 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
548 | n_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
549 | n_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
550 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
551 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
552 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
553 | n_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
554 | n_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
555 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
556 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
557 | n_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
558 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
559 | n_pkey.o: ../cryptlib.h n_pkey.c | ||
560 | nsseq.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
561 | nsseq.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
562 | nsseq.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
563 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
564 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
565 | nsseq.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
566 | nsseq.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
567 | nsseq.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
568 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
569 | nsseq.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
570 | nsseq.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
571 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
572 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
573 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
574 | nsseq.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
575 | nsseq.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
576 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
577 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
578 | nsseq.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
579 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
580 | p5_pbe.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
581 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
582 | p5_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
583 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
584 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
585 | p5_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
586 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
587 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
588 | p5_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
589 | p5_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
590 | p5_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
591 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
592 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
593 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
594 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
595 | p5_pbe.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
596 | p5_pbe.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
597 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
598 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
599 | p5_pbe.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
600 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
601 | p5_pbe.o: ../cryptlib.h p5_pbe.c | ||
602 | p5_pbev2.o: ../../e_os.h ../../include/openssl/aes.h | ||
603 | p5_pbev2.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
604 | p5_pbev2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
605 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
606 | p5_pbev2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
607 | p5_pbev2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
608 | p5_pbev2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
609 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
610 | p5_pbev2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
611 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
612 | p5_pbev2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
613 | p5_pbev2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
614 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
615 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
616 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
617 | p5_pbev2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
618 | p5_pbev2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
619 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
620 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
621 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
622 | p5_pbev2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
623 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | ||
624 | p8_pkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
625 | p8_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
626 | p8_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
627 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
628 | p8_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
629 | p8_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
630 | p8_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
631 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
632 | p8_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
633 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
634 | p8_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
635 | p8_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
636 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
637 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
638 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
639 | p8_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
640 | p8_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
641 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
642 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
643 | p8_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
644 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
645 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
646 | t_bitst.o: ../../e_os.h ../../include/openssl/aes.h | ||
647 | t_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
648 | t_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
649 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
650 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
651 | t_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
652 | t_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
653 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
654 | t_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
655 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
656 | t_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
657 | t_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
658 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
659 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
660 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
661 | t_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
662 | t_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
663 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
664 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
665 | t_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
666 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
667 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
668 | t_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
669 | t_crl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
670 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
671 | t_crl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
672 | t_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
673 | t_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
674 | t_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
675 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
676 | t_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
677 | t_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
678 | t_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
679 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
680 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
681 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
682 | t_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
683 | t_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
684 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
685 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
686 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
687 | t_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
688 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
689 | t_crl.o: ../cryptlib.h t_crl.c | ||
690 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
691 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
692 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
693 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
694 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
695 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
696 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
697 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
698 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | ||
699 | t_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
700 | t_req.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
701 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
702 | t_req.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
703 | t_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
704 | t_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
705 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
706 | t_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
707 | t_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
708 | t_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
709 | t_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
710 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
711 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
712 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
713 | t_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
714 | t_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
715 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
716 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
717 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
718 | t_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
719 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
720 | t_req.o: ../cryptlib.h t_req.c | ||
721 | t_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
722 | t_spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
723 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
724 | t_spki.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
725 | t_spki.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
726 | t_spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
727 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
728 | t_spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
729 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
730 | t_spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
731 | t_spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
732 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
733 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
734 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
735 | t_spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
736 | t_spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
737 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
738 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
739 | t_spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
740 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
741 | t_spki.o: ../cryptlib.h t_spki.c | ||
742 | t_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
743 | t_x509.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
744 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
745 | t_x509.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
746 | t_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
747 | t_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
748 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
749 | t_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
750 | t_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
751 | t_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
752 | t_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
753 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
754 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
755 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
756 | t_x509.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
757 | t_x509.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
758 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
759 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
760 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
761 | t_x509.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
762 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
763 | t_x509.o: ../cryptlib.h t_x509.c | ||
764 | t_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
765 | t_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
766 | t_x509a.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
767 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
768 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
769 | t_x509a.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
770 | t_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
771 | t_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
772 | t_x509a.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
773 | t_x509a.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
774 | t_x509a.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
775 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
776 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
777 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
778 | t_x509a.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
779 | t_x509a.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
780 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
781 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
782 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
783 | t_x509a.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
784 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
785 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
786 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
787 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
788 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
789 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
790 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
791 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
792 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
793 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
794 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
795 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
796 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
797 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
798 | tasn_enc.o: ../../include/openssl/opensslconf.h | ||
799 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
800 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
801 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | ||
802 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
803 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
804 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
805 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
806 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
807 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
808 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
809 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
810 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
811 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
812 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
813 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
814 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
815 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
816 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
817 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
818 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
819 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
820 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
821 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
822 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
823 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
824 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
825 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
826 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
827 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
828 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
829 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
830 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
831 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
832 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
833 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
834 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
835 | x_algor.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
836 | x_algor.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
837 | x_algor.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
838 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
839 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
840 | x_algor.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
841 | x_algor.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
842 | x_algor.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
843 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
844 | x_algor.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
845 | x_algor.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
846 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
847 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
848 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
849 | x_algor.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
850 | x_algor.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
851 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
852 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
853 | x_algor.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
854 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
855 | x_algor.o: x_algor.c | ||
856 | x_attrib.o: ../../e_os.h ../../include/openssl/aes.h | ||
857 | x_attrib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
858 | x_attrib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
859 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
860 | x_attrib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
861 | x_attrib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
862 | x_attrib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
863 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
864 | x_attrib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
865 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
866 | x_attrib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
867 | x_attrib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
868 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
869 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
870 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
871 | x_attrib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
872 | x_attrib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
873 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
874 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
875 | x_attrib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
876 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
877 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
878 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
879 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
880 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
881 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
882 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
883 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
884 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
885 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
886 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
887 | x_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
888 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
889 | x_crl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
890 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
891 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
892 | x_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
893 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
894 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
895 | x_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
896 | x_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
897 | x_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
898 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
899 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
900 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
901 | x_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
902 | x_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
903 | x_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
904 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
905 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
906 | x_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
907 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c | ||
908 | x_exten.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
909 | x_exten.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
910 | x_exten.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
911 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
912 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
913 | x_exten.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
914 | x_exten.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
915 | x_exten.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
916 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
917 | x_exten.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
918 | x_exten.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
919 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
920 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
921 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
922 | x_exten.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
923 | x_exten.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
924 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
925 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
926 | x_exten.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
927 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
928 | x_exten.o: x_exten.c | ||
929 | x_info.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
930 | x_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
931 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
932 | x_info.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
933 | x_info.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
934 | x_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
935 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
936 | x_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
937 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
938 | x_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
939 | x_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
940 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
941 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
942 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
943 | x_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
944 | x_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
945 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
946 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
947 | x_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
948 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
949 | x_info.o: ../cryptlib.h x_info.c | ||
950 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
951 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
952 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
953 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
954 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
955 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
956 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
957 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
958 | x_long.o: ../cryptlib.h x_long.c | ||
959 | x_name.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
960 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
961 | x_name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
962 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
963 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
964 | x_name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
965 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
966 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
967 | x_name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
968 | x_name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
969 | x_name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
970 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
971 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
972 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
973 | x_name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
974 | x_name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
975 | x_name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
976 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
977 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
978 | x_name.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
979 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c | ||
980 | x_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
981 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
982 | x_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
983 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
984 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
985 | x_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
986 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
987 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
988 | x_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
989 | x_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
990 | x_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
991 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
992 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
993 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
994 | x_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
995 | x_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
996 | x_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
997 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
998 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
999 | x_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1000 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | ||
1001 | x_pubkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
1002 | x_pubkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
1003 | x_pubkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
1004 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
1005 | x_pubkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
1006 | x_pubkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
1007 | x_pubkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
1008 | x_pubkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1009 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1010 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1011 | x_pubkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1012 | x_pubkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1013 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1014 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
1015 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
1016 | x_pubkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1017 | x_pubkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1018 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
1019 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1020 | x_pubkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1021 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1022 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
1023 | x_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1024 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1025 | x_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1026 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1027 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1028 | x_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1029 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1030 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1031 | x_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1032 | x_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1033 | x_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1034 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1035 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1036 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1037 | x_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1038 | x_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1039 | x_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1040 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1041 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1042 | x_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1043 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | ||
1044 | x_sig.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1045 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1046 | x_sig.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1047 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1048 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1049 | x_sig.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1050 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1051 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1052 | x_sig.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1053 | x_sig.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1054 | x_sig.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1055 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1056 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1057 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1058 | x_sig.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1059 | x_sig.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1060 | x_sig.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1061 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1062 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1063 | x_sig.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1064 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | ||
1065 | x_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1066 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1067 | x_spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1068 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1069 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1070 | x_spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1071 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1072 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1073 | x_spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1074 | x_spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1075 | x_spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1076 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1077 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1078 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1079 | x_spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1080 | x_spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1081 | x_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1082 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1083 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1084 | x_spki.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1085 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | ||
1086 | x_val.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1087 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1088 | x_val.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1089 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1090 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1091 | x_val.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1092 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1093 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1094 | x_val.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1095 | x_val.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1096 | x_val.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1097 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1098 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1099 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1100 | x_val.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1101 | x_val.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1102 | x_val.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1103 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1104 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1105 | x_val.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1106 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | ||
1107 | x_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1108 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1109 | x_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1110 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1111 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
1112 | x_x509.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
1113 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
1114 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1115 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1116 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1117 | x_x509.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1118 | x_x509.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1119 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1120 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
1121 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
1122 | x_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1123 | x_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1124 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
1125 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1126 | x_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1127 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1128 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | ||
1129 | x_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
1130 | x_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
1131 | x_x509a.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
1132 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
1133 | x_x509a.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
1134 | x_x509a.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
1135 | x_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
1136 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1137 | x_x509a.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1138 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1139 | x_x509a.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1140 | x_x509a.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1141 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1142 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
1143 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
1144 | x_x509a.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1145 | x_x509a.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1146 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
1147 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1148 | x_x509a.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1149 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1150 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl new file mode 100644 index 0000000000..cb45194d48 --- /dev/null +++ b/src/lib/libcrypto/asn1/Makefile.ssl | |||
@@ -0,0 +1,1152 @@ | |||
1 | # | ||
2 | # SSLeay/crypto/asn1/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= asn1 | ||
6 | TOP= ../.. | ||
7 | CC= cc | ||
8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
9 | CFLAG=-g | ||
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKE= make -f Makefile.ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile.ssl | ||
17 | AR= ar r | ||
18 | |||
19 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
20 | |||
21 | GENERAL=Makefile README | ||
22 | TEST= | ||
23 | APPS= | ||
24 | |||
25 | LIB=$(TOP)/libcrypto.a | ||
26 | LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ | ||
27 | a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \ | ||
28 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ | ||
29 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.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 \ | ||
31 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | ||
32 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ | ||
33 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ | ||
34 | f_int.c f_string.c n_pkey.c \ | ||
35 | f_enum.c 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 \ | ||
37 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | ||
38 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | ||
39 | a_print.o 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 \ | ||
41 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.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 \ | ||
43 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | ||
44 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | ||
45 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | ||
46 | f_int.o f_string.o n_pkey.o \ | ||
47 | f_enum.o 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 \ | ||
49 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | ||
50 | |||
51 | SRC= $(LIBSRC) | ||
52 | |||
53 | EXHEADER= asn1.h asn1_mac.h asn1t.h | ||
54 | HEADER= $(EXHEADER) | ||
55 | |||
56 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
57 | |||
58 | top: | ||
59 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
60 | |||
61 | test: test.c | ||
62 | cc -g -I../../include -c test.c | ||
63 | cc -g -I../../include -o test test.o -L../.. -lcrypto | ||
64 | |||
65 | pk: pk.c | ||
66 | cc -g -I../../include -c pk.c | ||
67 | cc -g -I../../include -o pk pk.o -L../.. -lcrypto | ||
68 | |||
69 | all: lib | ||
70 | |||
71 | lib: $(LIBOBJ) | ||
72 | $(AR) $(LIB) $(LIBOBJ) | ||
73 | $(RANLIB) $(LIB) || echo Never mind. | ||
74 | @touch lib | ||
75 | |||
76 | files: | ||
77 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
78 | |||
79 | links: | ||
80 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | ||
81 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
82 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
83 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
84 | |||
85 | install: | ||
86 | @for i in $(EXHEADER) ; \ | ||
87 | do \ | ||
88 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
89 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
90 | done; | ||
91 | |||
92 | tags: | ||
93 | ctags $(SRC) | ||
94 | |||
95 | tests: | ||
96 | |||
97 | lint: | ||
98 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
99 | |||
100 | depend: | ||
101 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
102 | |||
103 | dclean: | ||
104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
105 | mv -f Makefile.new $(MAKEFILE) | ||
106 | |||
107 | clean: | ||
108 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
109 | |||
110 | |||
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/aes.h | ||
148 | a_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
149 | a_digest.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
150 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
151 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
152 | a_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
153 | a_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
154 | a_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
155 | a_digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
156 | a_digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
157 | a_digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
158 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
159 | a_digest.o: ../../include/openssl/opensslconf.h | ||
160 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
161 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
162 | a_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
163 | a_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
164 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
165 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
166 | a_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
167 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
168 | a_digest.o: ../cryptlib.h a_digest.c | ||
169 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
170 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
171 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
172 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
173 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
174 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
175 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
176 | a_dup.o: ../cryptlib.h a_dup.c | ||
177 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
178 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
179 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
180 | a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
181 | a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
182 | a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
183 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
184 | a_enum.o: ../cryptlib.h a_enum.c | ||
185 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
186 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
187 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
188 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
189 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
190 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
191 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
192 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | ||
193 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
194 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
195 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
196 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
197 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
198 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
199 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
200 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
201 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
202 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
203 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
204 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
205 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
206 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
207 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
208 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
209 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | ||
210 | a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
211 | a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
212 | a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
213 | a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
214 | a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
215 | a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
216 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
217 | a_int.o: ../cryptlib.h a_int.c | ||
218 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
219 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
220 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
221 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
222 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
223 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
224 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
225 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | ||
226 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
227 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
228 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
229 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
230 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
231 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
232 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
233 | a_meth.o: ../cryptlib.h a_meth.c | ||
234 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | ||
235 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
236 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
237 | a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
238 | a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
239 | a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
240 | a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
241 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
242 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | ||
243 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | ||
244 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
245 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
246 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
247 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
248 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
249 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
250 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | ||
251 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | ||
252 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
253 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
254 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
255 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
256 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
257 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
258 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | ||
259 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | ||
260 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
261 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
262 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
263 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
264 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
265 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
266 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
267 | a_set.o: ../cryptlib.h a_set.c | ||
268 | a_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
269 | a_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
270 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
271 | a_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
272 | a_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
273 | a_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
274 | a_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
275 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
276 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
277 | a_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
278 | a_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
279 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
280 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
281 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
282 | a_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
283 | a_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
284 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
285 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
286 | a_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
287 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
288 | a_sign.o: ../cryptlib.h a_sign.c | ||
289 | a_strex.o: ../../e_os.h ../../include/openssl/aes.h | ||
290 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
291 | a_strex.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
292 | a_strex.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
293 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
294 | a_strex.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
295 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
296 | a_strex.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
297 | a_strex.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
298 | a_strex.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
299 | a_strex.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
300 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
301 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
302 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
303 | a_strex.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
304 | a_strex.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
305 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
306 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
307 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
308 | a_strex.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
309 | a_strex.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_strex.c charmap.h | ||
310 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
311 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
312 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
313 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
314 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
315 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
316 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
317 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
318 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | ||
319 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | ||
320 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
321 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
322 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
323 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
324 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
325 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
326 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
327 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
328 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | ||
329 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
330 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
331 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
332 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
333 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
334 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
335 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
336 | a_type.o: ../cryptlib.h a_type.c | ||
337 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | ||
338 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
339 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
340 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
341 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
342 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
343 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
344 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | ||
345 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
346 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
347 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
348 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
349 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
350 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
351 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
352 | a_utf8.o: ../cryptlib.h a_utf8.c | ||
353 | a_verify.o: ../../e_os.h ../../include/openssl/aes.h | ||
354 | a_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
355 | a_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
356 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
357 | a_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
358 | a_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
359 | a_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
360 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
361 | a_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
362 | a_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
363 | a_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
364 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
365 | a_verify.o: ../../include/openssl/opensslconf.h | ||
366 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
367 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
368 | a_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
369 | a_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
370 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
371 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
372 | a_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
373 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
374 | a_verify.o: ../cryptlib.h a_verify.c | ||
375 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
376 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
377 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
378 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
379 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
380 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
381 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | ||
382 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
383 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
384 | asn1_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
385 | asn1_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
386 | asn1_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
387 | asn1_lib.o: ../../include/openssl/opensslconf.h | ||
388 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
389 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
390 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | ||
391 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | ||
392 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
393 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
394 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
395 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
396 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
397 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
398 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
399 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | ||
400 | asn_moid.o: ../../e_os.h ../../include/openssl/aes.h | ||
401 | asn_moid.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
402 | asn_moid.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
403 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
404 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
405 | asn_moid.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
406 | asn_moid.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
407 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
408 | asn_moid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
409 | asn_moid.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
410 | asn_moid.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
411 | asn_moid.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
412 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
413 | asn_moid.o: ../../include/openssl/opensslconf.h | ||
414 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
415 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
416 | asn_moid.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
417 | asn_moid.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
418 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
419 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
420 | asn_moid.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
421 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
422 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
423 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | ||
424 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
425 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
426 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
427 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
428 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
429 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
430 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | ||
431 | d2i_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
432 | d2i_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
433 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
434 | d2i_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
435 | d2i_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
436 | d2i_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
437 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
438 | d2i_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
439 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
440 | d2i_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
441 | d2i_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
442 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
443 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
444 | d2i_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
445 | d2i_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
446 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
447 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
448 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
449 | d2i_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pr.c | ||
450 | d2i_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
451 | d2i_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
452 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
453 | d2i_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
454 | d2i_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
455 | d2i_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
456 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
457 | d2i_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
458 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
459 | d2i_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
460 | d2i_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
461 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
462 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
463 | d2i_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
464 | d2i_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
465 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
466 | d2i_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
467 | d2i_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
468 | d2i_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pu.c | ||
469 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
470 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
471 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
472 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
473 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
474 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
475 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
476 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
477 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | ||
478 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
479 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
480 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
481 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
482 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
483 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
484 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
485 | f_enum.o: ../cryptlib.h f_enum.c | ||
486 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
487 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
488 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
489 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
490 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
491 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
492 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
493 | f_int.o: ../cryptlib.h f_int.c | ||
494 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | ||
495 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
496 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
497 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
498 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
499 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
500 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
501 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | ||
502 | i2d_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
503 | i2d_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
504 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
505 | i2d_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
506 | i2d_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
507 | i2d_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
508 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
509 | i2d_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
510 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
511 | i2d_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
512 | i2d_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
513 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
514 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
515 | i2d_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
516 | i2d_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
517 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
518 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
519 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
520 | i2d_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pr.c | ||
521 | i2d_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
522 | i2d_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
523 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
524 | i2d_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
525 | i2d_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
526 | i2d_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
527 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
528 | i2d_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
529 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
530 | i2d_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
531 | i2d_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
532 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
533 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
534 | i2d_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
535 | i2d_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
536 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
537 | i2d_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
538 | i2d_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
539 | i2d_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pu.c | ||
540 | n_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
541 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | ||
542 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
543 | n_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
544 | n_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
545 | n_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
546 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
547 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
548 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
549 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
550 | n_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
551 | n_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
552 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
553 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
554 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
555 | n_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
556 | n_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
557 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
558 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
559 | n_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
560 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
561 | n_pkey.o: ../cryptlib.h n_pkey.c | ||
562 | nsseq.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
563 | nsseq.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
564 | nsseq.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
565 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
566 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
567 | nsseq.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
568 | nsseq.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
569 | nsseq.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
570 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
571 | nsseq.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
572 | nsseq.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
573 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
574 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
575 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
576 | nsseq.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
577 | nsseq.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
578 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
579 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
580 | nsseq.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
581 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
582 | p5_pbe.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
583 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
584 | p5_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
585 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
586 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
587 | p5_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
588 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
589 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
590 | p5_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
591 | p5_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
592 | p5_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
593 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
594 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
595 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
596 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
597 | p5_pbe.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
598 | p5_pbe.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
599 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
600 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
601 | p5_pbe.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
602 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
603 | p5_pbe.o: ../cryptlib.h p5_pbe.c | ||
604 | p5_pbev2.o: ../../e_os.h ../../include/openssl/aes.h | ||
605 | p5_pbev2.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
606 | p5_pbev2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
607 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
608 | p5_pbev2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
609 | p5_pbev2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
610 | p5_pbev2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
611 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
612 | p5_pbev2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
613 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
614 | p5_pbev2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
615 | p5_pbev2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
616 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
617 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
618 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
619 | p5_pbev2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
620 | p5_pbev2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
621 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
622 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
623 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
624 | p5_pbev2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
625 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | ||
626 | p8_pkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
627 | p8_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
628 | p8_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
629 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
630 | p8_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
631 | p8_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
632 | p8_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
633 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
634 | p8_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
635 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
636 | p8_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
637 | p8_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
638 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
639 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
640 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
641 | p8_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
642 | p8_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
643 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
644 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
645 | p8_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
646 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
647 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
648 | t_bitst.o: ../../e_os.h ../../include/openssl/aes.h | ||
649 | t_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
650 | t_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
651 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
652 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
653 | t_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
654 | t_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
655 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
656 | t_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
657 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
658 | t_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
659 | t_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
660 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
661 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
662 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
663 | t_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
664 | t_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
665 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
666 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
667 | t_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
668 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
669 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
670 | t_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
671 | t_crl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
672 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
673 | t_crl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
674 | t_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
675 | t_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
676 | t_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
677 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
678 | t_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
679 | t_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
680 | t_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
681 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
682 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
683 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
684 | t_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
685 | t_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
686 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
687 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
688 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
689 | t_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
690 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
691 | t_crl.o: ../cryptlib.h t_crl.c | ||
692 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
693 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
694 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
695 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
696 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
697 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
698 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | ||
699 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
700 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | ||
701 | t_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
702 | t_req.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
703 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
704 | t_req.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
705 | t_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
706 | t_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
707 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
708 | t_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
709 | t_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
710 | t_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
711 | t_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
712 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
713 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
714 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
715 | t_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
716 | t_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
717 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
718 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
719 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
720 | t_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
721 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
722 | t_req.o: ../cryptlib.h t_req.c | ||
723 | t_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
724 | t_spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
725 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
726 | t_spki.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
727 | t_spki.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
728 | t_spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
729 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
730 | t_spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
731 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
732 | t_spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
733 | t_spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
734 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
735 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
736 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
737 | t_spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
738 | t_spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
739 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
740 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
741 | t_spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
742 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
743 | t_spki.o: ../cryptlib.h t_spki.c | ||
744 | t_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
745 | t_x509.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
746 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
747 | t_x509.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
748 | t_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
749 | t_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
750 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
751 | t_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
752 | t_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
753 | t_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
754 | t_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
755 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
756 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
757 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
758 | t_x509.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
759 | t_x509.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
760 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
761 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
762 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
763 | t_x509.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
764 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
765 | t_x509.o: ../cryptlib.h t_x509.c | ||
766 | t_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
767 | t_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
768 | t_x509a.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
769 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
770 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
771 | t_x509a.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
772 | t_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
773 | t_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
774 | t_x509a.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
775 | t_x509a.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
776 | t_x509a.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
777 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
778 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
779 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
780 | t_x509a.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
781 | t_x509a.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
782 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
783 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
784 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
785 | t_x509a.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
786 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
787 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
788 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
789 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
790 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
791 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
792 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
793 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
794 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
795 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | ||
796 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
797 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
798 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
799 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
800 | tasn_enc.o: ../../include/openssl/opensslconf.h | ||
801 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
802 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
803 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | ||
804 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
805 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
806 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
807 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
808 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
809 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
810 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
811 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | ||
812 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
813 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
814 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
815 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
816 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
817 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
818 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
819 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
820 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | ||
821 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
822 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
823 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
824 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
825 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
826 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
827 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | ||
828 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
829 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
830 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
831 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
832 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
833 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
834 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
835 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
836 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | ||
837 | x_algor.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
838 | x_algor.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
839 | x_algor.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
840 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
841 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
842 | x_algor.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
843 | x_algor.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
844 | x_algor.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
845 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
846 | x_algor.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
847 | x_algor.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
848 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
849 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
850 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
851 | x_algor.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
852 | x_algor.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
853 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
854 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
855 | x_algor.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
856 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
857 | x_algor.o: x_algor.c | ||
858 | x_attrib.o: ../../e_os.h ../../include/openssl/aes.h | ||
859 | x_attrib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
860 | x_attrib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
861 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
862 | x_attrib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
863 | x_attrib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
864 | x_attrib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
865 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
866 | x_attrib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
867 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
868 | x_attrib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
869 | x_attrib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
870 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
871 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
872 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
873 | x_attrib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
874 | x_attrib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
875 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
876 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
877 | x_attrib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
878 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
879 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
880 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | ||
881 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
882 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
883 | x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
884 | x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
885 | x_bignum.o: ../../include/openssl/opensslconf.h | ||
886 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
887 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
888 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | ||
889 | x_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
890 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
891 | x_crl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
892 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
893 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
894 | x_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
895 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
896 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
897 | x_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
898 | x_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
899 | x_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
900 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
901 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
902 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
903 | x_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
904 | x_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
905 | x_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
906 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
907 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
908 | x_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
909 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c | ||
910 | x_exten.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
911 | x_exten.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
912 | x_exten.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
913 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
914 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
915 | x_exten.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
916 | x_exten.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
917 | x_exten.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
918 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
919 | x_exten.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
920 | x_exten.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
921 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
922 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
923 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
924 | x_exten.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
925 | x_exten.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
926 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
927 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
928 | x_exten.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
929 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
930 | x_exten.o: x_exten.c | ||
931 | x_info.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
932 | x_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
933 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
934 | x_info.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
935 | x_info.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
936 | x_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
937 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
938 | x_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
939 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
940 | x_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
941 | x_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
942 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
943 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
944 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
945 | x_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
946 | x_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
947 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
948 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
949 | x_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
950 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
951 | x_info.o: ../cryptlib.h x_info.c | ||
952 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | ||
953 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
954 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
955 | x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
956 | x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
957 | x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
958 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
959 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
960 | x_long.o: ../cryptlib.h x_long.c | ||
961 | x_name.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
962 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
963 | x_name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
964 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
965 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
966 | x_name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
967 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
968 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
969 | x_name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
970 | x_name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
971 | x_name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
972 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
973 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
974 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
975 | x_name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
976 | x_name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
977 | x_name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
978 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
979 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
980 | x_name.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
981 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c | ||
982 | x_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
983 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
984 | x_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
985 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
986 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
987 | x_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
988 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
989 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
990 | x_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
991 | x_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
992 | x_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
993 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
994 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
995 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
996 | x_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
997 | x_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
998 | x_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
999 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1000 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1001 | x_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1002 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | ||
1003 | x_pubkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
1004 | x_pubkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
1005 | x_pubkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
1006 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
1007 | x_pubkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
1008 | x_pubkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
1009 | x_pubkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
1010 | x_pubkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1011 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1012 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1013 | x_pubkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1014 | x_pubkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1015 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1016 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
1017 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
1018 | x_pubkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1019 | x_pubkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1020 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
1021 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1022 | x_pubkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1023 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1024 | x_pubkey.o: ../cryptlib.h x_pubkey.c | ||
1025 | x_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1026 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1027 | x_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1028 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1029 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1030 | x_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1031 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1032 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1033 | x_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1034 | x_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1035 | x_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1036 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1037 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1038 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1039 | x_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1040 | x_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1041 | x_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1042 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1043 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1044 | x_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1045 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | ||
1046 | x_sig.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1047 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1048 | x_sig.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1049 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1050 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1051 | x_sig.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1052 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1053 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1054 | x_sig.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1055 | x_sig.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1056 | x_sig.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1057 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1058 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1059 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1060 | x_sig.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1061 | x_sig.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1062 | x_sig.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1063 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1064 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1065 | x_sig.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1066 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | ||
1067 | x_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1068 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1069 | x_spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1070 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1071 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1072 | x_spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1073 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1074 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1075 | x_spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1076 | x_spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1077 | x_spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1078 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1079 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1080 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1081 | x_spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1082 | x_spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1083 | x_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1084 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1085 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1086 | x_spki.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1087 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | ||
1088 | x_val.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1089 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1090 | x_val.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1091 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1092 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1093 | x_val.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1094 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1095 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1096 | x_val.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1097 | x_val.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1098 | x_val.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1099 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
1100 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1101 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1102 | x_val.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1103 | x_val.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1104 | x_val.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1105 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
1106 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
1107 | x_val.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1108 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | ||
1109 | x_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
1110 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
1111 | x_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1112 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1113 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
1114 | x_x509.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
1115 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
1116 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1117 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1118 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1119 | x_x509.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1120 | x_x509.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1121 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1122 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
1123 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
1124 | x_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1125 | x_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1126 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
1127 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1128 | x_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1129 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1130 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | ||
1131 | x_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
1132 | x_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
1133 | x_x509a.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
1134 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
1135 | x_x509a.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
1136 | x_x509a.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
1137 | x_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
1138 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1139 | x_x509a.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1140 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1141 | x_x509a.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1142 | x_x509a.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1143 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1144 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
1145 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
1146 | x_x509a.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1147 | x_x509a.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1148 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
1149 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1150 | x_x509a.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1151 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1152 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/asn1/a_bitstr.c b/src/lib/libcrypto/asn1/a_bitstr.c index b81bf4fc81..f4ea96cd54 100644 --- a/src/lib/libcrypto/asn1/a_bitstr.c +++ b/src/lib/libcrypto/asn1/a_bitstr.c | |||
@@ -194,12 +194,8 @@ int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value) | |||
194 | c=(unsigned char *)OPENSSL_realloc_clean(a->data, | 194 | c=(unsigned char *)OPENSSL_realloc_clean(a->data, |
195 | a->length, | 195 | a->length, |
196 | w+1); | 196 | w+1); |
197 | if (c == NULL) | 197 | if (c == NULL) return(0); |
198 | { | 198 | if (w+1-a->length > 0) memset(c+a->length, 0, w+1-a->length); |
199 | ASN1err(ASN1_F_ASN1_BIT_STRING_SET_BIT,ERR_R_MALLOC_FAILURE); | ||
200 | return 0; | ||
201 | } | ||
202 | if (w+1-a->length > 0) memset(c+a->length, 0, w+1-a->length); | ||
203 | a->data=c; | 199 | a->data=c; |
204 | a->length=w+1; | 200 | a->length=w+1; |
205 | } | 201 | } |
diff --git a/src/lib/libcrypto/asn1/a_bytes.c b/src/lib/libcrypto/asn1/a_bytes.c index afd27b80e1..2407f7c87a 100644 --- a/src/lib/libcrypto/asn1/a_bytes.c +++ b/src/lib/libcrypto/asn1/a_bytes.c | |||
@@ -78,7 +78,7 @@ ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a, unsigned char **pp, | |||
78 | 78 | ||
79 | if (tag >= 32) | 79 | if (tag >= 32) |
80 | { | 80 | { |
81 | i=ASN1_R_TAG_VALUE_TOO_HIGH;; | 81 | i=ASN1_R_TAG_VALUE_TOO_HIGH; |
82 | goto err; | 82 | goto err; |
83 | } | 83 | } |
84 | if (!(ASN1_tag2bit(tag) & type)) | 84 | if (!(ASN1_tag2bit(tag) & type)) |
diff --git a/src/lib/libcrypto/asn1/a_digest.c b/src/lib/libcrypto/asn1/a_digest.c index 7182e9fa5d..4931e222a0 100644 --- a/src/lib/libcrypto/asn1/a_digest.c +++ b/src/lib/libcrypto/asn1/a_digest.c | |||
@@ -65,7 +65,6 @@ | |||
65 | # include <sys/types.h> | 65 | # include <sys/types.h> |
66 | #endif | 66 | #endif |
67 | 67 | ||
68 | #include <openssl/err.h> | ||
69 | #include <openssl/evp.h> | 68 | #include <openssl/evp.h> |
70 | #include <openssl/buffer.h> | 69 | #include <openssl/buffer.h> |
71 | #include <openssl/x509.h> | 70 | #include <openssl/x509.h> |
@@ -79,11 +78,7 @@ int ASN1_digest(int (*i2d)(), const EVP_MD *type, char *data, | |||
79 | unsigned char *str,*p; | 78 | unsigned char *str,*p; |
80 | 79 | ||
81 | i=i2d(data,NULL); | 80 | i=i2d(data,NULL); |
82 | if ((str=(unsigned char *)OPENSSL_malloc(i)) == NULL) | 81 | if ((str=(unsigned char *)OPENSSL_malloc(i)) == NULL) return(0); |
83 | { | ||
84 | ASN1err(ASN1_F_ASN1_DIGEST,ERR_R_MALLOC_FAILURE); | ||
85 | return(0); | ||
86 | } | ||
87 | p=str; | 82 | p=str; |
88 | i2d(data,&p); | 83 | i2d(data,&p); |
89 | 84 | ||
diff --git a/src/lib/libcrypto/asn1/a_enum.c b/src/lib/libcrypto/asn1/a_enum.c index 03ede68d1c..ad8f0ffd1a 100644 --- a/src/lib/libcrypto/asn1/a_enum.c +++ b/src/lib/libcrypto/asn1/a_enum.c | |||
@@ -156,7 +156,7 @@ ASN1_ENUMERATED *BN_to_ASN1_ENUMERATED(BIGNUM *bn, ASN1_ENUMERATED *ai) | |||
156 | unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); | 156 | unsigned char *new_data=OPENSSL_realloc(ret->data, len+4); |
157 | if (!new_data) | 157 | if (!new_data) |
158 | { | 158 | { |
159 | ASN1err(ASN1_F_BN_TO_ASN1_ENUMERATED,ERR_R_MALLOC_FAILURE); | 159 | ASN1err(ASN1_F_BN_TO_ASN1_INTEGER,ERR_R_MALLOC_FAILURE); |
160 | goto err; | 160 | goto err; |
161 | } | 161 | } |
162 | ret->data=new_data; | 162 | ret->data=new_data; |
diff --git a/src/lib/libcrypto/asn1/a_gentm.c b/src/lib/libcrypto/asn1/a_gentm.c new file mode 100644 index 0000000000..8581007868 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_gentm.c | |||
@@ -0,0 +1,240 @@ | |||
1 | /* crypto/asn1/a_gentm.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | /* GENERALIZEDTIME implementation, written by Steve Henson. Based on UTCTIME */ | ||
60 | |||
61 | #include <stdio.h> | ||
62 | #include <time.h> | ||
63 | #include "cryptlib.h" | ||
64 | #include "o_time.h" | ||
65 | #include <openssl/asn1.h> | ||
66 | |||
67 | #if 0 | ||
68 | |||
69 | int i2d_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME *a, unsigned char **pp) | ||
70 | { | ||
71 | #ifdef CHARSET_EBCDIC | ||
72 | /* KLUDGE! We convert to ascii before writing DER */ | ||
73 | int len; | ||
74 | char tmp[24]; | ||
75 | ASN1_STRING tmpstr = *(ASN1_STRING *)a; | ||
76 | |||
77 | len = tmpstr.length; | ||
78 | ebcdic2ascii(tmp, tmpstr.data, (len >= sizeof tmp) ? sizeof tmp : len); | ||
79 | tmpstr.data = tmp; | ||
80 | |||
81 | a = (ASN1_GENERALIZEDTIME *) &tmpstr; | ||
82 | #endif | ||
83 | return(i2d_ASN1_bytes((ASN1_STRING *)a,pp, | ||
84 | V_ASN1_GENERALIZEDTIME,V_ASN1_UNIVERSAL)); | ||
85 | } | ||
86 | |||
87 | |||
88 | ASN1_GENERALIZEDTIME *d2i_ASN1_GENERALIZEDTIME(ASN1_GENERALIZEDTIME **a, | ||
89 | unsigned char **pp, long length) | ||
90 | { | ||
91 | ASN1_GENERALIZEDTIME *ret=NULL; | ||
92 | |||
93 | ret=(ASN1_GENERALIZEDTIME *)d2i_ASN1_bytes((ASN1_STRING **)a,pp,length, | ||
94 | V_ASN1_GENERALIZEDTIME,V_ASN1_UNIVERSAL); | ||
95 | if (ret == NULL) | ||
96 | { | ||
97 | ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME,ERR_R_NESTED_ASN1_ERROR); | ||
98 | return(NULL); | ||
99 | } | ||
100 | #ifdef CHARSET_EBCDIC | ||
101 | ascii2ebcdic(ret->data, ret->data, ret->length); | ||
102 | #endif | ||
103 | if (!ASN1_GENERALIZEDTIME_check(ret)) | ||
104 | { | ||
105 | ASN1err(ASN1_F_D2I_ASN1_GENERALIZEDTIME,ASN1_R_INVALID_TIME_FORMAT); | ||
106 | goto err; | ||
107 | } | ||
108 | |||
109 | return(ret); | ||
110 | err: | ||
111 | if ((ret != NULL) && ((a == NULL) || (*a != ret))) | ||
112 | M_ASN1_GENERALIZEDTIME_free(ret); | ||
113 | return(NULL); | ||
114 | } | ||
115 | |||
116 | #endif | ||
117 | |||
118 | int ASN1_GENERALIZEDTIME_check(ASN1_GENERALIZEDTIME *d) | ||
119 | { | ||
120 | static int min[9]={ 0, 0, 1, 1, 0, 0, 0, 0, 0}; | ||
121 | static int max[9]={99, 99,12,31,23,59,59,12,59}; | ||
122 | char *a; | ||
123 | int n,i,l,o; | ||
124 | |||
125 | if (d->type != V_ASN1_GENERALIZEDTIME) return(0); | ||
126 | l=d->length; | ||
127 | a=(char *)d->data; | ||
128 | o=0; | ||
129 | /* GENERALIZEDTIME is similar to UTCTIME except the year is | ||
130 | * represented as YYYY. This stuff treats everything as a two digit | ||
131 | * field so make first two fields 00 to 99 | ||
132 | */ | ||
133 | if (l < 13) goto err; | ||
134 | for (i=0; i<7; i++) | ||
135 | { | ||
136 | if ((i == 6) && ((a[o] == 'Z') || | ||
137 | (a[o] == '+') || (a[o] == '-'))) | ||
138 | { i++; break; } | ||
139 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
140 | n= a[o]-'0'; | ||
141 | if (++o > l) goto err; | ||
142 | |||
143 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
144 | n=(n*10)+ a[o]-'0'; | ||
145 | if (++o > l) goto err; | ||
146 | |||
147 | if ((n < min[i]) || (n > max[i])) goto err; | ||
148 | } | ||
149 | /* Optional fractional seconds: decimal point followed by one | ||
150 | * or more digits. | ||
151 | */ | ||
152 | if (a[o] == '.') | ||
153 | { | ||
154 | if (++o > l) goto err; | ||
155 | i = o; | ||
156 | while ((a[o] >= '0') && (a[o] <= '9') && (o <= l)) | ||
157 | o++; | ||
158 | /* Must have at least one digit after decimal point */ | ||
159 | if (i == o) goto err; | ||
160 | } | ||
161 | |||
162 | if (a[o] == 'Z') | ||
163 | o++; | ||
164 | else if ((a[o] == '+') || (a[o] == '-')) | ||
165 | { | ||
166 | o++; | ||
167 | if (o+4 > l) goto err; | ||
168 | for (i=7; i<9; i++) | ||
169 | { | ||
170 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
171 | n= a[o]-'0'; | ||
172 | o++; | ||
173 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
174 | n=(n*10)+ a[o]-'0'; | ||
175 | if ((n < min[i]) || (n > max[i])) goto err; | ||
176 | o++; | ||
177 | } | ||
178 | } | ||
179 | return(o == l); | ||
180 | err: | ||
181 | return(0); | ||
182 | } | ||
183 | |||
184 | int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, char *str) | ||
185 | { | ||
186 | ASN1_GENERALIZEDTIME t; | ||
187 | |||
188 | t.type=V_ASN1_GENERALIZEDTIME; | ||
189 | t.length=strlen(str); | ||
190 | t.data=(unsigned char *)str; | ||
191 | if (ASN1_GENERALIZEDTIME_check(&t)) | ||
192 | { | ||
193 | if (s != NULL) | ||
194 | { | ||
195 | ASN1_STRING_set((ASN1_STRING *)s, | ||
196 | (unsigned char *)str,t.length); | ||
197 | s->type=V_ASN1_GENERALIZEDTIME; | ||
198 | } | ||
199 | return(1); | ||
200 | } | ||
201 | else | ||
202 | return(0); | ||
203 | } | ||
204 | |||
205 | ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s, | ||
206 | time_t t) | ||
207 | { | ||
208 | char *p; | ||
209 | struct tm *ts; | ||
210 | struct tm data; | ||
211 | size_t len = 20; | ||
212 | |||
213 | if (s == NULL) | ||
214 | s=M_ASN1_GENERALIZEDTIME_new(); | ||
215 | if (s == NULL) | ||
216 | return(NULL); | ||
217 | |||
218 | ts=OPENSSL_gmtime(&t, &data); | ||
219 | if (ts == NULL) | ||
220 | return(NULL); | ||
221 | |||
222 | p=(char *)s->data; | ||
223 | if ((p == NULL) || ((size_t)s->length < len)) | ||
224 | { | ||
225 | p=OPENSSL_malloc(len); | ||
226 | if (p == NULL) return(NULL); | ||
227 | if (s->data != NULL) | ||
228 | OPENSSL_free(s->data); | ||
229 | s->data=(unsigned char *)p; | ||
230 | } | ||
231 | |||
232 | BIO_snprintf(p,len,"%04d%02d%02d%02d%02d%02dZ",ts->tm_year + 1900, | ||
233 | ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec); | ||
234 | s->length=strlen(p); | ||
235 | s->type=V_ASN1_GENERALIZEDTIME; | ||
236 | #ifdef CHARSET_EBCDIC_not | ||
237 | ebcdic2ascii(s->data, s->data, s->length); | ||
238 | #endif | ||
239 | return(s); | ||
240 | } | ||
diff --git a/src/lib/libcrypto/asn1/a_hdr.c b/src/lib/libcrypto/asn1/a_hdr.c new file mode 100644 index 0000000000..b1aad81f77 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_hdr.c | |||
@@ -0,0 +1,119 @@ | |||
1 | /* crypto/asn1/a_hdr.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/asn1_mac.h> | ||
62 | #include <openssl/asn1.h> | ||
63 | |||
64 | int i2d_ASN1_HEADER(ASN1_HEADER *a, unsigned char **pp) | ||
65 | { | ||
66 | M_ASN1_I2D_vars(a); | ||
67 | |||
68 | M_ASN1_I2D_len(a->header, i2d_ASN1_OCTET_STRING); | ||
69 | M_ASN1_I2D_len(a->data, a->meth->i2d); | ||
70 | |||
71 | M_ASN1_I2D_seq_total(); | ||
72 | |||
73 | M_ASN1_I2D_put(a->header, i2d_ASN1_OCTET_STRING); | ||
74 | M_ASN1_I2D_put(a->data, a->meth->i2d); | ||
75 | |||
76 | M_ASN1_I2D_finish(); | ||
77 | } | ||
78 | |||
79 | ASN1_HEADER *d2i_ASN1_HEADER(ASN1_HEADER **a, unsigned char **pp, | ||
80 | long length) | ||
81 | { | ||
82 | M_ASN1_D2I_vars(a,ASN1_HEADER *,ASN1_HEADER_new); | ||
83 | |||
84 | M_ASN1_D2I_Init(); | ||
85 | M_ASN1_D2I_start_sequence(); | ||
86 | M_ASN1_D2I_get(ret->header,d2i_ASN1_OCTET_STRING); | ||
87 | if (ret->meth != NULL) | ||
88 | { | ||
89 | M_ASN1_D2I_get(ret->data,ret->meth->d2i); | ||
90 | } | ||
91 | else | ||
92 | { | ||
93 | if (a != NULL) (*a)=ret; | ||
94 | return(ret); | ||
95 | } | ||
96 | M_ASN1_D2I_Finish(a,ASN1_HEADER_free,ASN1_F_D2I_ASN1_HEADER); | ||
97 | } | ||
98 | |||
99 | ASN1_HEADER *ASN1_HEADER_new(void) | ||
100 | { | ||
101 | ASN1_HEADER *ret=NULL; | ||
102 | ASN1_CTX c; | ||
103 | |||
104 | M_ASN1_New_Malloc(ret,ASN1_HEADER); | ||
105 | M_ASN1_New(ret->header,M_ASN1_OCTET_STRING_new); | ||
106 | ret->meth=NULL; | ||
107 | ret->data=NULL; | ||
108 | return(ret); | ||
109 | M_ASN1_New_Error(ASN1_F_ASN1_HEADER_NEW); | ||
110 | } | ||
111 | |||
112 | void ASN1_HEADER_free(ASN1_HEADER *a) | ||
113 | { | ||
114 | if (a == NULL) return; | ||
115 | M_ASN1_OCTET_STRING_free(a->header); | ||
116 | if (a->meth != NULL) | ||
117 | a->meth->destroy(a->data); | ||
118 | OPENSSL_free(a); | ||
119 | } | ||
diff --git a/src/lib/libcrypto/asn1/a_int.c b/src/lib/libcrypto/asn1/a_int.c index 21cc64bb23..edb243c021 100644 --- a/src/lib/libcrypto/asn1/a_int.c +++ b/src/lib/libcrypto/asn1/a_int.c | |||
@@ -64,26 +64,7 @@ ASN1_INTEGER *ASN1_INTEGER_dup(ASN1_INTEGER *x) | |||
64 | { return M_ASN1_INTEGER_dup(x);} | 64 | { return M_ASN1_INTEGER_dup(x);} |
65 | 65 | ||
66 | int ASN1_INTEGER_cmp(ASN1_INTEGER *x, ASN1_INTEGER *y) | 66 | int ASN1_INTEGER_cmp(ASN1_INTEGER *x, ASN1_INTEGER *y) |
67 | { | 67 | { return M_ASN1_INTEGER_cmp(x,y);} |
68 | int neg, ret; | ||
69 | /* Compare signs */ | ||
70 | neg = x->type & V_ASN1_NEG; | ||
71 | if (neg != (y->type & V_ASN1_NEG)) | ||
72 | { | ||
73 | if (neg) | ||
74 | return -1; | ||
75 | else | ||
76 | return 1; | ||
77 | } | ||
78 | |||
79 | ret = ASN1_STRING_cmp(x, y); | ||
80 | |||
81 | if (neg) | ||
82 | return -ret; | ||
83 | else | ||
84 | return ret; | ||
85 | } | ||
86 | |||
87 | 68 | ||
88 | /* | 69 | /* |
89 | * This converts an ASN1 INTEGER into its content encoding. | 70 | * This converts an ASN1 INTEGER into its content encoding. |
diff --git a/src/lib/libcrypto/asn1/a_meth.c b/src/lib/libcrypto/asn1/a_meth.c new file mode 100644 index 0000000000..63158e9cab --- /dev/null +++ b/src/lib/libcrypto/asn1/a_meth.c | |||
@@ -0,0 +1,84 @@ | |||
1 | /* crypto/asn1/a_meth.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/buffer.h> | ||
62 | #include <openssl/asn1.h> | ||
63 | |||
64 | static ASN1_METHOD ia5string_meth={ | ||
65 | (int (*)()) i2d_ASN1_IA5STRING, | ||
66 | (char *(*)()) d2i_ASN1_IA5STRING, | ||
67 | (char *(*)()) ASN1_STRING_new, | ||
68 | (void (*)()) ASN1_STRING_free}; | ||
69 | |||
70 | static ASN1_METHOD bit_string_meth={ | ||
71 | (int (*)()) i2d_ASN1_BIT_STRING, | ||
72 | (char *(*)()) d2i_ASN1_BIT_STRING, | ||
73 | (char *(*)()) ASN1_STRING_new, | ||
74 | (void (*)()) ASN1_STRING_free}; | ||
75 | |||
76 | ASN1_METHOD *ASN1_IA5STRING_asn1_meth(void) | ||
77 | { | ||
78 | return(&ia5string_meth); | ||
79 | } | ||
80 | |||
81 | ASN1_METHOD *ASN1_BIT_STRING_asn1_meth(void) | ||
82 | { | ||
83 | return(&bit_string_meth); | ||
84 | } | ||
diff --git a/src/lib/libcrypto/asn1/a_print.c b/src/lib/libcrypto/asn1/a_print.c index d18e772320..8035513f04 100644 --- a/src/lib/libcrypto/asn1/a_print.c +++ b/src/lib/libcrypto/asn1/a_print.c | |||
@@ -60,7 +60,7 @@ | |||
60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
61 | #include <openssl/asn1.h> | 61 | #include <openssl/asn1.h> |
62 | 62 | ||
63 | int ASN1_PRINTABLE_type(const unsigned char *s, int len) | 63 | int ASN1_PRINTABLE_type(unsigned char *s, int len) |
64 | { | 64 | { |
65 | int c; | 65 | int c; |
66 | int ia5=0; | 66 | int ia5=0; |
diff --git a/src/lib/libcrypto/asn1/a_set.c b/src/lib/libcrypto/asn1/a_set.c index e24061c545..0f839822ff 100644 --- a/src/lib/libcrypto/asn1/a_set.c +++ b/src/lib/libcrypto/asn1/a_set.c | |||
@@ -118,13 +118,8 @@ int i2d_ASN1_SET(STACK *a, unsigned char **pp, int (*func)(), int ex_tag, | |||
118 | } | 118 | } |
119 | 119 | ||
120 | pStart = p; /* Catch the beg of Setblobs*/ | 120 | pStart = p; /* Catch the beg of Setblobs*/ |
121 | /* In this array we will store the SET blobs */ | 121 | if (!(rgSetBlob = (MYBLOB *)OPENSSL_malloc( sk_num(a) * sizeof(MYBLOB)))) return 0; /* In this array |
122 | rgSetBlob = (MYBLOB *)OPENSSL_malloc(sk_num(a) * sizeof(MYBLOB)); | 122 | we will store the SET blobs */ |
123 | if (rgSetBlob == NULL) | ||
124 | { | ||
125 | ASN1err(ASN1_F_I2D_ASN1_SET,ERR_R_MALLOC_FAILURE); | ||
126 | return(0); | ||
127 | } | ||
128 | 123 | ||
129 | for (i=0; i<sk_num(a); i++) | 124 | for (i=0; i<sk_num(a); i++) |
130 | { | 125 | { |
@@ -140,11 +135,7 @@ SetBlob | |||
140 | /* Now we have to sort the blobs. I am using a simple algo. | 135 | /* Now we have to sort the blobs. I am using a simple algo. |
141 | *Sort ptrs *Copy to temp-mem *Copy from temp-mem to user-mem*/ | 136 | *Sort ptrs *Copy to temp-mem *Copy from temp-mem to user-mem*/ |
142 | qsort( rgSetBlob, sk_num(a), sizeof(MYBLOB), SetBlobCmp); | 137 | qsort( rgSetBlob, sk_num(a), sizeof(MYBLOB), SetBlobCmp); |
143 | if (!(pTempMem = OPENSSL_malloc(totSize))) | 138 | if (!(pTempMem = OPENSSL_malloc(totSize))) return 0; |
144 | { | ||
145 | ASN1err(ASN1_F_I2D_ASN1_SET,ERR_R_MALLOC_FAILURE); | ||
146 | return(0); | ||
147 | } | ||
148 | 139 | ||
149 | /* Copy to temp mem */ | 140 | /* Copy to temp mem */ |
150 | p = pTempMem; | 141 | p = pTempMem; |
@@ -169,13 +160,7 @@ STACK *d2i_ASN1_SET(STACK **a, unsigned char **pp, long length, | |||
169 | STACK *ret=NULL; | 160 | STACK *ret=NULL; |
170 | 161 | ||
171 | if ((a == NULL) || ((*a) == NULL)) | 162 | if ((a == NULL) || ((*a) == NULL)) |
172 | { | 163 | { if ((ret=sk_new_null()) == NULL) goto err; } |
173 | if ((ret=sk_new_null()) == NULL) | ||
174 | { | ||
175 | ASN1err(ASN1_F_D2I_ASN1_SET,ERR_R_MALLOC_FAILURE); | ||
176 | goto err; | ||
177 | } | ||
178 | } | ||
179 | else | 164 | else |
180 | ret=(*a); | 165 | ret=(*a); |
181 | 166 | ||
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c index a07122ba47..bde666a6ff 100644 --- a/src/lib/libcrypto/asn1/a_strex.c +++ b/src/lib/libcrypto/asn1/a_strex.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * project 2000. | 3 | * project 2000. |
4 | */ | 4 | */ |
5 | /* ==================================================================== | 5 | /* ==================================================================== |
6 | * Copyright (c) 2000-2004 The OpenSSL Project. All rights reserved. | 6 | * Copyright (c) 2000 The OpenSSL Project. All rights reserved. |
7 | * | 7 | * |
8 | * Redistribution and use in source and binary forms, with or without | 8 | * Redistribution and use in source and binary forms, with or without |
9 | * modification, are permitted provided that the following conditions | 9 | * modification, are permitted provided that the following conditions |
@@ -553,12 +553,7 @@ int ASN1_STRING_to_UTF8(unsigned char **out, ASN1_STRING *in) | |||
553 | if((type < 0) || (type > 30)) return -1; | 553 | if((type < 0) || (type > 30)) return -1; |
554 | mbflag = tag2nbyte[type]; | 554 | mbflag = tag2nbyte[type]; |
555 | if(mbflag == -1) return -1; | 555 | if(mbflag == -1) return -1; |
556 | if (mbflag == 0) | 556 | mbflag |= MBSTRING_FLAG; |
557 | mbflag = MBSTRING_UTF8; | ||
558 | else if (mbflag == 4) | ||
559 | mbflag = MBSTRING_UNIV; | ||
560 | else | ||
561 | mbflag |= MBSTRING_FLAG; | ||
562 | stmp.data = NULL; | 557 | stmp.data = NULL; |
563 | ret = ASN1_mbstring_copy(&str, in->data, in->length, mbflag, B_ASN1_UTF8STRING); | 558 | ret = ASN1_mbstring_copy(&str, in->data, in->length, mbflag, B_ASN1_UTF8STRING); |
564 | if(ret < 0) return ret; | 559 | if(ret < 0) return ret; |
diff --git a/src/lib/libcrypto/asn1/a_type.c b/src/lib/libcrypto/asn1/a_type.c index 2292d49b93..fe3fcd40b0 100644 --- a/src/lib/libcrypto/asn1/a_type.c +++ b/src/lib/libcrypto/asn1/a_type.c | |||
@@ -71,10 +71,7 @@ int ASN1_TYPE_get(ASN1_TYPE *a) | |||
71 | void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) | 71 | void ASN1_TYPE_set(ASN1_TYPE *a, int type, void *value) |
72 | { | 72 | { |
73 | if (a->value.ptr != NULL) | 73 | if (a->value.ptr != NULL) |
74 | { | 74 | ASN1_primitive_free((ASN1_VALUE **)&a, NULL); |
75 | ASN1_TYPE **tmp_a = &a; | ||
76 | ASN1_primitive_free((ASN1_VALUE **)tmp_a, NULL); | ||
77 | } | ||
78 | a->type=type; | 75 | a->type=type; |
79 | a->value.ptr=value; | 76 | a->value.ptr=value; |
80 | } | 77 | } |
diff --git a/src/lib/libcrypto/asn1/a_utctm.c b/src/lib/libcrypto/asn1/a_utctm.c new file mode 100644 index 0000000000..999852dae5 --- /dev/null +++ b/src/lib/libcrypto/asn1/a_utctm.c | |||
@@ -0,0 +1,298 @@ | |||
1 | /* crypto/asn1/a_utctm.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include <time.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include "o_time.h" | ||
63 | #include <openssl/asn1.h> | ||
64 | |||
65 | #if 0 | ||
66 | int i2d_ASN1_UTCTIME(ASN1_UTCTIME *a, unsigned char **pp) | ||
67 | { | ||
68 | #ifndef CHARSET_EBCDIC | ||
69 | return(i2d_ASN1_bytes((ASN1_STRING *)a,pp, | ||
70 | V_ASN1_UTCTIME,V_ASN1_UNIVERSAL)); | ||
71 | #else | ||
72 | /* KLUDGE! We convert to ascii before writing DER */ | ||
73 | int len; | ||
74 | char tmp[24]; | ||
75 | ASN1_STRING x = *(ASN1_STRING *)a; | ||
76 | |||
77 | len = x.length; | ||
78 | ebcdic2ascii(tmp, x.data, (len >= sizeof tmp) ? sizeof tmp : len); | ||
79 | x.data = tmp; | ||
80 | return i2d_ASN1_bytes(&x, pp, V_ASN1_UTCTIME,V_ASN1_UNIVERSAL); | ||
81 | #endif | ||
82 | } | ||
83 | |||
84 | |||
85 | ASN1_UTCTIME *d2i_ASN1_UTCTIME(ASN1_UTCTIME **a, unsigned char **pp, | ||
86 | long length) | ||
87 | { | ||
88 | ASN1_UTCTIME *ret=NULL; | ||
89 | |||
90 | ret=(ASN1_UTCTIME *)d2i_ASN1_bytes((ASN1_STRING **)a,pp,length, | ||
91 | V_ASN1_UTCTIME,V_ASN1_UNIVERSAL); | ||
92 | if (ret == NULL) | ||
93 | { | ||
94 | ASN1err(ASN1_F_D2I_ASN1_UTCTIME,ERR_R_NESTED_ASN1_ERROR); | ||
95 | return(NULL); | ||
96 | } | ||
97 | #ifdef CHARSET_EBCDIC | ||
98 | ascii2ebcdic(ret->data, ret->data, ret->length); | ||
99 | #endif | ||
100 | if (!ASN1_UTCTIME_check(ret)) | ||
101 | { | ||
102 | ASN1err(ASN1_F_D2I_ASN1_UTCTIME,ASN1_R_INVALID_TIME_FORMAT); | ||
103 | goto err; | ||
104 | } | ||
105 | |||
106 | return(ret); | ||
107 | err: | ||
108 | if ((ret != NULL) && ((a == NULL) || (*a != ret))) | ||
109 | M_ASN1_UTCTIME_free(ret); | ||
110 | return(NULL); | ||
111 | } | ||
112 | |||
113 | #endif | ||
114 | |||
115 | int ASN1_UTCTIME_check(ASN1_UTCTIME *d) | ||
116 | { | ||
117 | static int min[8]={ 0, 1, 1, 0, 0, 0, 0, 0}; | ||
118 | static int max[8]={99,12,31,23,59,59,12,59}; | ||
119 | char *a; | ||
120 | int n,i,l,o; | ||
121 | |||
122 | if (d->type != V_ASN1_UTCTIME) return(0); | ||
123 | l=d->length; | ||
124 | a=(char *)d->data; | ||
125 | o=0; | ||
126 | |||
127 | if (l < 11) goto err; | ||
128 | for (i=0; i<6; i++) | ||
129 | { | ||
130 | if ((i == 5) && ((a[o] == 'Z') || | ||
131 | (a[o] == '+') || (a[o] == '-'))) | ||
132 | { i++; break; } | ||
133 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
134 | n= a[o]-'0'; | ||
135 | if (++o > l) goto err; | ||
136 | |||
137 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
138 | n=(n*10)+ a[o]-'0'; | ||
139 | if (++o > l) goto err; | ||
140 | |||
141 | if ((n < min[i]) || (n > max[i])) goto err; | ||
142 | } | ||
143 | if (a[o] == 'Z') | ||
144 | o++; | ||
145 | else if ((a[o] == '+') || (a[o] == '-')) | ||
146 | { | ||
147 | o++; | ||
148 | if (o+4 > l) goto err; | ||
149 | for (i=6; i<8; i++) | ||
150 | { | ||
151 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
152 | n= a[o]-'0'; | ||
153 | o++; | ||
154 | if ((a[o] < '0') || (a[o] > '9')) goto err; | ||
155 | n=(n*10)+ a[o]-'0'; | ||
156 | if ((n < min[i]) || (n > max[i])) goto err; | ||
157 | o++; | ||
158 | } | ||
159 | } | ||
160 | return(o == l); | ||
161 | err: | ||
162 | return(0); | ||
163 | } | ||
164 | |||
165 | int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, char *str) | ||
166 | { | ||
167 | ASN1_UTCTIME t; | ||
168 | |||
169 | t.type=V_ASN1_UTCTIME; | ||
170 | t.length=strlen(str); | ||
171 | t.data=(unsigned char *)str; | ||
172 | if (ASN1_UTCTIME_check(&t)) | ||
173 | { | ||
174 | if (s != NULL) | ||
175 | { | ||
176 | ASN1_STRING_set((ASN1_STRING *)s, | ||
177 | (unsigned char *)str,t.length); | ||
178 | s->type = V_ASN1_UTCTIME; | ||
179 | } | ||
180 | return(1); | ||
181 | } | ||
182 | else | ||
183 | return(0); | ||
184 | } | ||
185 | |||
186 | ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t) | ||
187 | { | ||
188 | char *p; | ||
189 | struct tm *ts; | ||
190 | struct tm data; | ||
191 | size_t len = 20; | ||
192 | |||
193 | if (s == NULL) | ||
194 | s=M_ASN1_UTCTIME_new(); | ||
195 | if (s == NULL) | ||
196 | return(NULL); | ||
197 | |||
198 | ts=OPENSSL_gmtime(&t, &data); | ||
199 | if (ts == NULL) | ||
200 | return(NULL); | ||
201 | |||
202 | p=(char *)s->data; | ||
203 | if ((p == NULL) || ((size_t)s->length < len)) | ||
204 | { | ||
205 | p=OPENSSL_malloc(len); | ||
206 | if (p == NULL) return(NULL); | ||
207 | if (s->data != NULL) | ||
208 | OPENSSL_free(s->data); | ||
209 | s->data=(unsigned char *)p; | ||
210 | } | ||
211 | |||
212 | BIO_snprintf(p,len,"%02d%02d%02d%02d%02d%02dZ",ts->tm_year%100, | ||
213 | ts->tm_mon+1,ts->tm_mday,ts->tm_hour,ts->tm_min,ts->tm_sec); | ||
214 | s->length=strlen(p); | ||
215 | s->type=V_ASN1_UTCTIME; | ||
216 | #ifdef CHARSET_EBCDIC_not | ||
217 | ebcdic2ascii(s->data, s->data, s->length); | ||
218 | #endif | ||
219 | return(s); | ||
220 | } | ||
221 | |||
222 | |||
223 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | ||
224 | { | ||
225 | struct tm *tm; | ||
226 | struct tm data; | ||
227 | int offset; | ||
228 | int year; | ||
229 | |||
230 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') | ||
231 | |||
232 | if (s->data[12] == 'Z') | ||
233 | offset=0; | ||
234 | else | ||
235 | { | ||
236 | offset = g2(s->data+13)*60+g2(s->data+15); | ||
237 | if (s->data[12] == '-') | ||
238 | offset = -offset; | ||
239 | } | ||
240 | |||
241 | t -= offset*60; /* FIXME: may overflow in extreme cases */ | ||
242 | |||
243 | tm = OPENSSL_gmtime(&t, &data); | ||
244 | |||
245 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 | ||
246 | year = g2(s->data); | ||
247 | if (year < 50) | ||
248 | year += 100; | ||
249 | return_cmp(year, tm->tm_year); | ||
250 | return_cmp(g2(s->data+2) - 1, tm->tm_mon); | ||
251 | return_cmp(g2(s->data+4), tm->tm_mday); | ||
252 | return_cmp(g2(s->data+6), tm->tm_hour); | ||
253 | return_cmp(g2(s->data+8), tm->tm_min); | ||
254 | return_cmp(g2(s->data+10), tm->tm_sec); | ||
255 | #undef g2 | ||
256 | #undef return_cmp | ||
257 | |||
258 | return 0; | ||
259 | } | ||
260 | |||
261 | |||
262 | #if 0 | ||
263 | time_t ASN1_UTCTIME_get(const ASN1_UTCTIME *s) | ||
264 | { | ||
265 | struct tm tm; | ||
266 | int offset; | ||
267 | |||
268 | memset(&tm,'\0',sizeof tm); | ||
269 | |||
270 | #define g2(p) (((p)[0]-'0')*10+(p)[1]-'0') | ||
271 | tm.tm_year=g2(s->data); | ||
272 | if(tm.tm_year < 50) | ||
273 | tm.tm_year+=100; | ||
274 | tm.tm_mon=g2(s->data+2)-1; | ||
275 | tm.tm_mday=g2(s->data+4); | ||
276 | tm.tm_hour=g2(s->data+6); | ||
277 | tm.tm_min=g2(s->data+8); | ||
278 | tm.tm_sec=g2(s->data+10); | ||
279 | if(s->data[12] == 'Z') | ||
280 | offset=0; | ||
281 | else | ||
282 | { | ||
283 | offset=g2(s->data+13)*60+g2(s->data+15); | ||
284 | if(s->data[12] == '-') | ||
285 | offset= -offset; | ||
286 | } | ||
287 | #undef g2 | ||
288 | |||
289 | return mktime(&tm)-offset*60; /* FIXME: mktime assumes the current timezone | ||
290 | * instead of UTC, and unless we rewrite OpenSSL | ||
291 | * in Lisp we cannot locally change the timezone | ||
292 | * without possibly interfering with other parts | ||
293 | * of the program. timegm, which uses UTC, is | ||
294 | * non-standard. | ||
295 | * Also time_t is inappropriate for general | ||
296 | * UTC times because it may a 32 bit type. */ | ||
297 | } | ||
298 | #endif | ||
diff --git a/src/lib/libcrypto/asn1/a_verify.c b/src/lib/libcrypto/asn1/a_verify.c index 18ef0acf00..da2a0a6d69 100644 --- a/src/lib/libcrypto/asn1/a_verify.c +++ b/src/lib/libcrypto/asn1/a_verify.c | |||
@@ -142,13 +142,6 @@ int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, ASN1_BIT_STRING *signat | |||
142 | goto err; | 142 | goto err; |
143 | } | 143 | } |
144 | 144 | ||
145 | if (!EVP_VerifyInit_ex(&ctx,type, NULL)) | ||
146 | { | ||
147 | ASN1err(ASN1_F_ASN1_VERIFY,ERR_R_EVP_LIB); | ||
148 | ret=0; | ||
149 | goto err; | ||
150 | } | ||
151 | |||
152 | inl = ASN1_item_i2d(asn, &buf_in, it); | 145 | inl = ASN1_item_i2d(asn, &buf_in, it); |
153 | 146 | ||
154 | if (buf_in == NULL) | 147 | if (buf_in == NULL) |
@@ -157,6 +150,7 @@ int ASN1_item_verify(const ASN1_ITEM *it, X509_ALGOR *a, ASN1_BIT_STRING *signat | |||
157 | goto err; | 150 | goto err; |
158 | } | 151 | } |
159 | 152 | ||
153 | EVP_VerifyInit_ex(&ctx,type, NULL); | ||
160 | EVP_VerifyUpdate(&ctx,(unsigned char *)buf_in,inl); | 154 | EVP_VerifyUpdate(&ctx,(unsigned char *)buf_in,inl); |
161 | 155 | ||
162 | OPENSSL_cleanse(buf_in,(unsigned int)inl); | 156 | OPENSSL_cleanse(buf_in,(unsigned int)inl); |
diff --git a/src/lib/libcrypto/asn1/asn1.h b/src/lib/libcrypto/asn1/asn1.h index ceaeb4cbe3..3414509f1b 100644 --- a/src/lib/libcrypto/asn1/asn1.h +++ b/src/lib/libcrypto/asn1/asn1.h | |||
@@ -829,7 +829,7 @@ BIGNUM *ASN1_ENUMERATED_to_BN(ASN1_ENUMERATED *ai,BIGNUM *bn); | |||
829 | 829 | ||
830 | /* General */ | 830 | /* General */ |
831 | /* given a string, return the correct type, max is the maximum length */ | 831 | /* given a string, return the correct type, max is the maximum length */ |
832 | int ASN1_PRINTABLE_type(const unsigned char *s, int max); | 832 | int ASN1_PRINTABLE_type(unsigned char *s, int max); |
833 | 833 | ||
834 | int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass); | 834 | int i2d_ASN1_bytes(ASN1_STRING *a, unsigned char **pp, int tag, int xclass); |
835 | ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, unsigned char **pp, | 835 | ASN1_STRING *d2i_ASN1_bytes(ASN1_STRING **a, unsigned char **pp, |
@@ -950,19 +950,16 @@ void ERR_load_ASN1_strings(void); | |||
950 | #define ASN1_F_A2I_ASN1_ENUMERATED 101 | 950 | #define ASN1_F_A2I_ASN1_ENUMERATED 101 |
951 | #define ASN1_F_A2I_ASN1_INTEGER 102 | 951 | #define ASN1_F_A2I_ASN1_INTEGER 102 |
952 | #define ASN1_F_A2I_ASN1_STRING 103 | 952 | #define ASN1_F_A2I_ASN1_STRING 103 |
953 | #define ASN1_F_ASN1_BIT_STRING_SET_BIT 176 | ||
954 | #define ASN1_F_ASN1_CHECK_TLEN 104 | 953 | #define ASN1_F_ASN1_CHECK_TLEN 104 |
955 | #define ASN1_F_ASN1_COLLATE_PRIMITIVE 105 | 954 | #define ASN1_F_ASN1_COLLATE_PRIMITIVE 105 |
956 | #define ASN1_F_ASN1_COLLECT 106 | 955 | #define ASN1_F_ASN1_COLLECT 106 |
957 | #define ASN1_F_ASN1_D2I_BIO 107 | 956 | #define ASN1_F_ASN1_D2I_BIO 107 |
958 | #define ASN1_F_ASN1_D2I_EX_PRIMITIVE 108 | 957 | #define ASN1_F_ASN1_D2I_EX_PRIMITIVE 108 |
959 | #define ASN1_F_ASN1_D2I_FP 109 | 958 | #define ASN1_F_ASN1_D2I_FP 109 |
960 | #define ASN1_F_ASN1_DIGEST 177 | ||
961 | #define ASN1_F_ASN1_DO_ADB 110 | 959 | #define ASN1_F_ASN1_DO_ADB 110 |
962 | #define ASN1_F_ASN1_DUP 111 | 960 | #define ASN1_F_ASN1_DUP 111 |
963 | #define ASN1_F_ASN1_ENUMERATED_SET 112 | 961 | #define ASN1_F_ASN1_ENUMERATED_SET 112 |
964 | #define ASN1_F_ASN1_ENUMERATED_TO_BN 113 | 962 | #define ASN1_F_ASN1_ENUMERATED_TO_BN 113 |
965 | #define ASN1_F_ASN1_GENERALIZEDTIME_SET 178 | ||
966 | #define ASN1_F_ASN1_GET_OBJECT 114 | 963 | #define ASN1_F_ASN1_GET_OBJECT 114 |
967 | #define ASN1_F_ASN1_HEADER_NEW 115 | 964 | #define ASN1_F_ASN1_HEADER_NEW 115 |
968 | #define ASN1_F_ASN1_I2D_BIO 116 | 965 | #define ASN1_F_ASN1_I2D_BIO 116 |
@@ -978,7 +975,6 @@ void ERR_load_ASN1_strings(void); | |||
978 | #define ASN1_F_ASN1_SEQ_PACK 126 | 975 | #define ASN1_F_ASN1_SEQ_PACK 126 |
979 | #define ASN1_F_ASN1_SEQ_UNPACK 127 | 976 | #define ASN1_F_ASN1_SEQ_UNPACK 127 |
980 | #define ASN1_F_ASN1_SIGN 128 | 977 | #define ASN1_F_ASN1_SIGN 128 |
981 | #define ASN1_F_ASN1_STRING_SET 179 | ||
982 | #define ASN1_F_ASN1_STRING_TABLE_ADD 129 | 978 | #define ASN1_F_ASN1_STRING_TABLE_ADD 129 |
983 | #define ASN1_F_ASN1_STRING_TYPE_NEW 130 | 979 | #define ASN1_F_ASN1_STRING_TYPE_NEW 130 |
984 | #define ASN1_F_ASN1_TEMPLATE_D2I 131 | 980 | #define ASN1_F_ASN1_TEMPLATE_D2I 131 |
@@ -988,7 +984,6 @@ void ERR_load_ASN1_strings(void); | |||
988 | #define ASN1_F_ASN1_TYPE_GET_INT_OCTETSTRING 134 | 984 | #define ASN1_F_ASN1_TYPE_GET_INT_OCTETSTRING 134 |
989 | #define ASN1_F_ASN1_TYPE_GET_OCTETSTRING 135 | 985 | #define ASN1_F_ASN1_TYPE_GET_OCTETSTRING 135 |
990 | #define ASN1_F_ASN1_UNPACK_STRING 136 | 986 | #define ASN1_F_ASN1_UNPACK_STRING 136 |
991 | #define ASN1_F_ASN1_UTCTIME_SET 180 | ||
992 | #define ASN1_F_ASN1_VERIFY 137 | 987 | #define ASN1_F_ASN1_VERIFY 137 |
993 | #define ASN1_F_BN_TO_ASN1_ENUMERATED 138 | 988 | #define ASN1_F_BN_TO_ASN1_ENUMERATED 138 |
994 | #define ASN1_F_BN_TO_ASN1_INTEGER 139 | 989 | #define ASN1_F_BN_TO_ASN1_INTEGER 139 |
@@ -1012,7 +1007,6 @@ void ERR_load_ASN1_strings(void); | |||
1012 | #define ASN1_F_D2I_X509_CINF 157 | 1007 | #define ASN1_F_D2I_X509_CINF 157 |
1013 | #define ASN1_F_D2I_X509_NAME 158 | 1008 | #define ASN1_F_D2I_X509_NAME 158 |
1014 | #define ASN1_F_D2I_X509_PKEY 159 | 1009 | #define ASN1_F_D2I_X509_PKEY 159 |
1015 | #define ASN1_F_I2D_ASN1_SET 181 | ||
1016 | #define ASN1_F_I2D_ASN1_TIME 160 | 1010 | #define ASN1_F_I2D_ASN1_TIME 160 |
1017 | #define ASN1_F_I2D_DSA_PUBKEY 161 | 1011 | #define ASN1_F_I2D_DSA_PUBKEY 161 |
1018 | #define ASN1_F_I2D_NETSCAPE_RSA 162 | 1012 | #define ASN1_F_I2D_NETSCAPE_RSA 162 |
diff --git a/src/lib/libcrypto/asn1/asn1_err.c b/src/lib/libcrypto/asn1/asn1_err.c index 3b57c8fbae..094ec06fda 100644 --- a/src/lib/libcrypto/asn1/asn1_err.c +++ b/src/lib/libcrypto/asn1/asn1_err.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* crypto/asn1/asn1_err.c */ | 1 | /* crypto/asn1/asn1_err.c */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999-2002 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
5 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
6 | * modification, are permitted provided that the following conditions | 6 | * modification, are permitted provided that the following conditions |
@@ -70,19 +70,16 @@ static ERR_STRING_DATA ASN1_str_functs[]= | |||
70 | {ERR_PACK(0,ASN1_F_A2I_ASN1_ENUMERATED,0), "a2i_ASN1_ENUMERATED"}, | 70 | {ERR_PACK(0,ASN1_F_A2I_ASN1_ENUMERATED,0), "a2i_ASN1_ENUMERATED"}, |
71 | {ERR_PACK(0,ASN1_F_A2I_ASN1_INTEGER,0), "a2i_ASN1_INTEGER"}, | 71 | {ERR_PACK(0,ASN1_F_A2I_ASN1_INTEGER,0), "a2i_ASN1_INTEGER"}, |
72 | {ERR_PACK(0,ASN1_F_A2I_ASN1_STRING,0), "a2i_ASN1_STRING"}, | 72 | {ERR_PACK(0,ASN1_F_A2I_ASN1_STRING,0), "a2i_ASN1_STRING"}, |
73 | {ERR_PACK(0,ASN1_F_ASN1_BIT_STRING_SET_BIT,0), "ASN1_BIT_STRING_set_bit"}, | ||
74 | {ERR_PACK(0,ASN1_F_ASN1_CHECK_TLEN,0), "ASN1_CHECK_TLEN"}, | 73 | {ERR_PACK(0,ASN1_F_ASN1_CHECK_TLEN,0), "ASN1_CHECK_TLEN"}, |
75 | {ERR_PACK(0,ASN1_F_ASN1_COLLATE_PRIMITIVE,0), "ASN1_COLLATE_PRIMITIVE"}, | 74 | {ERR_PACK(0,ASN1_F_ASN1_COLLATE_PRIMITIVE,0), "ASN1_COLLATE_PRIMITIVE"}, |
76 | {ERR_PACK(0,ASN1_F_ASN1_COLLECT,0), "ASN1_COLLECT"}, | 75 | {ERR_PACK(0,ASN1_F_ASN1_COLLECT,0), "ASN1_COLLECT"}, |
77 | {ERR_PACK(0,ASN1_F_ASN1_D2I_BIO,0), "ASN1_d2i_bio"}, | 76 | {ERR_PACK(0,ASN1_F_ASN1_D2I_BIO,0), "ASN1_d2i_bio"}, |
78 | {ERR_PACK(0,ASN1_F_ASN1_D2I_EX_PRIMITIVE,0), "ASN1_D2I_EX_PRIMITIVE"}, | 77 | {ERR_PACK(0,ASN1_F_ASN1_D2I_EX_PRIMITIVE,0), "ASN1_D2I_EX_PRIMITIVE"}, |
79 | {ERR_PACK(0,ASN1_F_ASN1_D2I_FP,0), "ASN1_d2i_fp"}, | 78 | {ERR_PACK(0,ASN1_F_ASN1_D2I_FP,0), "ASN1_d2i_fp"}, |
80 | {ERR_PACK(0,ASN1_F_ASN1_DIGEST,0), "ASN1_digest"}, | ||
81 | {ERR_PACK(0,ASN1_F_ASN1_DO_ADB,0), "ASN1_DO_ADB"}, | 79 | {ERR_PACK(0,ASN1_F_ASN1_DO_ADB,0), "ASN1_DO_ADB"}, |
82 | {ERR_PACK(0,ASN1_F_ASN1_DUP,0), "ASN1_dup"}, | 80 | {ERR_PACK(0,ASN1_F_ASN1_DUP,0), "ASN1_dup"}, |
83 | {ERR_PACK(0,ASN1_F_ASN1_ENUMERATED_SET,0), "ASN1_ENUMERATED_set"}, | 81 | {ERR_PACK(0,ASN1_F_ASN1_ENUMERATED_SET,0), "ASN1_ENUMERATED_set"}, |
84 | {ERR_PACK(0,ASN1_F_ASN1_ENUMERATED_TO_BN,0), "ASN1_ENUMERATED_to_BN"}, | 82 | {ERR_PACK(0,ASN1_F_ASN1_ENUMERATED_TO_BN,0), "ASN1_ENUMERATED_to_BN"}, |
85 | {ERR_PACK(0,ASN1_F_ASN1_GENERALIZEDTIME_SET,0), "ASN1_GENERALIZEDTIME_set"}, | ||
86 | {ERR_PACK(0,ASN1_F_ASN1_GET_OBJECT,0), "ASN1_get_object"}, | 83 | {ERR_PACK(0,ASN1_F_ASN1_GET_OBJECT,0), "ASN1_get_object"}, |
87 | {ERR_PACK(0,ASN1_F_ASN1_HEADER_NEW,0), "ASN1_HEADER_new"}, | 84 | {ERR_PACK(0,ASN1_F_ASN1_HEADER_NEW,0), "ASN1_HEADER_new"}, |
88 | {ERR_PACK(0,ASN1_F_ASN1_I2D_BIO,0), "ASN1_i2d_bio"}, | 85 | {ERR_PACK(0,ASN1_F_ASN1_I2D_BIO,0), "ASN1_i2d_bio"}, |
@@ -98,7 +95,6 @@ static ERR_STRING_DATA ASN1_str_functs[]= | |||
98 | {ERR_PACK(0,ASN1_F_ASN1_SEQ_PACK,0), "ASN1_seq_pack"}, | 95 | {ERR_PACK(0,ASN1_F_ASN1_SEQ_PACK,0), "ASN1_seq_pack"}, |
99 | {ERR_PACK(0,ASN1_F_ASN1_SEQ_UNPACK,0), "ASN1_seq_unpack"}, | 96 | {ERR_PACK(0,ASN1_F_ASN1_SEQ_UNPACK,0), "ASN1_seq_unpack"}, |
100 | {ERR_PACK(0,ASN1_F_ASN1_SIGN,0), "ASN1_sign"}, | 97 | {ERR_PACK(0,ASN1_F_ASN1_SIGN,0), "ASN1_sign"}, |
101 | {ERR_PACK(0,ASN1_F_ASN1_STRING_SET,0), "ASN1_STRING_set"}, | ||
102 | {ERR_PACK(0,ASN1_F_ASN1_STRING_TABLE_ADD,0), "ASN1_STRING_TABLE_add"}, | 98 | {ERR_PACK(0,ASN1_F_ASN1_STRING_TABLE_ADD,0), "ASN1_STRING_TABLE_add"}, |
103 | {ERR_PACK(0,ASN1_F_ASN1_STRING_TYPE_NEW,0), "ASN1_STRING_type_new"}, | 99 | {ERR_PACK(0,ASN1_F_ASN1_STRING_TYPE_NEW,0), "ASN1_STRING_type_new"}, |
104 | {ERR_PACK(0,ASN1_F_ASN1_TEMPLATE_D2I,0), "ASN1_TEMPLATE_D2I"}, | 100 | {ERR_PACK(0,ASN1_F_ASN1_TEMPLATE_D2I,0), "ASN1_TEMPLATE_D2I"}, |
@@ -108,7 +104,6 @@ static ERR_STRING_DATA ASN1_str_functs[]= | |||
108 | {ERR_PACK(0,ASN1_F_ASN1_TYPE_GET_INT_OCTETSTRING,0), "ASN1_TYPE_get_int_octetstring"}, | 104 | {ERR_PACK(0,ASN1_F_ASN1_TYPE_GET_INT_OCTETSTRING,0), "ASN1_TYPE_get_int_octetstring"}, |
109 | {ERR_PACK(0,ASN1_F_ASN1_TYPE_GET_OCTETSTRING,0), "ASN1_TYPE_get_octetstring"}, | 105 | {ERR_PACK(0,ASN1_F_ASN1_TYPE_GET_OCTETSTRING,0), "ASN1_TYPE_get_octetstring"}, |
110 | {ERR_PACK(0,ASN1_F_ASN1_UNPACK_STRING,0), "ASN1_unpack_string"}, | 106 | {ERR_PACK(0,ASN1_F_ASN1_UNPACK_STRING,0), "ASN1_unpack_string"}, |
111 | {ERR_PACK(0,ASN1_F_ASN1_UTCTIME_SET,0), "ASN1_UTCTIME_set"}, | ||
112 | {ERR_PACK(0,ASN1_F_ASN1_VERIFY,0), "ASN1_verify"}, | 107 | {ERR_PACK(0,ASN1_F_ASN1_VERIFY,0), "ASN1_verify"}, |
113 | {ERR_PACK(0,ASN1_F_BN_TO_ASN1_ENUMERATED,0), "BN_to_ASN1_ENUMERATED"}, | 108 | {ERR_PACK(0,ASN1_F_BN_TO_ASN1_ENUMERATED,0), "BN_to_ASN1_ENUMERATED"}, |
114 | {ERR_PACK(0,ASN1_F_BN_TO_ASN1_INTEGER,0), "BN_to_ASN1_INTEGER"}, | 109 | {ERR_PACK(0,ASN1_F_BN_TO_ASN1_INTEGER,0), "BN_to_ASN1_INTEGER"}, |
@@ -132,7 +127,6 @@ static ERR_STRING_DATA ASN1_str_functs[]= | |||
132 | {ERR_PACK(0,ASN1_F_D2I_X509_CINF,0), "D2I_X509_CINF"}, | 127 | {ERR_PACK(0,ASN1_F_D2I_X509_CINF,0), "D2I_X509_CINF"}, |
133 | {ERR_PACK(0,ASN1_F_D2I_X509_NAME,0), "D2I_X509_NAME"}, | 128 | {ERR_PACK(0,ASN1_F_D2I_X509_NAME,0), "D2I_X509_NAME"}, |
134 | {ERR_PACK(0,ASN1_F_D2I_X509_PKEY,0), "d2i_X509_PKEY"}, | 129 | {ERR_PACK(0,ASN1_F_D2I_X509_PKEY,0), "d2i_X509_PKEY"}, |
135 | {ERR_PACK(0,ASN1_F_I2D_ASN1_SET,0), "i2d_ASN1_SET"}, | ||
136 | {ERR_PACK(0,ASN1_F_I2D_ASN1_TIME,0), "I2D_ASN1_TIME"}, | 130 | {ERR_PACK(0,ASN1_F_I2D_ASN1_TIME,0), "I2D_ASN1_TIME"}, |
137 | {ERR_PACK(0,ASN1_F_I2D_DSA_PUBKEY,0), "i2d_DSA_PUBKEY"}, | 131 | {ERR_PACK(0,ASN1_F_I2D_DSA_PUBKEY,0), "i2d_DSA_PUBKEY"}, |
138 | {ERR_PACK(0,ASN1_F_I2D_NETSCAPE_RSA,0), "i2d_Netscape_RSA"}, | 132 | {ERR_PACK(0,ASN1_F_I2D_NETSCAPE_RSA,0), "i2d_Netscape_RSA"}, |
diff --git a/src/lib/libcrypto/asn1/asn1_lib.c b/src/lib/libcrypto/asn1/asn1_lib.c index 97b9b35f4b..a74f1368d3 100644 --- a/src/lib/libcrypto/asn1/asn1_lib.c +++ b/src/lib/libcrypto/asn1/asn1_lib.c | |||
@@ -349,7 +349,6 @@ int ASN1_STRING_set(ASN1_STRING *str, const void *_data, int len) | |||
349 | 349 | ||
350 | if (str->data == NULL) | 350 | if (str->data == NULL) |
351 | { | 351 | { |
352 | ASN1err(ASN1_F_ASN1_STRING_SET,ERR_R_MALLOC_FAILURE); | ||
353 | str->data=c; | 352 | str->data=c; |
354 | return(0); | 353 | return(0); |
355 | } | 354 | } |
diff --git a/src/lib/libcrypto/asn1/evp_asn1.c b/src/lib/libcrypto/asn1/evp_asn1.c index f92ce6cb5d..3506005a71 100644 --- a/src/lib/libcrypto/asn1/evp_asn1.c +++ b/src/lib/libcrypto/asn1/evp_asn1.c | |||
@@ -115,11 +115,7 @@ int ASN1_TYPE_set_int_octetstring(ASN1_TYPE *a, long num, unsigned char *data, | |||
115 | 115 | ||
116 | if ((osp=ASN1_STRING_new()) == NULL) return(0); | 116 | if ((osp=ASN1_STRING_new()) == NULL) return(0); |
117 | /* Grow the 'string' */ | 117 | /* Grow the 'string' */ |
118 | if (!ASN1_STRING_set(osp,NULL,size)) | 118 | ASN1_STRING_set(osp,NULL,size); |
119 | { | ||
120 | ASN1_STRING_free(osp); | ||
121 | return(0); | ||
122 | } | ||
123 | 119 | ||
124 | M_ASN1_STRING_length_set(osp, size); | 120 | M_ASN1_STRING_length_set(osp, size); |
125 | p=M_ASN1_STRING_data(osp); | 121 | p=M_ASN1_STRING_data(osp); |
diff --git a/src/lib/libcrypto/asn1/f.c b/src/lib/libcrypto/asn1/f.c new file mode 100644 index 0000000000..82bccdfd51 --- /dev/null +++ b/src/lib/libcrypto/asn1/f.c | |||
@@ -0,0 +1,80 @@ | |||
1 | /* crypto/asn1/f.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | #include <stdio.h> | ||
59 | #include <openssl/asn1.h> | ||
60 | #include <openssl/err.h> | ||
61 | |||
62 | main() | ||
63 | { | ||
64 | ASN1_TYPE *at; | ||
65 | char buf[512]; | ||
66 | int n; | ||
67 | long l; | ||
68 | |||
69 | at=ASN1_TYPE_new(); | ||
70 | |||
71 | n=ASN1_TYPE_set_int_octetstring(at,98736,"01234567",8); | ||
72 | printf("%d\n",n); | ||
73 | n=ASN1_TYPE_get_int_octetstring(at,&l,buf,8); | ||
74 | buf[8]='\0'; | ||
75 | printf("%ld %d %d\n",l,n,buf[8]); | ||
76 | buf[8]='\0'; | ||
77 | printf("%s\n",buf); | ||
78 | ERR_load_crypto_strings(); | ||
79 | ERR_print_errors_fp(stderr); | ||
80 | } | ||
diff --git a/src/lib/libcrypto/asn1/p5_pbe.c b/src/lib/libcrypto/asn1/p5_pbe.c index ec788267e0..891150638e 100644 --- a/src/lib/libcrypto/asn1/p5_pbe.c +++ b/src/lib/libcrypto/asn1/p5_pbe.c | |||
@@ -76,55 +76,47 @@ IMPLEMENT_ASN1_FUNCTIONS(PBEPARAM) | |||
76 | X509_ALGOR *PKCS5_pbe_set(int alg, int iter, unsigned char *salt, | 76 | X509_ALGOR *PKCS5_pbe_set(int alg, int iter, unsigned char *salt, |
77 | int saltlen) | 77 | int saltlen) |
78 | { | 78 | { |
79 | PBEPARAM *pbe=NULL; | 79 | PBEPARAM *pbe; |
80 | ASN1_OBJECT *al; | 80 | ASN1_OBJECT *al; |
81 | X509_ALGOR *algor; | 81 | X509_ALGOR *algor; |
82 | ASN1_TYPE *astype=NULL; | 82 | ASN1_TYPE *astype; |
83 | 83 | ||
84 | if (!(pbe = PBEPARAM_new ())) { | 84 | if (!(pbe = PBEPARAM_new ())) { |
85 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); | 85 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); |
86 | goto err; | 86 | return NULL; |
87 | } | 87 | } |
88 | if(iter <= 0) iter = PKCS5_DEFAULT_ITER; | 88 | if(iter <= 0) iter = PKCS5_DEFAULT_ITER; |
89 | if (!ASN1_INTEGER_set(pbe->iter, iter)) { | 89 | ASN1_INTEGER_set (pbe->iter, iter); |
90 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); | ||
91 | goto err; | ||
92 | } | ||
93 | if (!saltlen) saltlen = PKCS5_SALT_LEN; | 90 | if (!saltlen) saltlen = PKCS5_SALT_LEN; |
94 | if (!(pbe->salt->data = OPENSSL_malloc (saltlen))) { | 91 | if (!(pbe->salt->data = OPENSSL_malloc (saltlen))) { |
95 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); | 92 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); |
96 | goto err; | 93 | return NULL; |
97 | } | 94 | } |
98 | pbe->salt->length = saltlen; | 95 | pbe->salt->length = saltlen; |
99 | if (salt) memcpy (pbe->salt->data, salt, saltlen); | 96 | if (salt) memcpy (pbe->salt->data, salt, saltlen); |
100 | else if (RAND_pseudo_bytes (pbe->salt->data, saltlen) < 0) | 97 | else if (RAND_pseudo_bytes (pbe->salt->data, saltlen) < 0) |
101 | goto err; | 98 | return NULL; |
102 | 99 | ||
103 | if (!(astype = ASN1_TYPE_new())) { | 100 | if (!(astype = ASN1_TYPE_new())) { |
104 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); | 101 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); |
105 | goto err; | 102 | return NULL; |
106 | } | 103 | } |
107 | 104 | ||
108 | astype->type = V_ASN1_SEQUENCE; | 105 | astype->type = V_ASN1_SEQUENCE; |
109 | if(!ASN1_pack_string(pbe, i2d_PBEPARAM, &astype->value.sequence)) { | 106 | if(!ASN1_pack_string(pbe, i2d_PBEPARAM, &astype->value.sequence)) { |
110 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); | 107 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); |
111 | goto err; | 108 | return NULL; |
112 | } | 109 | } |
113 | PBEPARAM_free (pbe); | 110 | PBEPARAM_free (pbe); |
114 | pbe = NULL; | ||
115 | 111 | ||
116 | al = OBJ_nid2obj(alg); /* never need to free al */ | 112 | al = OBJ_nid2obj(alg); /* never need to free al */ |
117 | if (!(algor = X509_ALGOR_new())) { | 113 | if (!(algor = X509_ALGOR_new())) { |
118 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); | 114 | ASN1err(ASN1_F_ASN1_PBE_SET,ERR_R_MALLOC_FAILURE); |
119 | goto err; | 115 | return NULL; |
120 | } | 116 | } |
121 | ASN1_OBJECT_free(algor->algorithm); | 117 | ASN1_OBJECT_free(algor->algorithm); |
122 | algor->algorithm = al; | 118 | algor->algorithm = al; |
123 | algor->parameter = astype; | 119 | algor->parameter = astype; |
124 | 120 | ||
125 | return (algor); | 121 | return (algor); |
126 | err: | ||
127 | if (pbe != NULL) PBEPARAM_free(pbe); | ||
128 | if (astype != NULL) ASN1_TYPE_free(astype); | ||
129 | return NULL; | ||
130 | } | 122 | } |
diff --git a/src/lib/libcrypto/asn1/p5_pbev2.c b/src/lib/libcrypto/asn1/p5_pbev2.c index e0dc0ec4ee..91e1c8987d 100644 --- a/src/lib/libcrypto/asn1/p5_pbev2.c +++ b/src/lib/libcrypto/asn1/p5_pbev2.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* p5_pbev2.c */ | 1 | /* p5_pbev2.c */ |
2 | /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL |
3 | * project 1999-2004. | 3 | * project 1999. |
4 | */ | 4 | */ |
5 | /* ==================================================================== | 5 | /* ==================================================================== |
6 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. | 6 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. |
@@ -113,8 +113,7 @@ X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter, | |||
113 | if(!(scheme->parameter = ASN1_TYPE_new())) goto merr; | 113 | if(!(scheme->parameter = ASN1_TYPE_new())) goto merr; |
114 | 114 | ||
115 | /* Create random IV */ | 115 | /* Create random IV */ |
116 | if (EVP_CIPHER_iv_length(cipher) && | 116 | if (RAND_pseudo_bytes(iv, EVP_CIPHER_iv_length(cipher)) < 0) |
117 | RAND_pseudo_bytes(iv, EVP_CIPHER_iv_length(cipher)) < 0) | ||
118 | goto err; | 117 | goto err; |
119 | 118 | ||
120 | EVP_CIPHER_CTX_init(&ctx); | 119 | EVP_CIPHER_CTX_init(&ctx); |
@@ -124,7 +123,6 @@ X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter, | |||
124 | if(EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) { | 123 | if(EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) { |
125 | ASN1err(ASN1_F_PKCS5_PBE2_SET, | 124 | ASN1err(ASN1_F_PKCS5_PBE2_SET, |
126 | ASN1_R_ERROR_SETTING_CIPHER_PARAMS); | 125 | ASN1_R_ERROR_SETTING_CIPHER_PARAMS); |
127 | EVP_CIPHER_CTX_cleanup(&ctx); | ||
128 | goto err; | 126 | goto err; |
129 | } | 127 | } |
130 | EVP_CIPHER_CTX_cleanup(&ctx); | 128 | EVP_CIPHER_CTX_cleanup(&ctx); |
diff --git a/src/lib/libcrypto/asn1/p8_key.c b/src/lib/libcrypto/asn1/p8_key.c new file mode 100644 index 0000000000..3a31248e14 --- /dev/null +++ b/src/lib/libcrypto/asn1/p8_key.c | |||
@@ -0,0 +1,131 @@ | |||
1 | /* crypto/asn1/p8_key.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/asn1_mac.h> | ||
62 | #include <openssl/objects.h> | ||
63 | |||
64 | int i2d_X509_KEY(X509 *a, unsigned char **pp) | ||
65 | { | ||
66 | M_ASN1_I2D_vars(a); | ||
67 | |||
68 | M_ASN1_I2D_len(a->cert_info, i2d_X509_CINF); | ||
69 | M_ASN1_I2D_len(a->sig_alg, i2d_X509_ALGOR); | ||
70 | M_ASN1_I2D_len(a->signature, i2d_ASN1_BIT_STRING); | ||
71 | |||
72 | M_ASN1_I2D_seq_total(); | ||
73 | |||
74 | M_ASN1_I2D_put(a->cert_info, i2d_X509_CINF); | ||
75 | M_ASN1_I2D_put(a->sig_alg, i2d_X509_ALGOR); | ||
76 | M_ASN1_I2D_put(a->signature, i2d_ASN1_BIT_STRING); | ||
77 | |||
78 | M_ASN1_I2D_finish(); | ||
79 | } | ||
80 | |||
81 | X509 *d2i_X509_KEY(X509 **a, unsigned char **pp, long length) | ||
82 | { | ||
83 | M_ASN1_D2I_vars(a,X509 *,X509_new); | ||
84 | |||
85 | M_ASN1_D2I_Init(); | ||
86 | M_ASN1_D2I_start_sequence(); | ||
87 | M_ASN1_D2I_get(ret->cert_info,d2i_X509_CINF); | ||
88 | M_ASN1_D2I_get(ret->sig_alg,d2i_X509_ALGOR); | ||
89 | M_ASN1_D2I_get(ret->signature,d2i_ASN1_BIT_STRING); | ||
90 | M_ASN1_D2I_Finish(a,X509_free,ASN1_F_D2I_X509); | ||
91 | } | ||
92 | |||
93 | X509 *X509_KEY_new(void) | ||
94 | { | ||
95 | X509_KEY *ret=NULL; | ||
96 | |||
97 | M_ASN1_New_OPENSSL_malloc(ret,X509_KEY); | ||
98 | ret->references=1; | ||
99 | ret->type=NID | ||
100 | M_ASN1_New(ret->cert_info,X509_CINF_new); | ||
101 | M_ASN1_New(ret->sig_alg,X509_ALGOR_new); | ||
102 | M_ASN1_New(ret->signature,ASN1_BIT_STRING_new); | ||
103 | return(ret); | ||
104 | M_ASN1_New_Error(ASN1_F_X509_NEW); | ||
105 | } | ||
106 | |||
107 | void X509_KEY_free(X509 *a) | ||
108 | { | ||
109 | int i; | ||
110 | |||
111 | if (a == NULL) return; | ||
112 | |||
113 | i=CRYPTO_add_lock(&a->references,-1,CRYPTO_LOCK_X509_KEY); | ||
114 | #ifdef REF_PRINT | ||
115 | REF_PRINT("X509_KEY",a); | ||
116 | #endif | ||
117 | if (i > 0) return; | ||
118 | #ifdef REF_CHECK | ||
119 | if (i < 0) | ||
120 | { | ||
121 | fprintf(stderr,"X509_KEY_free, bad reference count\n"); | ||
122 | abort(); | ||
123 | } | ||
124 | #endif | ||
125 | |||
126 | X509_CINF_free(a->cert_info); | ||
127 | X509_ALGOR_free(a->sig_alg); | ||
128 | ASN1_BIT_STRING_free(a->signature); | ||
129 | OPENSSL_free(a); | ||
130 | } | ||
131 | |||
diff --git a/src/lib/libcrypto/asn1/t_bitst.c b/src/lib/libcrypto/asn1/t_bitst.c index 397332d9b8..8ee789f082 100644 --- a/src/lib/libcrypto/asn1/t_bitst.c +++ b/src/lib/libcrypto/asn1/t_bitst.c | |||
@@ -84,10 +84,7 @@ int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, char *name, int value, | |||
84 | int bitnum; | 84 | int bitnum; |
85 | bitnum = ASN1_BIT_STRING_num_asc(name, tbl); | 85 | bitnum = ASN1_BIT_STRING_num_asc(name, tbl); |
86 | if(bitnum < 0) return 0; | 86 | if(bitnum < 0) return 0; |
87 | if(bs) { | 87 | if(bs) ASN1_BIT_STRING_set_bit(bs, bitnum, value); |
88 | if(!ASN1_BIT_STRING_set_bit(bs, bitnum, value)) | ||
89 | return 0; | ||
90 | } | ||
91 | return 1; | 88 | return 1; |
92 | } | 89 | } |
93 | 90 | ||
diff --git a/src/lib/libcrypto/asn1/t_x509.c b/src/lib/libcrypto/asn1/t_x509.c index d1034c47f8..30f68561b7 100644 --- a/src/lib/libcrypto/asn1/t_x509.c +++ b/src/lib/libcrypto/asn1/t_x509.c | |||
@@ -321,7 +321,7 @@ int X509_signature_print(BIO *bp, X509_ALGOR *sigalg, ASN1_STRING *sig) | |||
321 | int ASN1_STRING_print(BIO *bp, ASN1_STRING *v) | 321 | int ASN1_STRING_print(BIO *bp, ASN1_STRING *v) |
322 | { | 322 | { |
323 | int i,n; | 323 | int i,n; |
324 | char buf[80],*p;; | 324 | char buf[80],*p; |
325 | 325 | ||
326 | if (v == NULL) return(0); | 326 | if (v == NULL) return(0); |
327 | n=0; | 327 | n=0; |
diff --git a/src/lib/libcrypto/asn1/x_cinf.c b/src/lib/libcrypto/asn1/x_cinf.c new file mode 100644 index 0000000000..339a110eef --- /dev/null +++ b/src/lib/libcrypto/asn1/x_cinf.c | |||
@@ -0,0 +1,201 @@ | |||
1 | /* crypto/asn1/x_cinf.c */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/asn1_mac.h> | ||
62 | #include <openssl/x509.h> | ||
63 | |||
64 | int i2d_X509_CINF(X509_CINF *a, unsigned char **pp) | ||
65 | { | ||
66 | int v1=0,v2=0; | ||
67 | M_ASN1_I2D_vars(a); | ||
68 | |||
69 | M_ASN1_I2D_len_EXP_opt(a->version,i2d_ASN1_INTEGER,0,v1); | ||
70 | M_ASN1_I2D_len(a->serialNumber, i2d_ASN1_INTEGER); | ||
71 | M_ASN1_I2D_len(a->signature, i2d_X509_ALGOR); | ||
72 | M_ASN1_I2D_len(a->issuer, i2d_X509_NAME); | ||
73 | M_ASN1_I2D_len(a->validity, i2d_X509_VAL); | ||
74 | M_ASN1_I2D_len(a->subject, i2d_X509_NAME); | ||
75 | M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY); | ||
76 | M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING); | ||
77 | M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING); | ||
78 | M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, | ||
79 | i2d_X509_EXTENSION,3, | ||
80 | V_ASN1_SEQUENCE,v2); | ||
81 | |||
82 | M_ASN1_I2D_seq_total(); | ||
83 | |||
84 | M_ASN1_I2D_put_EXP_opt(a->version,i2d_ASN1_INTEGER,0,v1); | ||
85 | M_ASN1_I2D_put(a->serialNumber, i2d_ASN1_INTEGER); | ||
86 | M_ASN1_I2D_put(a->signature, i2d_X509_ALGOR); | ||
87 | M_ASN1_I2D_put(a->issuer, i2d_X509_NAME); | ||
88 | M_ASN1_I2D_put(a->validity, i2d_X509_VAL); | ||
89 | M_ASN1_I2D_put(a->subject, i2d_X509_NAME); | ||
90 | M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY); | ||
91 | M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1); | ||
92 | M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2); | ||
93 | M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions, | ||
94 | i2d_X509_EXTENSION,3, | ||
95 | V_ASN1_SEQUENCE,v2); | ||
96 | |||
97 | M_ASN1_I2D_finish(); | ||
98 | } | ||
99 | |||
100 | X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length) | ||
101 | { | ||
102 | int ver=0; | ||
103 | M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new); | ||
104 | |||
105 | M_ASN1_D2I_Init(); | ||
106 | M_ASN1_D2I_start_sequence(); | ||
107 | /* we have the optional version field */ | ||
108 | if (M_ASN1_next == (V_ASN1_CONTEXT_SPECIFIC | V_ASN1_CONSTRUCTED | 0)) | ||
109 | { | ||
110 | M_ASN1_D2I_get_EXP_opt(ret->version,d2i_ASN1_INTEGER,0); | ||
111 | if (ret->version->data != NULL) | ||
112 | ver=ret->version->data[0]; | ||
113 | } | ||
114 | else | ||
115 | { | ||
116 | if (ret->version != NULL) | ||
117 | { | ||
118 | M_ASN1_INTEGER_free(ret->version); | ||
119 | ret->version=NULL; | ||
120 | } | ||
121 | } | ||
122 | M_ASN1_D2I_get(ret->serialNumber,d2i_ASN1_INTEGER); | ||
123 | M_ASN1_D2I_get(ret->signature,d2i_X509_ALGOR); | ||
124 | M_ASN1_D2I_get(ret->issuer,d2i_X509_NAME); | ||
125 | M_ASN1_D2I_get(ret->validity,d2i_X509_VAL); | ||
126 | M_ASN1_D2I_get(ret->subject,d2i_X509_NAME); | ||
127 | M_ASN1_D2I_get(ret->key,d2i_X509_PUBKEY); | ||
128 | if (ver >= 1) /* version 2 extensions */ | ||
129 | { | ||
130 | if (ret->issuerUID != NULL) | ||
131 | { | ||
132 | M_ASN1_BIT_STRING_free(ret->issuerUID); | ||
133 | ret->issuerUID=NULL; | ||
134 | } | ||
135 | if (ret->subjectUID != NULL) | ||
136 | { | ||
137 | M_ASN1_BIT_STRING_free(ret->subjectUID); | ||
138 | ret->subjectUID=NULL; | ||
139 | } | ||
140 | M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1, | ||
141 | V_ASN1_BIT_STRING); | ||
142 | M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2, | ||
143 | V_ASN1_BIT_STRING); | ||
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 | ||
151 | if (ver >= 2) /* version 3 extensions */ | ||
152 | #endif | ||
153 | { | ||
154 | if (ret->extensions != NULL) | ||
155 | while (sk_X509_EXTENSION_num(ret->extensions)) | ||
156 | X509_EXTENSION_free( | ||
157 | sk_X509_EXTENSION_pop(ret->extensions)); | ||
158 | M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions, | ||
159 | d2i_X509_EXTENSION, | ||
160 | X509_EXTENSION_free,3, | ||
161 | V_ASN1_SEQUENCE); | ||
162 | } | ||
163 | M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF); | ||
164 | } | ||
165 | |||
166 | X509_CINF *X509_CINF_new(void) | ||
167 | { | ||
168 | X509_CINF *ret=NULL; | ||
169 | ASN1_CTX c; | ||
170 | |||
171 | M_ASN1_New_Malloc(ret,X509_CINF); | ||
172 | ret->version=NULL; | ||
173 | M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new); | ||
174 | M_ASN1_New(ret->signature,X509_ALGOR_new); | ||
175 | M_ASN1_New(ret->issuer,X509_NAME_new); | ||
176 | M_ASN1_New(ret->validity,X509_VAL_new); | ||
177 | M_ASN1_New(ret->subject,X509_NAME_new); | ||
178 | M_ASN1_New(ret->key,X509_PUBKEY_new); | ||
179 | ret->issuerUID=NULL; | ||
180 | ret->subjectUID=NULL; | ||
181 | ret->extensions=NULL; | ||
182 | return(ret); | ||
183 | M_ASN1_New_Error(ASN1_F_X509_CINF_NEW); | ||
184 | } | ||
185 | |||
186 | void X509_CINF_free(X509_CINF *a) | ||
187 | { | ||
188 | if (a == NULL) return; | ||
189 | M_ASN1_INTEGER_free(a->version); | ||
190 | M_ASN1_INTEGER_free(a->serialNumber); | ||
191 | X509_ALGOR_free(a->signature); | ||
192 | X509_NAME_free(a->issuer); | ||
193 | X509_VAL_free(a->validity); | ||
194 | X509_NAME_free(a->subject); | ||
195 | X509_PUBKEY_free(a->key); | ||
196 | M_ASN1_BIT_STRING_free(a->issuerUID); | ||
197 | M_ASN1_BIT_STRING_free(a->subjectUID); | ||
198 | sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free); | ||
199 | OPENSSL_free(a); | ||
200 | } | ||
201 | |||
diff --git a/src/lib/libcrypto/asn1/x_crl.c b/src/lib/libcrypto/asn1/x_crl.c index b99f8fc522..11fce96825 100644 --- a/src/lib/libcrypto/asn1/x_crl.c +++ b/src/lib/libcrypto/asn1/x_crl.c | |||
@@ -63,6 +63,8 @@ | |||
63 | 63 | ||
64 | static int X509_REVOKED_cmp(const X509_REVOKED * const *a, | 64 | static int X509_REVOKED_cmp(const X509_REVOKED * const *a, |
65 | const X509_REVOKED * const *b); | 65 | const X509_REVOKED * const *b); |
66 | static int X509_REVOKED_seq_cmp(const X509_REVOKED * const *a, | ||
67 | const X509_REVOKED * const *b); | ||
66 | 68 | ||
67 | ASN1_SEQUENCE(X509_REVOKED) = { | 69 | ASN1_SEQUENCE(X509_REVOKED) = { |
68 | ASN1_SIMPLE(X509_REVOKED,serialNumber, ASN1_INTEGER), | 70 | ASN1_SIMPLE(X509_REVOKED,serialNumber, ASN1_INTEGER), |
@@ -70,28 +72,43 @@ ASN1_SEQUENCE(X509_REVOKED) = { | |||
70 | ASN1_SEQUENCE_OF_OPT(X509_REVOKED,extensions, X509_EXTENSION) | 72 | ASN1_SEQUENCE_OF_OPT(X509_REVOKED,extensions, X509_EXTENSION) |
71 | } ASN1_SEQUENCE_END(X509_REVOKED) | 73 | } ASN1_SEQUENCE_END(X509_REVOKED) |
72 | 74 | ||
73 | /* The X509_CRL_INFO structure needs a bit of customisation. | 75 | /* The X509_CRL_INFO structure needs a bit of customisation. This is actually |
74 | * Since we cache the original encoding the signature wont be affected by | 76 | * mirroring the old behaviour: its purpose is to allow the use of |
75 | * reordering of the revoked field. | 77 | * sk_X509_REVOKED_find to lookup revoked certificates. Unfortunately |
78 | * this will zap the original order and the signature so we keep a copy | ||
79 | * of the original positions and reorder appropriately before encoding. | ||
80 | * | ||
81 | * Might want to see if there's a better way of doing this later... | ||
76 | */ | 82 | */ |
77 | static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) | 83 | static int crl_inf_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) |
78 | { | 84 | { |
79 | X509_CRL_INFO *a = (X509_CRL_INFO *)*pval; | 85 | X509_CRL_INFO *a = (X509_CRL_INFO *)*pval; |
86 | int i; | ||
87 | int (*old_cmp)(const X509_REVOKED * const *, | ||
88 | const X509_REVOKED * const *); | ||
80 | 89 | ||
81 | if(!a || !a->revoked) return 1; | 90 | if(!a || !a->revoked) return 1; |
82 | switch(operation) { | 91 | switch(operation) { |
83 | /* Just set cmp function here. We don't sort because that | 92 | |
84 | * would affect the output of X509_CRL_print(). | 93 | /* Save original order */ |
85 | */ | ||
86 | case ASN1_OP_D2I_POST: | 94 | case ASN1_OP_D2I_POST: |
95 | for (i=0; i<sk_X509_REVOKED_num(a->revoked); i++) | ||
96 | sk_X509_REVOKED_value(a->revoked,i)->sequence=i; | ||
87 | sk_X509_REVOKED_set_cmp_func(a->revoked,X509_REVOKED_cmp); | 97 | sk_X509_REVOKED_set_cmp_func(a->revoked,X509_REVOKED_cmp); |
88 | break; | 98 | break; |
99 | |||
100 | /* Restore original order */ | ||
101 | case ASN1_OP_I2D_PRE: | ||
102 | old_cmp=sk_X509_REVOKED_set_cmp_func(a->revoked,X509_REVOKED_seq_cmp); | ||
103 | sk_X509_REVOKED_sort(a->revoked); | ||
104 | sk_X509_REVOKED_set_cmp_func(a->revoked,old_cmp); | ||
105 | break; | ||
89 | } | 106 | } |
90 | return 1; | 107 | return 1; |
91 | } | 108 | } |
92 | 109 | ||
93 | 110 | ||
94 | ASN1_SEQUENCE_enc(X509_CRL_INFO, enc, crl_inf_cb) = { | 111 | ASN1_SEQUENCE_cb(X509_CRL_INFO, crl_inf_cb) = { |
95 | ASN1_OPT(X509_CRL_INFO, version, ASN1_INTEGER), | 112 | ASN1_OPT(X509_CRL_INFO, version, ASN1_INTEGER), |
96 | ASN1_SIMPLE(X509_CRL_INFO, sig_alg, X509_ALGOR), | 113 | ASN1_SIMPLE(X509_CRL_INFO, sig_alg, X509_ALGOR), |
97 | ASN1_SIMPLE(X509_CRL_INFO, issuer, X509_NAME), | 114 | ASN1_SIMPLE(X509_CRL_INFO, issuer, X509_NAME), |
@@ -99,7 +116,7 @@ ASN1_SEQUENCE_enc(X509_CRL_INFO, enc, crl_inf_cb) = { | |||
99 | ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME), | 116 | ASN1_OPT(X509_CRL_INFO, nextUpdate, ASN1_TIME), |
100 | ASN1_SEQUENCE_OF_OPT(X509_CRL_INFO, revoked, X509_REVOKED), | 117 | ASN1_SEQUENCE_OF_OPT(X509_CRL_INFO, revoked, X509_REVOKED), |
101 | ASN1_EXP_SEQUENCE_OF_OPT(X509_CRL_INFO, extensions, X509_EXTENSION, 0) | 118 | ASN1_EXP_SEQUENCE_OF_OPT(X509_CRL_INFO, extensions, X509_EXTENSION, 0) |
102 | } ASN1_SEQUENCE_END_enc(X509_CRL_INFO, X509_CRL_INFO) | 119 | } ASN1_SEQUENCE_END_cb(X509_CRL_INFO, X509_CRL_INFO) |
103 | 120 | ||
104 | ASN1_SEQUENCE_ref(X509_CRL, 0, CRYPTO_LOCK_X509_CRL) = { | 121 | ASN1_SEQUENCE_ref(X509_CRL, 0, CRYPTO_LOCK_X509_CRL) = { |
105 | ASN1_SIMPLE(X509_CRL, crl, X509_CRL_INFO), | 122 | ASN1_SIMPLE(X509_CRL, crl, X509_CRL_INFO), |
@@ -120,6 +137,12 @@ static int X509_REVOKED_cmp(const X509_REVOKED * const *a, | |||
120 | (ASN1_STRING *)(*b)->serialNumber)); | 137 | (ASN1_STRING *)(*b)->serialNumber)); |
121 | } | 138 | } |
122 | 139 | ||
140 | static int X509_REVOKED_seq_cmp(const X509_REVOKED * const *a, | ||
141 | const X509_REVOKED * const *b) | ||
142 | { | ||
143 | return((*a)->sequence-(*b)->sequence); | ||
144 | } | ||
145 | |||
123 | int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev) | 146 | int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev) |
124 | { | 147 | { |
125 | X509_CRL_INFO *inf; | 148 | X509_CRL_INFO *inf; |
@@ -130,7 +153,6 @@ int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev) | |||
130 | ASN1err(ASN1_F_X509_CRL_ADD0_REVOKED, ERR_R_MALLOC_FAILURE); | 153 | ASN1err(ASN1_F_X509_CRL_ADD0_REVOKED, ERR_R_MALLOC_FAILURE); |
131 | return 0; | 154 | return 0; |
132 | } | 155 | } |
133 | inf->enc.modified = 1; | ||
134 | return 1; | 156 | return 1; |
135 | } | 157 | } |
136 | 158 | ||
diff --git a/src/lib/libcrypto/asn1/x_name.c b/src/lib/libcrypto/asn1/x_name.c index 31f3377b64..caece0f158 100644 --- a/src/lib/libcrypto/asn1/x_name.c +++ b/src/lib/libcrypto/asn1/x_name.c | |||
@@ -160,22 +160,21 @@ static int x509_name_ex_d2i(ASN1_VALUE **val, unsigned char **in, long len, cons | |||
160 | int tag, int aclass, char opt, ASN1_TLC *ctx) | 160 | int tag, int aclass, char opt, ASN1_TLC *ctx) |
161 | { | 161 | { |
162 | unsigned char *p = *in, *q; | 162 | unsigned char *p = *in, *q; |
163 | STACK *intname = NULL, **intname_pp = &intname; | 163 | STACK *intname = NULL; |
164 | int i, j, ret; | 164 | int i, j, ret; |
165 | X509_NAME *nm = NULL, **nm_pp = &nm; | 165 | X509_NAME *nm = NULL; |
166 | STACK_OF(X509_NAME_ENTRY) *entries; | 166 | STACK_OF(X509_NAME_ENTRY) *entries; |
167 | X509_NAME_ENTRY *entry; | 167 | X509_NAME_ENTRY *entry; |
168 | q = p; | 168 | q = p; |
169 | 169 | ||
170 | /* Get internal representation of Name */ | 170 | /* Get internal representation of Name */ |
171 | ret = ASN1_item_ex_d2i((ASN1_VALUE **)intname_pp, | 171 | ret = ASN1_item_ex_d2i((ASN1_VALUE **)&intname, &p, len, ASN1_ITEM_rptr(X509_NAME_INTERNAL), |
172 | &p, len, ASN1_ITEM_rptr(X509_NAME_INTERNAL), | 172 | tag, aclass, opt, ctx); |
173 | tag, aclass, opt, ctx); | ||
174 | 173 | ||
175 | if(ret <= 0) return ret; | 174 | if(ret <= 0) return ret; |
176 | 175 | ||
177 | if(*val) x509_name_ex_free(val, NULL); | 176 | if(*val) x509_name_ex_free(val, NULL); |
178 | if(!x509_name_ex_new((ASN1_VALUE **)nm_pp, NULL)) goto err; | 177 | if(!x509_name_ex_new((ASN1_VALUE **)&nm, NULL)) goto err; |
179 | /* We've decoded it: now cache encoding */ | 178 | /* We've decoded it: now cache encoding */ |
180 | if(!BUF_MEM_grow(nm->bytes, p - q)) goto err; | 179 | if(!BUF_MEM_grow(nm->bytes, p - q)) goto err; |
181 | memcpy(nm->bytes->data, q, p - q); | 180 | memcpy(nm->bytes->data, q, p - q); |
@@ -219,7 +218,7 @@ static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_IT | |||
219 | 218 | ||
220 | static int x509_name_encode(X509_NAME *a) | 219 | static int x509_name_encode(X509_NAME *a) |
221 | { | 220 | { |
222 | STACK *intname = NULL, **intname_pp = &intname; | 221 | STACK *intname = NULL; |
223 | int len; | 222 | int len; |
224 | unsigned char *p; | 223 | unsigned char *p; |
225 | STACK_OF(X509_NAME_ENTRY) *entries = NULL; | 224 | STACK_OF(X509_NAME_ENTRY) *entries = NULL; |
@@ -237,12 +236,10 @@ static int x509_name_encode(X509_NAME *a) | |||
237 | } | 236 | } |
238 | if(!sk_X509_NAME_ENTRY_push(entries, entry)) goto memerr; | 237 | if(!sk_X509_NAME_ENTRY_push(entries, entry)) goto memerr; |
239 | } | 238 | } |
240 | len = ASN1_item_ex_i2d((ASN1_VALUE **)intname_pp, NULL, | 239 | len = ASN1_item_ex_i2d((ASN1_VALUE **)&intname, NULL, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1); |
241 | ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1); | ||
242 | if (!BUF_MEM_grow(a->bytes,len)) goto memerr; | 240 | if (!BUF_MEM_grow(a->bytes,len)) goto memerr; |
243 | p=(unsigned char *)a->bytes->data; | 241 | p=(unsigned char *)a->bytes->data; |
244 | ASN1_item_ex_i2d((ASN1_VALUE **)intname_pp, | 242 | ASN1_item_ex_i2d((ASN1_VALUE **)&intname, &p, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1); |
245 | &p, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1); | ||
246 | sk_pop_free(intname, sk_internal_free); | 243 | sk_pop_free(intname, sk_internal_free); |
247 | a->modified = 0; | 244 | a->modified = 0; |
248 | return len; | 245 | return len; |
diff --git a/src/lib/libcrypto/asn1/x_pubkey.c b/src/lib/libcrypto/asn1/x_pubkey.c index 7d6d71af88..d958540120 100644 --- a/src/lib/libcrypto/asn1/x_pubkey.c +++ b/src/lib/libcrypto/asn1/x_pubkey.c | |||
@@ -80,7 +80,8 @@ IMPLEMENT_ASN1_FUNCTIONS(X509_PUBKEY) | |||
80 | 80 | ||
81 | int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) | 81 | int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) |
82 | { | 82 | { |
83 | X509_PUBKEY *pk=NULL; | 83 | int ok=0; |
84 | X509_PUBKEY *pk; | ||
84 | X509_ALGOR *a; | 85 | X509_ALGOR *a; |
85 | ASN1_OBJECT *o; | 86 | ASN1_OBJECT *o; |
86 | unsigned char *s,*p = NULL; | 87 | unsigned char *s,*p = NULL; |
@@ -103,11 +104,7 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) | |||
103 | (a->parameter->type != V_ASN1_NULL)) | 104 | (a->parameter->type != V_ASN1_NULL)) |
104 | { | 105 | { |
105 | ASN1_TYPE_free(a->parameter); | 106 | ASN1_TYPE_free(a->parameter); |
106 | if (!(a->parameter=ASN1_TYPE_new())) | 107 | a->parameter=ASN1_TYPE_new(); |
107 | { | ||
108 | X509err(X509_F_X509_PUBKEY_SET,ERR_R_MALLOC_FAILURE); | ||
109 | goto err; | ||
110 | } | ||
111 | a->parameter->type=V_ASN1_NULL; | 108 | a->parameter->type=V_ASN1_NULL; |
112 | } | 109 | } |
113 | } | 110 | } |
@@ -121,34 +118,14 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) | |||
121 | dsa=pkey->pkey.dsa; | 118 | dsa=pkey->pkey.dsa; |
122 | dsa->write_params=0; | 119 | dsa->write_params=0; |
123 | ASN1_TYPE_free(a->parameter); | 120 | ASN1_TYPE_free(a->parameter); |
124 | if ((i=i2d_DSAparams(dsa,NULL)) <= 0) | 121 | i=i2d_DSAparams(dsa,NULL); |
125 | goto err; | 122 | if ((p=(unsigned char *)OPENSSL_malloc(i)) == NULL) goto err; |
126 | if (!(p=(unsigned char *)OPENSSL_malloc(i))) | ||
127 | { | ||
128 | X509err(X509_F_X509_PUBKEY_SET,ERR_R_MALLOC_FAILURE); | ||
129 | goto err; | ||
130 | } | ||
131 | pp=p; | 123 | pp=p; |
132 | i2d_DSAparams(dsa,&pp); | 124 | i2d_DSAparams(dsa,&pp); |
133 | if (!(a->parameter=ASN1_TYPE_new())) | 125 | a->parameter=ASN1_TYPE_new(); |
134 | { | ||
135 | OPENSSL_free(p); | ||
136 | X509err(X509_F_X509_PUBKEY_SET,ERR_R_MALLOC_FAILURE); | ||
137 | goto err; | ||
138 | } | ||
139 | a->parameter->type=V_ASN1_SEQUENCE; | 126 | a->parameter->type=V_ASN1_SEQUENCE; |
140 | if (!(a->parameter->value.sequence=ASN1_STRING_new())) | 127 | a->parameter->value.sequence=ASN1_STRING_new(); |
141 | { | 128 | ASN1_STRING_set(a->parameter->value.sequence,p,i); |
142 | OPENSSL_free(p); | ||
143 | X509err(X509_F_X509_PUBKEY_SET,ERR_R_MALLOC_FAILURE); | ||
144 | goto err; | ||
145 | } | ||
146 | if (!ASN1_STRING_set(a->parameter->value.sequence,p,i)) | ||
147 | { | ||
148 | OPENSSL_free(p); | ||
149 | X509err(X509_F_X509_PUBKEY_SET,ERR_R_MALLOC_FAILURE); | ||
150 | goto err; | ||
151 | } | ||
152 | OPENSSL_free(p); | 129 | OPENSSL_free(p); |
153 | } | 130 | } |
154 | else | 131 | else |
@@ -166,11 +143,7 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) | |||
166 | } | 143 | } |
167 | p=s; | 144 | p=s; |
168 | i2d_PublicKey(pkey,&p); | 145 | i2d_PublicKey(pkey,&p); |
169 | if (!M_ASN1_BIT_STRING_set(pk->public_key,s,i)) | 146 | if (!M_ASN1_BIT_STRING_set(pk->public_key,s,i)) goto err; |
170 | { | ||
171 | X509err(X509_F_X509_PUBKEY_SET,ERR_R_MALLOC_FAILURE); | ||
172 | goto err; | ||
173 | } | ||
174 | /* Set number of unused bits to zero */ | 147 | /* Set number of unused bits to zero */ |
175 | pk->public_key->flags&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07); | 148 | pk->public_key->flags&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07); |
176 | pk->public_key->flags|=ASN1_STRING_FLAG_BITS_LEFT; | 149 | pk->public_key->flags|=ASN1_STRING_FLAG_BITS_LEFT; |
@@ -186,11 +159,12 @@ int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey) | |||
186 | X509_PUBKEY_free(*x); | 159 | X509_PUBKEY_free(*x); |
187 | 160 | ||
188 | *x=pk; | 161 | *x=pk; |
162 | pk=NULL; | ||
189 | 163 | ||
190 | return 1; | 164 | ok=1; |
191 | err: | 165 | err: |
192 | if (pk != NULL) X509_PUBKEY_free(pk); | 166 | if (pk != NULL) X509_PUBKEY_free(pk); |
193 | return 0; | 167 | return(ok); |
194 | } | 168 | } |
195 | 169 | ||
196 | EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key) | 170 | EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key) |