diff options
Diffstat (limited to 'src/lib/libcrypto/x509')
-rw-r--r-- | src/lib/libcrypto/x509/Makefile | 592 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/Makefile.ssl | 594 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/by_dir.c | 15 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_err.c | 138 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_vfy.c | 2 |
5 files changed, 1262 insertions, 79 deletions
diff --git a/src/lib/libcrypto/x509/Makefile b/src/lib/libcrypto/x509/Makefile new file mode 100644 index 0000000000..ee3f8a4a23 --- /dev/null +++ b/src/lib/libcrypto/x509/Makefile | |||
@@ -0,0 +1,592 @@ | |||
1 | # | ||
2 | # OpenSSL/crypto/x509/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= x509 | ||
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= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ | ||
26 | x509_obj.c x509_req.c x509spki.c x509_vfy.c \ | ||
27 | x509_set.c x509cset.c x509rset.c x509_err.c \ | ||
28 | x509name.c x509_v3.c x509_ext.c x509_att.c \ | ||
29 | x509type.c x509_lu.c x_all.c x509_txt.c \ | ||
30 | x509_trs.c by_file.c by_dir.c | ||
31 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ | ||
32 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ | ||
33 | x509_set.o x509cset.o x509rset.o x509_err.o \ | ||
34 | x509name.o x509_v3.o x509_ext.o x509_att.o \ | ||
35 | x509type.o x509_lu.o x_all.o x509_txt.o \ | ||
36 | x509_trs.o by_file.o by_dir.o | ||
37 | |||
38 | SRC= $(LIBSRC) | ||
39 | |||
40 | EXHEADER= x509.h x509_vfy.h | ||
41 | HEADER= $(EXHEADER) | ||
42 | |||
43 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
44 | |||
45 | top: | ||
46 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
47 | |||
48 | all: lib | ||
49 | |||
50 | lib: $(LIBOBJ) | ||
51 | $(AR) $(LIB) $(LIBOBJ) | ||
52 | $(RANLIB) $(LIB) || echo Never mind. | ||
53 | @touch lib | ||
54 | |||
55 | files: | ||
56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
57 | |||
58 | links: | ||
59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
60 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
62 | |||
63 | install: | ||
64 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
65 | do \ | ||
66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
67 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
68 | done; | ||
69 | |||
70 | tags: | ||
71 | ctags $(SRC) | ||
72 | |||
73 | tests: | ||
74 | |||
75 | lint: | ||
76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
77 | |||
78 | depend: | ||
79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
80 | |||
81 | dclean: | ||
82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
83 | mv -f Makefile.new $(MAKEFILE) | ||
84 | |||
85 | clean: | ||
86 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
87 | |||
88 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
89 | |||
90 | by_dir.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
91 | by_dir.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
92 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
93 | by_dir.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
94 | by_dir.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
95 | by_dir.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
96 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
97 | by_dir.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
98 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
99 | by_dir.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
100 | by_dir.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
101 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
102 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
103 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
104 | by_dir.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
105 | by_dir.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
106 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
107 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
108 | by_dir.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
109 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
110 | by_dir.o: ../cryptlib.h by_dir.c | ||
111 | by_file.o: ../../e_os.h ../../include/openssl/aes.h | ||
112 | by_file.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
113 | by_file.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
114 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
115 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
116 | by_file.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
117 | by_file.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
118 | by_file.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
119 | by_file.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
120 | by_file.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
121 | by_file.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
122 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
123 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
124 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
125 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
126 | by_file.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
127 | by_file.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
128 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
129 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
130 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
131 | by_file.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
132 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | ||
133 | x509_att.o: ../../e_os.h ../../include/openssl/aes.h | ||
134 | x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
135 | x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
136 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
137 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
138 | x509_att.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
139 | x509_att.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
140 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
141 | x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
142 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
143 | x509_att.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
144 | x509_att.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
145 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
146 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
147 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
148 | x509_att.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
149 | x509_att.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
150 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
151 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
152 | x509_att.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
153 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
154 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | ||
155 | x509_cmp.o: ../../e_os.h ../../include/openssl/aes.h | ||
156 | x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
157 | x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
158 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
159 | x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
160 | x509_cmp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
161 | x509_cmp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
162 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
163 | x509_cmp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
164 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
165 | x509_cmp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
166 | x509_cmp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
167 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
168 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
169 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
170 | x509_cmp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
171 | x509_cmp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
172 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
173 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
174 | x509_cmp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
175 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
176 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | ||
177 | x509_d2.o: ../../e_os.h ../../include/openssl/aes.h | ||
178 | x509_d2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
179 | x509_d2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
180 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
181 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
182 | x509_d2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
183 | x509_d2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
184 | x509_d2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
185 | x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
186 | x509_d2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
187 | x509_d2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
188 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
189 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
190 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
191 | x509_d2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
192 | x509_d2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
193 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
194 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
195 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
196 | x509_d2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
197 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | ||
198 | x509_def.o: ../../e_os.h ../../include/openssl/aes.h | ||
199 | x509_def.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
200 | x509_def.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
201 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
202 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
203 | x509_def.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
204 | x509_def.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
205 | x509_def.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
206 | x509_def.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
207 | x509_def.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
208 | x509_def.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
209 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
210 | x509_def.o: ../../include/openssl/opensslconf.h | ||
211 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
212 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
213 | x509_def.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
214 | x509_def.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
215 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
216 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
217 | x509_def.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
218 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
219 | x509_def.o: ../cryptlib.h x509_def.c | ||
220 | x509_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
221 | x509_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
222 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
223 | x509_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
224 | x509_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
225 | x509_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
226 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
227 | x509_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
228 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
229 | x509_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
230 | x509_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
231 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
232 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
233 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
234 | x509_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
235 | x509_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
236 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
237 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
238 | x509_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
239 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
240 | x509_err.o: x509_err.c | ||
241 | x509_ext.o: ../../e_os.h ../../include/openssl/aes.h | ||
242 | x509_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
243 | x509_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
244 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
245 | x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
246 | x509_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
247 | x509_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
248 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
249 | x509_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
250 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
251 | x509_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
252 | x509_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
253 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
254 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
255 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
256 | x509_ext.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
257 | x509_ext.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
258 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
259 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
260 | x509_ext.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
261 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
262 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | ||
263 | x509_lu.o: ../../e_os.h ../../include/openssl/aes.h | ||
264 | x509_lu.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
265 | x509_lu.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
266 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
267 | x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
268 | x509_lu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
269 | x509_lu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
270 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
271 | x509_lu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
272 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
273 | x509_lu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
274 | x509_lu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
275 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
276 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
277 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
278 | x509_lu.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
279 | x509_lu.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
280 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
281 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
282 | x509_lu.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
283 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
284 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | ||
285 | x509_obj.o: ../../e_os.h ../../include/openssl/aes.h | ||
286 | x509_obj.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
287 | x509_obj.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
288 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
289 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
290 | x509_obj.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
291 | x509_obj.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
292 | x509_obj.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
293 | x509_obj.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
294 | x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
295 | x509_obj.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
296 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
297 | x509_obj.o: ../../include/openssl/opensslconf.h | ||
298 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
299 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
300 | x509_obj.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
301 | x509_obj.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
302 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
303 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
304 | x509_obj.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
305 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
306 | x509_obj.o: ../cryptlib.h x509_obj.c | ||
307 | x509_r2x.o: ../../e_os.h ../../include/openssl/aes.h | ||
308 | x509_r2x.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
309 | x509_r2x.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
310 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
311 | x509_r2x.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
312 | x509_r2x.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
313 | x509_r2x.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
314 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
315 | x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
316 | x509_r2x.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
317 | x509_r2x.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
318 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
319 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
320 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
321 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
322 | x509_r2x.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
323 | x509_r2x.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
324 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
325 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
326 | x509_r2x.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
327 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
328 | x509_r2x.o: ../cryptlib.h x509_r2x.c | ||
329 | x509_req.o: ../../e_os.h ../../include/openssl/aes.h | ||
330 | x509_req.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
331 | x509_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
332 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
333 | x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
334 | x509_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
335 | x509_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
336 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
337 | x509_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
338 | x509_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
339 | x509_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
340 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
341 | x509_req.o: ../../include/openssl/opensslconf.h | ||
342 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
343 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
344 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
345 | x509_req.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
346 | x509_req.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
347 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
348 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
349 | x509_req.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
350 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
351 | x509_req.o: ../cryptlib.h x509_req.c | ||
352 | x509_set.o: ../../e_os.h ../../include/openssl/aes.h | ||
353 | x509_set.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
354 | x509_set.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
355 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
356 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
357 | x509_set.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
358 | x509_set.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
359 | x509_set.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
360 | x509_set.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
361 | x509_set.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
362 | x509_set.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
363 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
364 | x509_set.o: ../../include/openssl/opensslconf.h | ||
365 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
366 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
367 | x509_set.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
368 | x509_set.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
369 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
370 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
371 | x509_set.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
372 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
373 | x509_set.o: ../cryptlib.h x509_set.c | ||
374 | x509_trs.o: ../../e_os.h ../../include/openssl/aes.h | ||
375 | x509_trs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
376 | x509_trs.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
377 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
378 | x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
379 | x509_trs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
380 | x509_trs.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
381 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
382 | x509_trs.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
383 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
384 | x509_trs.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
385 | x509_trs.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
386 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
387 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
388 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
389 | x509_trs.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
390 | x509_trs.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
391 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
392 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
393 | x509_trs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
394 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
395 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | ||
396 | x509_txt.o: ../../e_os.h ../../include/openssl/aes.h | ||
397 | x509_txt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
398 | x509_txt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
399 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
400 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
401 | x509_txt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
402 | x509_txt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
403 | x509_txt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
404 | x509_txt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
405 | x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
406 | x509_txt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
407 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
408 | x509_txt.o: ../../include/openssl/opensslconf.h | ||
409 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
410 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
411 | x509_txt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
412 | x509_txt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
413 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
414 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
415 | x509_txt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
416 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
417 | x509_txt.o: ../cryptlib.h x509_txt.c | ||
418 | x509_v3.o: ../../e_os.h ../../include/openssl/aes.h | ||
419 | x509_v3.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
420 | x509_v3.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
421 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
422 | x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
423 | x509_v3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
424 | x509_v3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
425 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
426 | x509_v3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
427 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
428 | x509_v3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
429 | x509_v3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
430 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
431 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
432 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
433 | x509_v3.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
434 | x509_v3.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
435 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
436 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
437 | x509_v3.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
438 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
439 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | ||
440 | x509_vfy.o: ../../e_os.h ../../include/openssl/aes.h | ||
441 | x509_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
442 | x509_vfy.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
443 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
444 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
445 | x509_vfy.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
446 | x509_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
447 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
448 | x509_vfy.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
449 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
450 | x509_vfy.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
451 | x509_vfy.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
452 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
453 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
454 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
455 | x509_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
456 | x509_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
457 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
458 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
459 | x509_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
460 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
461 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | ||
462 | x509cset.o: ../../e_os.h ../../include/openssl/aes.h | ||
463 | x509cset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
464 | x509cset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
465 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
466 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
467 | x509cset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
468 | x509cset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
469 | x509cset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
470 | x509cset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
471 | x509cset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
472 | x509cset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
473 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
474 | x509cset.o: ../../include/openssl/opensslconf.h | ||
475 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
476 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
477 | x509cset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
478 | x509cset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
479 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
480 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
481 | x509cset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
482 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
483 | x509cset.o: ../cryptlib.h x509cset.c | ||
484 | x509name.o: ../../e_os.h ../../include/openssl/aes.h | ||
485 | x509name.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
486 | x509name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
487 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
488 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
489 | x509name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
490 | x509name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
491 | x509name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
492 | x509name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
493 | x509name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
494 | x509name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
495 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
496 | x509name.o: ../../include/openssl/opensslconf.h | ||
497 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
498 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
499 | x509name.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
500 | x509name.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
501 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
502 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
503 | x509name.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
504 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
505 | x509name.o: ../cryptlib.h x509name.c | ||
506 | x509rset.o: ../../e_os.h ../../include/openssl/aes.h | ||
507 | x509rset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
508 | x509rset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
509 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
510 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
511 | x509rset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
512 | x509rset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
513 | x509rset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
514 | x509rset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
515 | x509rset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
516 | x509rset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
517 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
518 | x509rset.o: ../../include/openssl/opensslconf.h | ||
519 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
520 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
521 | x509rset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
522 | x509rset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
523 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
524 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
525 | x509rset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
526 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
527 | x509rset.o: ../cryptlib.h x509rset.c | ||
528 | x509spki.o: ../../e_os.h ../../include/openssl/aes.h | ||
529 | x509spki.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
530 | x509spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
531 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
532 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
533 | x509spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
534 | x509spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
535 | x509spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
536 | x509spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
537 | x509spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
538 | x509spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
539 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
540 | x509spki.o: ../../include/openssl/opensslconf.h | ||
541 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
542 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
543 | x509spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
544 | x509spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
545 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
546 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
547 | x509spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
548 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
549 | x509spki.o: ../cryptlib.h x509spki.c | ||
550 | x509type.o: ../../e_os.h ../../include/openssl/aes.h | ||
551 | x509type.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
552 | x509type.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
553 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
554 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
555 | x509type.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
556 | x509type.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
557 | x509type.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
558 | x509type.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
559 | x509type.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
560 | x509type.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
561 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
562 | x509type.o: ../../include/openssl/opensslconf.h | ||
563 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
564 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
565 | x509type.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
566 | x509type.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
567 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
568 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
569 | x509type.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
570 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
571 | x509type.o: ../cryptlib.h x509type.c | ||
572 | x_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
573 | x_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
574 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
575 | x_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
576 | x_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
577 | x_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
578 | x_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
579 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
580 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
581 | x_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
582 | x_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
583 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
584 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
585 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
586 | x_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
587 | x_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
588 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
589 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
590 | x_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
591 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
592 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libcrypto/x509/Makefile.ssl b/src/lib/libcrypto/x509/Makefile.ssl new file mode 100644 index 0000000000..3a3452536c --- /dev/null +++ b/src/lib/libcrypto/x509/Makefile.ssl | |||
@@ -0,0 +1,594 @@ | |||
1 | # | ||
2 | # SSLeay/crypto/x509/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= x509 | ||
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= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ | ||
27 | x509_obj.c x509_req.c x509spki.c x509_vfy.c \ | ||
28 | x509_set.c x509cset.c x509rset.c x509_err.c \ | ||
29 | x509name.c x509_v3.c x509_ext.c x509_att.c \ | ||
30 | x509type.c x509_lu.c x_all.c x509_txt.c \ | ||
31 | x509_trs.c by_file.c by_dir.c | ||
32 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ | ||
33 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ | ||
34 | x509_set.o x509cset.o x509rset.o x509_err.o \ | ||
35 | x509name.o x509_v3.o x509_ext.o x509_att.o \ | ||
36 | x509type.o x509_lu.o x_all.o x509_txt.o \ | ||
37 | x509_trs.o by_file.o by_dir.o | ||
38 | |||
39 | SRC= $(LIBSRC) | ||
40 | |||
41 | EXHEADER= x509.h x509_vfy.h | ||
42 | HEADER= $(EXHEADER) | ||
43 | |||
44 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
45 | |||
46 | top: | ||
47 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
48 | |||
49 | all: lib | ||
50 | |||
51 | lib: $(LIBOBJ) | ||
52 | $(AR) $(LIB) $(LIBOBJ) | ||
53 | $(RANLIB) $(LIB) || echo Never mind. | ||
54 | @touch lib | ||
55 | |||
56 | files: | ||
57 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
58 | |||
59 | links: | ||
60 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | ||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
64 | |||
65 | install: | ||
66 | @for i in $(EXHEADER) ; \ | ||
67 | do \ | ||
68 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
69 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
70 | done; | ||
71 | |||
72 | tags: | ||
73 | ctags $(SRC) | ||
74 | |||
75 | tests: | ||
76 | |||
77 | lint: | ||
78 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
79 | |||
80 | depend: | ||
81 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
82 | |||
83 | dclean: | ||
84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
85 | mv -f Makefile.new $(MAKEFILE) | ||
86 | |||
87 | clean: | ||
88 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
89 | |||
90 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
91 | |||
92 | by_dir.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
93 | by_dir.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
94 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
95 | by_dir.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
96 | by_dir.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
97 | by_dir.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
98 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
99 | by_dir.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
100 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
101 | by_dir.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
102 | by_dir.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
103 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
104 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
105 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
106 | by_dir.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
107 | by_dir.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
108 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
109 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
110 | by_dir.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
111 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
112 | by_dir.o: ../cryptlib.h by_dir.c | ||
113 | by_file.o: ../../e_os.h ../../include/openssl/aes.h | ||
114 | by_file.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
115 | by_file.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
116 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
117 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
118 | by_file.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
119 | by_file.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
120 | by_file.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
121 | by_file.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
122 | by_file.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
123 | by_file.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
124 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
125 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
126 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
127 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
128 | by_file.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
129 | by_file.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
130 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
131 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
132 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
133 | by_file.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
134 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | ||
135 | x509_att.o: ../../e_os.h ../../include/openssl/aes.h | ||
136 | x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
137 | x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
138 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
139 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
140 | x509_att.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
141 | x509_att.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
142 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
143 | x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
144 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
145 | x509_att.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
146 | x509_att.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
147 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
148 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
149 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
150 | x509_att.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
151 | x509_att.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
152 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
153 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
154 | x509_att.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
155 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
156 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | ||
157 | x509_cmp.o: ../../e_os.h ../../include/openssl/aes.h | ||
158 | x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
159 | x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
160 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
161 | x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
162 | x509_cmp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
163 | x509_cmp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
164 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
165 | x509_cmp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
166 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
167 | x509_cmp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
168 | x509_cmp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
169 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
170 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
171 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
172 | x509_cmp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
173 | x509_cmp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
174 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
175 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
176 | x509_cmp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
177 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
178 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | ||
179 | x509_d2.o: ../../e_os.h ../../include/openssl/aes.h | ||
180 | x509_d2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
181 | x509_d2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
182 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
183 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
184 | x509_d2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
185 | x509_d2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
186 | x509_d2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
187 | x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
188 | x509_d2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
189 | x509_d2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
190 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
191 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
192 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
193 | x509_d2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
194 | x509_d2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
195 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
196 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
197 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
198 | x509_d2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
199 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | ||
200 | x509_def.o: ../../e_os.h ../../include/openssl/aes.h | ||
201 | x509_def.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
202 | x509_def.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
203 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
204 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
205 | x509_def.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
206 | x509_def.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
207 | x509_def.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
208 | x509_def.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
209 | x509_def.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
210 | x509_def.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
211 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
212 | x509_def.o: ../../include/openssl/opensslconf.h | ||
213 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
214 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
215 | x509_def.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
216 | x509_def.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
217 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
218 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
219 | x509_def.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
220 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
221 | x509_def.o: ../cryptlib.h x509_def.c | ||
222 | x509_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
223 | x509_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
224 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
225 | x509_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
226 | x509_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
227 | x509_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
228 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
229 | x509_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
230 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
231 | x509_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
232 | x509_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
233 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
234 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
235 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
236 | x509_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
237 | x509_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
238 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
239 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
240 | x509_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
241 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
242 | x509_err.o: x509_err.c | ||
243 | x509_ext.o: ../../e_os.h ../../include/openssl/aes.h | ||
244 | x509_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
245 | x509_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
246 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
247 | x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
248 | x509_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
249 | x509_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
250 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
251 | x509_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
252 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
253 | x509_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
254 | x509_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
255 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
256 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
257 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
258 | x509_ext.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
259 | x509_ext.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
260 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
261 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
262 | x509_ext.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
263 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
264 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | ||
265 | x509_lu.o: ../../e_os.h ../../include/openssl/aes.h | ||
266 | x509_lu.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
267 | x509_lu.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
268 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
269 | x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
270 | x509_lu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
271 | x509_lu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
272 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
273 | x509_lu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
274 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
275 | x509_lu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
276 | x509_lu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
277 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
278 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
279 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
280 | x509_lu.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
281 | x509_lu.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
282 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
283 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
284 | x509_lu.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
285 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
286 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | ||
287 | x509_obj.o: ../../e_os.h ../../include/openssl/aes.h | ||
288 | x509_obj.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
289 | x509_obj.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
290 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
291 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
292 | x509_obj.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
293 | x509_obj.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
294 | x509_obj.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
295 | x509_obj.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
296 | x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
297 | x509_obj.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
298 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
299 | x509_obj.o: ../../include/openssl/opensslconf.h | ||
300 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
301 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
302 | x509_obj.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
303 | x509_obj.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
304 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
305 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
306 | x509_obj.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
307 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
308 | x509_obj.o: ../cryptlib.h x509_obj.c | ||
309 | x509_r2x.o: ../../e_os.h ../../include/openssl/aes.h | ||
310 | x509_r2x.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
311 | x509_r2x.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
312 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
313 | x509_r2x.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
314 | x509_r2x.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
315 | x509_r2x.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
316 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
317 | x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
318 | x509_r2x.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
319 | x509_r2x.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
320 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
321 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
322 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
323 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
324 | x509_r2x.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
325 | x509_r2x.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
326 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
327 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
328 | x509_r2x.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
329 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
330 | x509_r2x.o: ../cryptlib.h x509_r2x.c | ||
331 | x509_req.o: ../../e_os.h ../../include/openssl/aes.h | ||
332 | x509_req.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
333 | x509_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
334 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
335 | x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
336 | x509_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
337 | x509_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
338 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
339 | x509_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
340 | x509_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
341 | x509_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
342 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
343 | x509_req.o: ../../include/openssl/opensslconf.h | ||
344 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
345 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
346 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
347 | x509_req.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
348 | x509_req.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
349 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
350 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
351 | x509_req.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
352 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
353 | x509_req.o: ../cryptlib.h x509_req.c | ||
354 | x509_set.o: ../../e_os.h ../../include/openssl/aes.h | ||
355 | x509_set.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
356 | x509_set.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
357 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
358 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
359 | x509_set.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
360 | x509_set.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
361 | x509_set.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
362 | x509_set.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
363 | x509_set.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
364 | x509_set.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
365 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
366 | x509_set.o: ../../include/openssl/opensslconf.h | ||
367 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
368 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
369 | x509_set.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
370 | x509_set.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
371 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
372 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
373 | x509_set.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
374 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
375 | x509_set.o: ../cryptlib.h x509_set.c | ||
376 | x509_trs.o: ../../e_os.h ../../include/openssl/aes.h | ||
377 | x509_trs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
378 | x509_trs.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
379 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
380 | x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
381 | x509_trs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
382 | x509_trs.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
383 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
384 | x509_trs.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
385 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
386 | x509_trs.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
387 | x509_trs.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
388 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
389 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
390 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
391 | x509_trs.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
392 | x509_trs.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
393 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
394 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
395 | x509_trs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
396 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
397 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | ||
398 | x509_txt.o: ../../e_os.h ../../include/openssl/aes.h | ||
399 | x509_txt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
400 | x509_txt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
401 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
402 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
403 | x509_txt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
404 | x509_txt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
405 | x509_txt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
406 | x509_txt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
407 | x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
408 | x509_txt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
409 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
410 | x509_txt.o: ../../include/openssl/opensslconf.h | ||
411 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
412 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
413 | x509_txt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
414 | x509_txt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
415 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
416 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
417 | x509_txt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
418 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
419 | x509_txt.o: ../cryptlib.h x509_txt.c | ||
420 | x509_v3.o: ../../e_os.h ../../include/openssl/aes.h | ||
421 | x509_v3.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
422 | x509_v3.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
423 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
424 | x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
425 | x509_v3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
426 | x509_v3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
427 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
428 | x509_v3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
429 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
430 | x509_v3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
431 | x509_v3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
432 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
433 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
434 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
435 | x509_v3.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
436 | x509_v3.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
437 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
438 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
439 | x509_v3.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
440 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
441 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | ||
442 | x509_vfy.o: ../../e_os.h ../../include/openssl/aes.h | ||
443 | x509_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
444 | x509_vfy.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
445 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
446 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
447 | x509_vfy.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
448 | x509_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
449 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
450 | x509_vfy.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
451 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
452 | x509_vfy.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
453 | x509_vfy.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
454 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
455 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
456 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
457 | x509_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
458 | x509_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
459 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
460 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
461 | x509_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
462 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
463 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | ||
464 | x509cset.o: ../../e_os.h ../../include/openssl/aes.h | ||
465 | x509cset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
466 | x509cset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
467 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
468 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
469 | x509cset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
470 | x509cset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
471 | x509cset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
472 | x509cset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
473 | x509cset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
474 | x509cset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
475 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
476 | x509cset.o: ../../include/openssl/opensslconf.h | ||
477 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
478 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
479 | x509cset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
480 | x509cset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
481 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
482 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
483 | x509cset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
484 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
485 | x509cset.o: ../cryptlib.h x509cset.c | ||
486 | x509name.o: ../../e_os.h ../../include/openssl/aes.h | ||
487 | x509name.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
488 | x509name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
489 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
490 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
491 | x509name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
492 | x509name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
493 | x509name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
494 | x509name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
495 | x509name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
496 | x509name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
497 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
498 | x509name.o: ../../include/openssl/opensslconf.h | ||
499 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
500 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
501 | x509name.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
502 | x509name.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
503 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
504 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
505 | x509name.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
506 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
507 | x509name.o: ../cryptlib.h x509name.c | ||
508 | x509rset.o: ../../e_os.h ../../include/openssl/aes.h | ||
509 | x509rset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
510 | x509rset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
511 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
512 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
513 | x509rset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
514 | x509rset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
515 | x509rset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
516 | x509rset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
517 | x509rset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
518 | x509rset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
519 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
520 | x509rset.o: ../../include/openssl/opensslconf.h | ||
521 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
522 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
523 | x509rset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
524 | x509rset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
525 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
526 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
527 | x509rset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
528 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
529 | x509rset.o: ../cryptlib.h x509rset.c | ||
530 | x509spki.o: ../../e_os.h ../../include/openssl/aes.h | ||
531 | x509spki.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
532 | x509spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
533 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
534 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
535 | x509spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
536 | x509spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
537 | x509spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
538 | x509spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
539 | x509spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
540 | x509spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
541 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
542 | x509spki.o: ../../include/openssl/opensslconf.h | ||
543 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
544 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
545 | x509spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
546 | x509spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
547 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
548 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
549 | x509spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
550 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
551 | x509spki.o: ../cryptlib.h x509spki.c | ||
552 | x509type.o: ../../e_os.h ../../include/openssl/aes.h | ||
553 | x509type.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
554 | x509type.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
555 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
556 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
557 | x509type.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
558 | x509type.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
559 | x509type.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
560 | x509type.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
561 | x509type.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
562 | x509type.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
563 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
564 | x509type.o: ../../include/openssl/opensslconf.h | ||
565 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
566 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
567 | x509type.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
568 | x509type.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
569 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
570 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
571 | x509type.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
572 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
573 | x509type.o: ../cryptlib.h x509type.c | ||
574 | x_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
575 | x_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
576 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
577 | x_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
578 | x_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
579 | x_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
580 | x_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
581 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
582 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
583 | x_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
584 | x_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
585 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
586 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
587 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
588 | x_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
589 | x_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
590 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
591 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
592 | x_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
593 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
594 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libcrypto/x509/by_dir.c b/src/lib/libcrypto/x509/by_dir.c index ea689aed1a..6207340472 100644 --- a/src/lib/libcrypto/x509/by_dir.c +++ b/src/lib/libcrypto/x509/by_dir.c | |||
@@ -114,7 +114,7 @@ static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, | |||
114 | { | 114 | { |
115 | int ret=0; | 115 | int ret=0; |
116 | BY_DIR *ld; | 116 | BY_DIR *ld; |
117 | char *dir = NULL; | 117 | char *dir; |
118 | 118 | ||
119 | ld=(BY_DIR *)ctx->method_data; | 119 | ld=(BY_DIR *)ctx->method_data; |
120 | 120 | ||
@@ -123,16 +123,17 @@ static int dir_ctrl(X509_LOOKUP *ctx, int cmd, const char *argp, long argl, | |||
123 | case X509_L_ADD_DIR: | 123 | case X509_L_ADD_DIR: |
124 | if (argl == X509_FILETYPE_DEFAULT) | 124 | if (argl == X509_FILETYPE_DEFAULT) |
125 | { | 125 | { |
126 | dir=(char *)Getenv(X509_get_default_cert_dir_env()); | 126 | ret=add_cert_dir(ld,X509_get_default_cert_dir(), |
127 | if (dir) | 127 | X509_FILETYPE_PEM); |
128 | ret=add_cert_dir(ld,dir,X509_FILETYPE_PEM); | ||
129 | else | ||
130 | ret=add_cert_dir(ld,X509_get_default_cert_dir(), | ||
131 | X509_FILETYPE_PEM); | ||
132 | if (!ret) | 128 | if (!ret) |
133 | { | 129 | { |
134 | X509err(X509_F_DIR_CTRL,X509_R_LOADING_CERT_DIR); | 130 | X509err(X509_F_DIR_CTRL,X509_R_LOADING_CERT_DIR); |
135 | } | 131 | } |
132 | else | ||
133 | { | ||
134 | dir=(char *)Getenv(X509_get_default_cert_dir_env()); | ||
135 | ret=add_cert_dir(ld,dir,X509_FILETYPE_PEM); | ||
136 | } | ||
136 | } | 137 | } |
137 | else | 138 | else |
138 | ret=add_cert_dir(ld,argp,(int)argl); | 139 | ret=add_cert_dir(ld,argp,(int)argl); |
diff --git a/src/lib/libcrypto/x509/x509_err.c b/src/lib/libcrypto/x509/x509_err.c index d44d046027..5bbf4acf76 100644 --- a/src/lib/libcrypto/x509/x509_err.c +++ b/src/lib/libcrypto/x509/x509_err.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* crypto/x509/x509_err.c */ | 1 | /* crypto/x509/x509_err.c */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999 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 |
@@ -64,81 +64,77 @@ | |||
64 | 64 | ||
65 | /* BEGIN ERROR CODES */ | 65 | /* BEGIN ERROR CODES */ |
66 | #ifndef OPENSSL_NO_ERR | 66 | #ifndef OPENSSL_NO_ERR |
67 | |||
68 | #define ERR_FUNC(func) ERR_PACK(ERR_LIB_X509,func,0) | ||
69 | #define ERR_REASON(reason) ERR_PACK(ERR_LIB_X509,0,reason) | ||
70 | |||
71 | static ERR_STRING_DATA X509_str_functs[]= | 67 | static ERR_STRING_DATA X509_str_functs[]= |
72 | { | 68 | { |
73 | {ERR_FUNC(X509_F_ADD_CERT_DIR), "ADD_CERT_DIR"}, | 69 | {ERR_PACK(0,X509_F_ADD_CERT_DIR,0), "ADD_CERT_DIR"}, |
74 | {ERR_FUNC(X509_F_BY_FILE_CTRL), "BY_FILE_CTRL"}, | 70 | {ERR_PACK(0,X509_F_BY_FILE_CTRL,0), "BY_FILE_CTRL"}, |
75 | {ERR_FUNC(X509_F_DIR_CTRL), "DIR_CTRL"}, | 71 | {ERR_PACK(0,X509_F_DIR_CTRL,0), "DIR_CTRL"}, |
76 | {ERR_FUNC(X509_F_GET_CERT_BY_SUBJECT), "GET_CERT_BY_SUBJECT"}, | 72 | {ERR_PACK(0,X509_F_GET_CERT_BY_SUBJECT,0), "GET_CERT_BY_SUBJECT"}, |
77 | {ERR_FUNC(X509_F_NETSCAPE_SPKI_B64_DECODE), "NETSCAPE_SPKI_b64_decode"}, | 73 | {ERR_PACK(0,X509_F_NETSCAPE_SPKI_B64_DECODE,0), "NETSCAPE_SPKI_b64_decode"}, |
78 | {ERR_FUNC(X509_F_NETSCAPE_SPKI_B64_ENCODE), "NETSCAPE_SPKI_b64_encode"}, | 74 | {ERR_PACK(0,X509_F_NETSCAPE_SPKI_B64_ENCODE,0), "NETSCAPE_SPKI_b64_encode"}, |
79 | {ERR_FUNC(X509_F_X509V3_ADD_EXT), "X509v3_add_ext"}, | 75 | {ERR_PACK(0,X509_F_X509V3_ADD_EXT,0), "X509v3_add_ext"}, |
80 | {ERR_FUNC(X509_F_X509_ADD_ATTR), "X509_ADD_ATTR"}, | 76 | {ERR_PACK(0,X509_F_X509_ADD_ATTR,0), "X509_ADD_ATTR"}, |
81 | {ERR_FUNC(X509_F_X509_ATTRIBUTE_CREATE_BY_NID), "X509_ATTRIBUTE_create_by_NID"}, | 77 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_CREATE_BY_NID,0), "X509_ATTRIBUTE_create_by_NID"}, |
82 | {ERR_FUNC(X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ), "X509_ATTRIBUTE_create_by_OBJ"}, | 78 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ,0), "X509_ATTRIBUTE_create_by_OBJ"}, |
83 | {ERR_FUNC(X509_F_X509_ATTRIBUTE_CREATE_BY_TXT), "X509_ATTRIBUTE_create_by_txt"}, | 79 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_CREATE_BY_TXT,0), "X509_ATTRIBUTE_create_by_txt"}, |
84 | {ERR_FUNC(X509_F_X509_ATTRIBUTE_GET0_DATA), "X509_ATTRIBUTE_get0_data"}, | 80 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_GET0_DATA,0), "X509_ATTRIBUTE_get0_data"}, |
85 | {ERR_FUNC(X509_F_X509_ATTRIBUTE_SET1_DATA), "X509_ATTRIBUTE_set1_data"}, | 81 | {ERR_PACK(0,X509_F_X509_ATTRIBUTE_SET1_DATA,0), "X509_ATTRIBUTE_set1_data"}, |
86 | {ERR_FUNC(X509_F_X509_CHECK_PRIVATE_KEY), "X509_check_private_key"}, | 82 | {ERR_PACK(0,X509_F_X509_CHECK_PRIVATE_KEY,0), "X509_check_private_key"}, |
87 | {ERR_FUNC(X509_F_X509_EXTENSION_CREATE_BY_NID), "X509_EXTENSION_create_by_NID"}, | 83 | {ERR_PACK(0,X509_F_X509_EXTENSION_CREATE_BY_NID,0), "X509_EXTENSION_create_by_NID"}, |
88 | {ERR_FUNC(X509_F_X509_EXTENSION_CREATE_BY_OBJ), "X509_EXTENSION_create_by_OBJ"}, | 84 | {ERR_PACK(0,X509_F_X509_EXTENSION_CREATE_BY_OBJ,0), "X509_EXTENSION_create_by_OBJ"}, |
89 | {ERR_FUNC(X509_F_X509_GET_PUBKEY_PARAMETERS), "X509_get_pubkey_parameters"}, | 85 | {ERR_PACK(0,X509_F_X509_GET_PUBKEY_PARAMETERS,0), "X509_get_pubkey_parameters"}, |
90 | {ERR_FUNC(X509_F_X509_LOAD_CERT_CRL_FILE), "X509_load_cert_crl_file"}, | 86 | {ERR_PACK(0,X509_F_X509_LOAD_CERT_CRL_FILE,0), "X509_load_cert_crl_file"}, |
91 | {ERR_FUNC(X509_F_X509_LOAD_CERT_FILE), "X509_load_cert_file"}, | 87 | {ERR_PACK(0,X509_F_X509_LOAD_CERT_FILE,0), "X509_load_cert_file"}, |
92 | {ERR_FUNC(X509_F_X509_LOAD_CRL_FILE), "X509_load_crl_file"}, | 88 | {ERR_PACK(0,X509_F_X509_LOAD_CRL_FILE,0), "X509_load_crl_file"}, |
93 | {ERR_FUNC(X509_F_X509_NAME_ADD_ENTRY), "X509_NAME_add_entry"}, | 89 | {ERR_PACK(0,X509_F_X509_NAME_ADD_ENTRY,0), "X509_NAME_add_entry"}, |
94 | {ERR_FUNC(X509_F_X509_NAME_ENTRY_CREATE_BY_NID), "X509_NAME_ENTRY_create_by_NID"}, | 90 | {ERR_PACK(0,X509_F_X509_NAME_ENTRY_CREATE_BY_NID,0), "X509_NAME_ENTRY_create_by_NID"}, |
95 | {ERR_FUNC(X509_F_X509_NAME_ENTRY_CREATE_BY_TXT), "X509_NAME_ENTRY_create_by_txt"}, | 91 | {ERR_PACK(0,X509_F_X509_NAME_ENTRY_CREATE_BY_TXT,0), "X509_NAME_ENTRY_create_by_txt"}, |
96 | {ERR_FUNC(X509_F_X509_NAME_ENTRY_SET_OBJECT), "X509_NAME_ENTRY_set_object"}, | 92 | {ERR_PACK(0,X509_F_X509_NAME_ENTRY_SET_OBJECT,0), "X509_NAME_ENTRY_set_object"}, |
97 | {ERR_FUNC(X509_F_X509_NAME_ONELINE), "X509_NAME_oneline"}, | 93 | {ERR_PACK(0,X509_F_X509_NAME_ONELINE,0), "X509_NAME_oneline"}, |
98 | {ERR_FUNC(X509_F_X509_NAME_PRINT), "X509_NAME_print"}, | 94 | {ERR_PACK(0,X509_F_X509_NAME_PRINT,0), "X509_NAME_print"}, |
99 | {ERR_FUNC(X509_F_X509_PRINT_FP), "X509_print_fp"}, | 95 | {ERR_PACK(0,X509_F_X509_PRINT_FP,0), "X509_print_fp"}, |
100 | {ERR_FUNC(X509_F_X509_PUBKEY_GET), "X509_PUBKEY_get"}, | 96 | {ERR_PACK(0,X509_F_X509_PUBKEY_GET,0), "X509_PUBKEY_get"}, |
101 | {ERR_FUNC(X509_F_X509_PUBKEY_SET), "X509_PUBKEY_set"}, | 97 | {ERR_PACK(0,X509_F_X509_PUBKEY_SET,0), "X509_PUBKEY_set"}, |
102 | {ERR_FUNC(X509_F_X509_REQ_PRINT), "X509_REQ_print"}, | 98 | {ERR_PACK(0,X509_F_X509_REQ_PRINT,0), "X509_REQ_print"}, |
103 | {ERR_FUNC(X509_F_X509_REQ_PRINT_FP), "X509_REQ_print_fp"}, | 99 | {ERR_PACK(0,X509_F_X509_REQ_PRINT_FP,0), "X509_REQ_print_fp"}, |
104 | {ERR_FUNC(X509_F_X509_REQ_TO_X509), "X509_REQ_to_X509"}, | 100 | {ERR_PACK(0,X509_F_X509_REQ_TO_X509,0), "X509_REQ_to_X509"}, |
105 | {ERR_FUNC(X509_F_X509_STORE_ADD_CERT), "X509_STORE_add_cert"}, | 101 | {ERR_PACK(0,X509_F_X509_STORE_ADD_CERT,0), "X509_STORE_add_cert"}, |
106 | {ERR_FUNC(X509_F_X509_STORE_ADD_CRL), "X509_STORE_add_crl"}, | 102 | {ERR_PACK(0,X509_F_X509_STORE_ADD_CRL,0), "X509_STORE_add_crl"}, |
107 | {ERR_FUNC(X509_F_X509_STORE_CTX_INIT), "X509_STORE_CTX_init"}, | 103 | {ERR_PACK(0,X509_F_X509_STORE_CTX_INIT,0), "X509_STORE_CTX_init"}, |
108 | {ERR_FUNC(X509_F_X509_STORE_CTX_NEW), "X509_STORE_CTX_new"}, | 104 | {ERR_PACK(0,X509_F_X509_STORE_CTX_NEW,0), "X509_STORE_CTX_new"}, |
109 | {ERR_FUNC(X509_F_X509_STORE_CTX_PURPOSE_INHERIT), "X509_STORE_CTX_purpose_inherit"}, | 105 | {ERR_PACK(0,X509_F_X509_STORE_CTX_PURPOSE_INHERIT,0), "X509_STORE_CTX_purpose_inherit"}, |
110 | {ERR_FUNC(X509_F_X509_TO_X509_REQ), "X509_to_X509_REQ"}, | 106 | {ERR_PACK(0,X509_F_X509_TO_X509_REQ,0), "X509_to_X509_REQ"}, |
111 | {ERR_FUNC(X509_F_X509_TRUST_ADD), "X509_TRUST_add"}, | 107 | {ERR_PACK(0,X509_F_X509_TRUST_ADD,0), "X509_TRUST_add"}, |
112 | {ERR_FUNC(X509_F_X509_TRUST_SET), "X509_TRUST_set"}, | 108 | {ERR_PACK(0,X509_F_X509_TRUST_SET,0), "X509_TRUST_set"}, |
113 | {ERR_FUNC(X509_F_X509_VERIFY_CERT), "X509_verify_cert"}, | 109 | {ERR_PACK(0,X509_F_X509_VERIFY_CERT,0), "X509_verify_cert"}, |
114 | {0,NULL} | 110 | {0,NULL} |
115 | }; | 111 | }; |
116 | 112 | ||
117 | static ERR_STRING_DATA X509_str_reasons[]= | 113 | static ERR_STRING_DATA X509_str_reasons[]= |
118 | { | 114 | { |
119 | {ERR_REASON(X509_R_BAD_X509_FILETYPE) ,"bad x509 filetype"}, | 115 | {X509_R_BAD_X509_FILETYPE ,"bad x509 filetype"}, |
120 | {ERR_REASON(X509_R_BASE64_DECODE_ERROR) ,"base64 decode error"}, | 116 | {X509_R_BASE64_DECODE_ERROR ,"base64 decode error"}, |
121 | {ERR_REASON(X509_R_CANT_CHECK_DH_KEY) ,"cant check dh key"}, | 117 | {X509_R_CANT_CHECK_DH_KEY ,"cant check dh key"}, |
122 | {ERR_REASON(X509_R_CERT_ALREADY_IN_HASH_TABLE),"cert already in hash table"}, | 118 | {X509_R_CERT_ALREADY_IN_HASH_TABLE ,"cert already in hash table"}, |
123 | {ERR_REASON(X509_R_ERR_ASN1_LIB) ,"err asn1 lib"}, | 119 | {X509_R_ERR_ASN1_LIB ,"err asn1 lib"}, |
124 | {ERR_REASON(X509_R_INVALID_DIRECTORY) ,"invalid directory"}, | 120 | {X509_R_INVALID_DIRECTORY ,"invalid directory"}, |
125 | {ERR_REASON(X509_R_INVALID_FIELD_NAME) ,"invalid field name"}, | 121 | {X509_R_INVALID_FIELD_NAME ,"invalid field name"}, |
126 | {ERR_REASON(X509_R_INVALID_TRUST) ,"invalid trust"}, | 122 | {X509_R_INVALID_TRUST ,"invalid trust"}, |
127 | {ERR_REASON(X509_R_KEY_TYPE_MISMATCH) ,"key type mismatch"}, | 123 | {X509_R_KEY_TYPE_MISMATCH ,"key type mismatch"}, |
128 | {ERR_REASON(X509_R_KEY_VALUES_MISMATCH) ,"key values mismatch"}, | 124 | {X509_R_KEY_VALUES_MISMATCH ,"key values mismatch"}, |
129 | {ERR_REASON(X509_R_LOADING_CERT_DIR) ,"loading cert dir"}, | 125 | {X509_R_LOADING_CERT_DIR ,"loading cert dir"}, |
130 | {ERR_REASON(X509_R_LOADING_DEFAULTS) ,"loading defaults"}, | 126 | {X509_R_LOADING_DEFAULTS ,"loading defaults"}, |
131 | {ERR_REASON(X509_R_NO_CERT_SET_FOR_US_TO_VERIFY),"no cert set for us to verify"}, | 127 | {X509_R_NO_CERT_SET_FOR_US_TO_VERIFY ,"no cert set for us to verify"}, |
132 | {ERR_REASON(X509_R_SHOULD_RETRY) ,"should retry"}, | 128 | {X509_R_SHOULD_RETRY ,"should retry"}, |
133 | {ERR_REASON(X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN),"unable to find parameters in chain"}, | 129 | {X509_R_UNABLE_TO_FIND_PARAMETERS_IN_CHAIN,"unable to find parameters in chain"}, |
134 | {ERR_REASON(X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY),"unable to get certs public key"}, | 130 | {X509_R_UNABLE_TO_GET_CERTS_PUBLIC_KEY ,"unable to get certs public key"}, |
135 | {ERR_REASON(X509_R_UNKNOWN_KEY_TYPE) ,"unknown key type"}, | 131 | {X509_R_UNKNOWN_KEY_TYPE ,"unknown key type"}, |
136 | {ERR_REASON(X509_R_UNKNOWN_NID) ,"unknown nid"}, | 132 | {X509_R_UNKNOWN_NID ,"unknown nid"}, |
137 | {ERR_REASON(X509_R_UNKNOWN_PURPOSE_ID) ,"unknown purpose id"}, | 133 | {X509_R_UNKNOWN_PURPOSE_ID ,"unknown purpose id"}, |
138 | {ERR_REASON(X509_R_UNKNOWN_TRUST_ID) ,"unknown trust id"}, | 134 | {X509_R_UNKNOWN_TRUST_ID ,"unknown trust id"}, |
139 | {ERR_REASON(X509_R_UNSUPPORTED_ALGORITHM),"unsupported algorithm"}, | 135 | {X509_R_UNSUPPORTED_ALGORITHM ,"unsupported algorithm"}, |
140 | {ERR_REASON(X509_R_WRONG_LOOKUP_TYPE) ,"wrong lookup type"}, | 136 | {X509_R_WRONG_LOOKUP_TYPE ,"wrong lookup type"}, |
141 | {ERR_REASON(X509_R_WRONG_TYPE) ,"wrong type"}, | 137 | {X509_R_WRONG_TYPE ,"wrong type"}, |
142 | {0,NULL} | 138 | {0,NULL} |
143 | }; | 139 | }; |
144 | 140 | ||
@@ -152,8 +148,8 @@ void ERR_load_X509_strings(void) | |||
152 | { | 148 | { |
153 | init=0; | 149 | init=0; |
154 | #ifndef OPENSSL_NO_ERR | 150 | #ifndef OPENSSL_NO_ERR |
155 | ERR_load_strings(0,X509_str_functs); | 151 | ERR_load_strings(ERR_LIB_X509,X509_str_functs); |
156 | ERR_load_strings(0,X509_str_reasons); | 152 | ERR_load_strings(ERR_LIB_X509,X509_str_reasons); |
157 | #endif | 153 | #endif |
158 | 154 | ||
159 | } | 155 | } |
diff --git a/src/lib/libcrypto/x509/x509_vfy.c b/src/lib/libcrypto/x509/x509_vfy.c index 383e082aba..e43c861ee7 100644 --- a/src/lib/libcrypto/x509/x509_vfy.c +++ b/src/lib/libcrypto/x509/x509_vfy.c | |||
@@ -944,7 +944,7 @@ int X509_cmp_time(ASN1_TIME *ctm, time_t *cmp_time) | |||
944 | offset=0; | 944 | offset=0; |
945 | else | 945 | else |
946 | { | 946 | { |
947 | if ((*str != '+') && (*str != '-')) | 947 | if ((*str != '+') && (str[5] != '-')) |
948 | return 0; | 948 | return 0; |
949 | offset=((str[1]-'0')*10+(str[2]-'0'))*60; | 949 | offset=((str[1]-'0')*10+(str[2]-'0'))*60; |
950 | offset+=(str[3]-'0')*10+(str[4]-'0'); | 950 | offset+=(str[3]-'0')*10+(str[4]-'0'); |