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_file.c | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509.h | 11 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_cmp.c | 48 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_r2x.c | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_req.c | 35 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_txt.c | 13 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_vfy.c | 131 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_vfy.h | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509cset.c | 1 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509name.c | 10 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x_all.c | 1 |
13 files changed, 1249 insertions, 205 deletions
diff --git a/src/lib/libcrypto/x509/Makefile b/src/lib/libcrypto/x509/Makefile new file mode 100644 index 0000000000..5fb774f1c7 --- /dev/null +++ b/src/lib/libcrypto/x509/Makefile | |||
@@ -0,0 +1,592 @@ | |||
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 | 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_file.c b/src/lib/libcrypto/x509/by_file.c index a5e0d4aefa..b4b04183d0 100644 --- a/src/lib/libcrypto/x509/by_file.c +++ b/src/lib/libcrypto/x509/by_file.c | |||
@@ -150,7 +150,7 @@ int X509_load_cert_file(X509_LOOKUP *ctx, const char *file, int type) | |||
150 | x=PEM_read_bio_X509_AUX(in,NULL,NULL,NULL); | 150 | x=PEM_read_bio_X509_AUX(in,NULL,NULL,NULL); |
151 | if (x == NULL) | 151 | if (x == NULL) |
152 | { | 152 | { |
153 | if ((ERR_GET_REASON(ERR_peek_last_error()) == | 153 | if ((ERR_GET_REASON(ERR_peek_error()) == |
154 | PEM_R_NO_START_LINE) && (count > 0)) | 154 | PEM_R_NO_START_LINE) && (count > 0)) |
155 | { | 155 | { |
156 | ERR_clear_error(); | 156 | ERR_clear_error(); |
@@ -217,7 +217,7 @@ int X509_load_crl_file(X509_LOOKUP *ctx, const char *file, int type) | |||
217 | x=PEM_read_bio_X509_CRL(in,NULL,NULL,NULL); | 217 | x=PEM_read_bio_X509_CRL(in,NULL,NULL,NULL); |
218 | if (x == NULL) | 218 | if (x == NULL) |
219 | { | 219 | { |
220 | if ((ERR_GET_REASON(ERR_peek_last_error()) == | 220 | if ((ERR_GET_REASON(ERR_peek_error()) == |
221 | PEM_R_NO_START_LINE) && (count > 0)) | 221 | PEM_R_NO_START_LINE) && (count > 0)) |
222 | { | 222 | { |
223 | ERR_clear_error(); | 223 | ERR_clear_error(); |
diff --git a/src/lib/libcrypto/x509/x509.h b/src/lib/libcrypto/x509/x509.h index e8c1a59cf2..8d0c7e2e17 100644 --- a/src/lib/libcrypto/x509/x509.h +++ b/src/lib/libcrypto/x509/x509.h | |||
@@ -410,7 +410,6 @@ typedef struct X509_crl_info_st | |||
410 | ASN1_TIME *nextUpdate; | 410 | ASN1_TIME *nextUpdate; |
411 | STACK_OF(X509_REVOKED) *revoked; | 411 | STACK_OF(X509_REVOKED) *revoked; |
412 | STACK_OF(X509_EXTENSION) /* [0] */ *extensions; | 412 | STACK_OF(X509_EXTENSION) /* [0] */ *extensions; |
413 | ASN1_ENCODING enc; | ||
414 | } X509_CRL_INFO; | 413 | } X509_CRL_INFO; |
415 | 414 | ||
416 | struct X509_crl_st | 415 | struct X509_crl_st |
@@ -1038,18 +1037,18 @@ int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, | |||
1038 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, | 1037 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, |
1039 | unsigned char *bytes, int len, int loc, int set); | 1038 | unsigned char *bytes, int len, int loc, int set); |
1040 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, | 1039 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, |
1041 | const char *field, int type, const unsigned char *bytes, int len); | 1040 | char *field, int type, unsigned char *bytes, int len); |
1042 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, | 1041 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, |
1043 | int type,unsigned char *bytes, int len); | 1042 | int type,unsigned char *bytes, int len); |
1044 | int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, | 1043 | int X509_NAME_add_entry_by_txt(X509_NAME *name, char *field, int type, |
1045 | const unsigned char *bytes, int len, int loc, int set); | 1044 | unsigned char *bytes, int len, int loc, int set); |
1046 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, | 1045 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, |
1047 | ASN1_OBJECT *obj, int type,const unsigned char *bytes, | 1046 | ASN1_OBJECT *obj, int type,unsigned char *bytes, |
1048 | int len); | 1047 | int len); |
1049 | int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, | 1048 | int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, |
1050 | ASN1_OBJECT *obj); | 1049 | ASN1_OBJECT *obj); |
1051 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, | 1050 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, |
1052 | const unsigned char *bytes, int len); | 1051 | unsigned char *bytes, int len); |
1053 | ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); | 1052 | ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); |
1054 | ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); | 1053 | ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); |
1055 | 1054 | ||
diff --git a/src/lib/libcrypto/x509/x509_cmp.c b/src/lib/libcrypto/x509/x509_cmp.c index 030d0966fc..f460102f49 100644 --- a/src/lib/libcrypto/x509/x509_cmp.c +++ b/src/lib/libcrypto/x509/x509_cmp.c | |||
@@ -254,49 +254,33 @@ static int nocase_spacenorm_cmp(const ASN1_STRING *a, const ASN1_STRING *b) | |||
254 | return 0; | 254 | return 0; |
255 | } | 255 | } |
256 | 256 | ||
257 | static int asn1_string_memcmp(ASN1_STRING *a, ASN1_STRING *b) | ||
258 | { | ||
259 | int j; | ||
260 | j = a->length - b->length; | ||
261 | if (j) | ||
262 | return j; | ||
263 | return memcmp(a->data, b->data, a->length); | ||
264 | } | ||
265 | |||
266 | #define STR_TYPE_CMP (B_ASN1_PRINTABLESTRING|B_ASN1_T61STRING|B_ASN1_UTF8STRING) | ||
267 | |||
268 | int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b) | 257 | int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b) |
269 | { | 258 | { |
270 | int i,j; | 259 | int i,j; |
271 | X509_NAME_ENTRY *na,*nb; | 260 | X509_NAME_ENTRY *na,*nb; |
272 | 261 | ||
273 | unsigned long nabit, nbbit; | 262 | if (sk_X509_NAME_ENTRY_num(a->entries) |
274 | 263 | != sk_X509_NAME_ENTRY_num(b->entries)) | |
275 | j = sk_X509_NAME_ENTRY_num(a->entries) | 264 | return sk_X509_NAME_ENTRY_num(a->entries) |
276 | - sk_X509_NAME_ENTRY_num(b->entries); | 265 | -sk_X509_NAME_ENTRY_num(b->entries); |
277 | if (j) | ||
278 | return j; | ||
279 | for (i=sk_X509_NAME_ENTRY_num(a->entries)-1; i>=0; i--) | 266 | for (i=sk_X509_NAME_ENTRY_num(a->entries)-1; i>=0; i--) |
280 | { | 267 | { |
281 | na=sk_X509_NAME_ENTRY_value(a->entries,i); | 268 | na=sk_X509_NAME_ENTRY_value(a->entries,i); |
282 | nb=sk_X509_NAME_ENTRY_value(b->entries,i); | 269 | nb=sk_X509_NAME_ENTRY_value(b->entries,i); |
283 | j=na->value->type-nb->value->type; | 270 | j=na->value->type-nb->value->type; |
284 | if (j) | 271 | if (j) return(j); |
285 | { | 272 | if (na->value->type == V_ASN1_PRINTABLESTRING) |
286 | nabit = ASN1_tag2bit(na->value->type); | ||
287 | nbbit = ASN1_tag2bit(nb->value->type); | ||
288 | if (!(nabit & STR_TYPE_CMP) || | ||
289 | !(nbbit & STR_TYPE_CMP)) | ||
290 | return j; | ||
291 | j = asn1_string_memcmp(na->value, nb->value); | ||
292 | } | ||
293 | else if (na->value->type == V_ASN1_PRINTABLESTRING) | ||
294 | j=nocase_spacenorm_cmp(na->value, nb->value); | 273 | j=nocase_spacenorm_cmp(na->value, nb->value); |
295 | else if (na->value->type == V_ASN1_IA5STRING | 274 | else if (na->value->type == V_ASN1_IA5STRING |
296 | && OBJ_obj2nid(na->object) == NID_pkcs9_emailAddress) | 275 | && OBJ_obj2nid(na->object) == NID_pkcs9_emailAddress) |
297 | j=nocase_cmp(na->value, nb->value); | 276 | j=nocase_cmp(na->value, nb->value); |
298 | else | 277 | else |
299 | j = asn1_string_memcmp(na->value, nb->value); | 278 | { |
279 | j=na->value->length-nb->value->length; | ||
280 | if (j) return(j); | ||
281 | j=memcmp(na->value->data,nb->value->data, | ||
282 | na->value->length); | ||
283 | } | ||
300 | if (j) return(j); | 284 | if (j) return(j); |
301 | j=na->set-nb->set; | 285 | j=na->set-nb->set; |
302 | if (j) return(j); | 286 | if (j) return(j); |
@@ -322,16 +306,10 @@ unsigned long X509_NAME_hash(X509_NAME *x) | |||
322 | { | 306 | { |
323 | unsigned long ret=0; | 307 | unsigned long ret=0; |
324 | unsigned char md[16]; | 308 | unsigned char md[16]; |
325 | EVP_MD_CTX md_ctx; | ||
326 | 309 | ||
327 | /* Make sure X509_NAME structure contains valid cached encoding */ | 310 | /* Make sure X509_NAME structure contains valid cached encoding */ |
328 | i2d_X509_NAME(x,NULL); | 311 | i2d_X509_NAME(x,NULL); |
329 | EVP_MD_CTX_init(&md_ctx); | 312 | EVP_Digest(x->bytes->data, x->bytes->length, md, NULL, EVP_md5(), NULL); |
330 | EVP_MD_CTX_set_flags(&md_ctx, EVP_MD_CTX_FLAG_NON_FIPS_ALLOW); | ||
331 | EVP_DigestInit_ex(&md_ctx, EVP_md5(), NULL); | ||
332 | EVP_DigestUpdate(&md_ctx, x->bytes->data, x->bytes->length); | ||
333 | EVP_DigestFinal_ex(&md_ctx,md,NULL); | ||
334 | EVP_MD_CTX_cleanup(&md_ctx); | ||
335 | 313 | ||
336 | ret=( ((unsigned long)md[0] )|((unsigned long)md[1]<<8L)| | 314 | ret=( ((unsigned long)md[0] )|((unsigned long)md[1]<<8L)| |
337 | ((unsigned long)md[2]<<16L)|((unsigned long)md[3]<<24L) | 315 | ((unsigned long)md[2]<<16L)|((unsigned long)md[3]<<24L) |
diff --git a/src/lib/libcrypto/x509/x509_r2x.c b/src/lib/libcrypto/x509/x509_r2x.c index fb8a78dabe..db051033d9 100644 --- a/src/lib/libcrypto/x509/x509_r2x.c +++ b/src/lib/libcrypto/x509/x509_r2x.c | |||
@@ -92,10 +92,8 @@ X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey) | |||
92 | X509_set_subject_name(ret,X509_NAME_dup(xn)); | 92 | X509_set_subject_name(ret,X509_NAME_dup(xn)); |
93 | X509_set_issuer_name(ret,X509_NAME_dup(xn)); | 93 | X509_set_issuer_name(ret,X509_NAME_dup(xn)); |
94 | 94 | ||
95 | if (X509_gmtime_adj(xi->validity->notBefore,0) == NULL) | 95 | X509_gmtime_adj(xi->validity->notBefore,0); |
96 | goto err; | 96 | X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days); |
97 | if (X509_gmtime_adj(xi->validity->notAfter,(long)60*60*24*days) == NULL) | ||
98 | goto err; | ||
99 | 97 | ||
100 | X509_set_pubkey(ret,X509_REQ_get_pubkey(r)); | 98 | X509_set_pubkey(ret,X509_REQ_get_pubkey(r)); |
101 | 99 | ||
diff --git a/src/lib/libcrypto/x509/x509_req.c b/src/lib/libcrypto/x509/x509_req.c index 59fc6ca548..0affa3bf30 100644 --- a/src/lib/libcrypto/x509/x509_req.c +++ b/src/lib/libcrypto/x509/x509_req.c | |||
@@ -118,7 +118,7 @@ EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) | |||
118 | * used and there may be more: so the list is configurable. | 118 | * used and there may be more: so the list is configurable. |
119 | */ | 119 | */ |
120 | 120 | ||
121 | static int ext_nid_list[] = { NID_ext_req, NID_ms_ext_req, NID_undef}; | 121 | static int ext_nid_list[] = { NID_ms_ext_req, NID_ext_req, NID_undef}; |
122 | 122 | ||
123 | static int *ext_nids = ext_nid_list; | 123 | static int *ext_nids = ext_nid_list; |
124 | 124 | ||
@@ -143,33 +143,32 @@ void X509_REQ_set_extension_nids(int *nids) | |||
143 | } | 143 | } |
144 | 144 | ||
145 | STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req) | 145 | STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req) |
146 | { | 146 | { |
147 | X509_ATTRIBUTE *attr; | 147 | X509_ATTRIBUTE *attr; |
148 | STACK_OF(X509_ATTRIBUTE) *sk; | ||
148 | ASN1_TYPE *ext = NULL; | 149 | ASN1_TYPE *ext = NULL; |
149 | int idx, *pnid; | 150 | int i; |
150 | unsigned char *p; | 151 | unsigned char *p; |
151 | 152 | if ((req == NULL) || (req->req_info == NULL)) | |
152 | if ((req == NULL) || (req->req_info == NULL) || !ext_nids) | ||
153 | return(NULL); | 153 | return(NULL); |
154 | for (pnid = ext_nids; *pnid != NID_undef; pnid++) | 154 | sk=req->req_info->attributes; |
155 | { | 155 | if (!sk) return NULL; |
156 | idx = X509_REQ_get_attr_by_NID(req, *pnid, -1); | 156 | for(i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) { |
157 | if (idx == -1) | 157 | attr = sk_X509_ATTRIBUTE_value(sk, i); |
158 | continue; | 158 | if(X509_REQ_extension_nid(OBJ_obj2nid(attr->object))) { |
159 | attr = X509_REQ_get_attr(req, idx); | 159 | if(attr->single) ext = attr->value.single; |
160 | if(attr->single) ext = attr->value.single; | 160 | else if(sk_ASN1_TYPE_num(attr->value.set)) |
161 | else if(sk_ASN1_TYPE_num(attr->value.set)) | 161 | ext = sk_ASN1_TYPE_value(attr->value.set, 0); |
162 | ext = sk_ASN1_TYPE_value(attr->value.set, 0); | 162 | break; |
163 | break; | ||
164 | } | 163 | } |
165 | if(!ext || (ext->type != V_ASN1_SEQUENCE)) | 164 | } |
166 | return NULL; | 165 | if(!ext || (ext->type != V_ASN1_SEQUENCE)) return NULL; |
167 | p = ext->value.sequence->data; | 166 | p = ext->value.sequence->data; |
168 | return d2i_ASN1_SET_OF_X509_EXTENSION(NULL, &p, | 167 | return d2i_ASN1_SET_OF_X509_EXTENSION(NULL, &p, |
169 | ext->value.sequence->length, | 168 | ext->value.sequence->length, |
170 | d2i_X509_EXTENSION, X509_EXTENSION_free, | 169 | d2i_X509_EXTENSION, X509_EXTENSION_free, |
171 | V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL); | 170 | V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL); |
172 | } | 171 | } |
173 | 172 | ||
174 | /* Add a STACK_OF extensions to a certificate request: allow alternative OIDs | 173 | /* Add a STACK_OF extensions to a certificate request: allow alternative OIDs |
175 | * in case we want to create a non standard one. | 174 | * in case we want to create a non standard one. |
diff --git a/src/lib/libcrypto/x509/x509_txt.c b/src/lib/libcrypto/x509/x509_txt.c index f19e66a238..e31ebc6741 100644 --- a/src/lib/libcrypto/x509/x509_txt.c +++ b/src/lib/libcrypto/x509/x509_txt.c | |||
@@ -122,14 +122,8 @@ const char *X509_verify_cert_error_string(long n) | |||
122 | return("certificate revoked"); | 122 | return("certificate revoked"); |
123 | case X509_V_ERR_INVALID_CA: | 123 | case X509_V_ERR_INVALID_CA: |
124 | return ("invalid CA certificate"); | 124 | return ("invalid CA certificate"); |
125 | case X509_V_ERR_INVALID_NON_CA: | ||
126 | return ("invalid non-CA certificate (has CA markings)"); | ||
127 | case X509_V_ERR_PATH_LENGTH_EXCEEDED: | 125 | case X509_V_ERR_PATH_LENGTH_EXCEEDED: |
128 | return ("path length constraint exceeded"); | 126 | return ("path length constraint exceeded"); |
129 | case X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED: | ||
130 | return("proxy path length constraint exceeded"); | ||
131 | case X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED: | ||
132 | return("proxy cerificates not allowed, please set the appropriate flag"); | ||
133 | case X509_V_ERR_INVALID_PURPOSE: | 127 | case X509_V_ERR_INVALID_PURPOSE: |
134 | return ("unsupported certificate purpose"); | 128 | return ("unsupported certificate purpose"); |
135 | case X509_V_ERR_CERT_UNTRUSTED: | 129 | case X509_V_ERR_CERT_UNTRUSTED: |
@@ -146,16 +140,19 @@ const char *X509_verify_cert_error_string(long n) | |||
146 | return("authority and issuer serial number mismatch"); | 140 | return("authority and issuer serial number mismatch"); |
147 | case X509_V_ERR_KEYUSAGE_NO_CERTSIGN: | 141 | case X509_V_ERR_KEYUSAGE_NO_CERTSIGN: |
148 | return("key usage does not include certificate signing"); | 142 | return("key usage does not include certificate signing"); |
143 | |||
149 | case X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER: | 144 | case X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER: |
150 | return("unable to get CRL issuer certificate"); | 145 | return("unable to get CRL issuer certificate"); |
146 | |||
151 | case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION: | 147 | case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION: |
152 | return("unhandled critical extension"); | 148 | return("unhandled critical extension"); |
149 | |||
153 | case X509_V_ERR_KEYUSAGE_NO_CRL_SIGN: | 150 | case X509_V_ERR_KEYUSAGE_NO_CRL_SIGN: |
154 | return("key usage does not include CRL signing"); | 151 | return("key usage does not include CRL signing"); |
155 | case X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE: | 152 | |
156 | return("key usage does not include digital signature"); | ||
157 | case X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION: | 153 | case X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION: |
158 | return("unhandled critical CRL extension"); | 154 | return("unhandled critical CRL extension"); |
155 | |||
159 | default: | 156 | default: |
160 | BIO_snprintf(buf,sizeof buf,"error number %ld",n); | 157 | BIO_snprintf(buf,sizeof buf,"error number %ld",n); |
161 | return(buf); | 158 | return(buf); |
diff --git a/src/lib/libcrypto/x509/x509_vfy.c b/src/lib/libcrypto/x509/x509_vfy.c index e43c861ee7..2e4d0b823a 100644 --- a/src/lib/libcrypto/x509/x509_vfy.c +++ b/src/lib/libcrypto/x509/x509_vfy.c | |||
@@ -73,7 +73,7 @@ | |||
73 | static int null_callback(int ok,X509_STORE_CTX *e); | 73 | static int null_callback(int ok,X509_STORE_CTX *e); |
74 | static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); | 74 | static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer); |
75 | static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x); | 75 | static X509 *find_issuer(X509_STORE_CTX *ctx, STACK_OF(X509) *sk, X509 *x); |
76 | static int check_chain_extensions(X509_STORE_CTX *ctx); | 76 | static int check_chain_purpose(X509_STORE_CTX *ctx); |
77 | static int check_trust(X509_STORE_CTX *ctx); | 77 | static int check_trust(X509_STORE_CTX *ctx); |
78 | static int check_revocation(X509_STORE_CTX *ctx); | 78 | static int check_revocation(X509_STORE_CTX *ctx); |
79 | static int check_cert(X509_STORE_CTX *ctx); | 79 | static int check_cert(X509_STORE_CTX *ctx); |
@@ -281,7 +281,7 @@ int X509_verify_cert(X509_STORE_CTX *ctx) | |||
281 | } | 281 | } |
282 | 282 | ||
283 | /* We have the chain complete: now we need to check its purpose */ | 283 | /* We have the chain complete: now we need to check its purpose */ |
284 | ok = check_chain_extensions(ctx); | 284 | if (ctx->purpose > 0) ok = check_chain_purpose(ctx); |
285 | 285 | ||
286 | if (!ok) goto end; | 286 | if (!ok) goto end; |
287 | 287 | ||
@@ -365,39 +365,21 @@ static int get_issuer_sk(X509 **issuer, X509_STORE_CTX *ctx, X509 *x) | |||
365 | else | 365 | else |
366 | return 0; | 366 | return 0; |
367 | } | 367 | } |
368 | 368 | ||
369 | 369 | ||
370 | /* Check a certificate chains extensions for consistency | 370 | /* Check a certificate chains extensions for consistency |
371 | * with the supplied purpose | 371 | * with the supplied purpose |
372 | */ | 372 | */ |
373 | 373 | ||
374 | static int check_chain_extensions(X509_STORE_CTX *ctx) | 374 | static int check_chain_purpose(X509_STORE_CTX *ctx) |
375 | { | 375 | { |
376 | #ifdef OPENSSL_NO_CHAIN_VERIFY | 376 | #ifdef OPENSSL_NO_CHAIN_VERIFY |
377 | return 1; | 377 | return 1; |
378 | #else | 378 | #else |
379 | int i, ok=0, must_be_ca; | 379 | int i, ok=0; |
380 | X509 *x; | 380 | X509 *x; |
381 | int (*cb)(); | 381 | int (*cb)(); |
382 | int proxy_path_length = 0; | ||
383 | int allow_proxy_certs = !!(ctx->flags & X509_V_FLAG_ALLOW_PROXY_CERTS); | ||
384 | cb=ctx->verify_cb; | 382 | cb=ctx->verify_cb; |
385 | |||
386 | /* must_be_ca can have 1 of 3 values: | ||
387 | -1: we accept both CA and non-CA certificates, to allow direct | ||
388 | use of self-signed certificates (which are marked as CA). | ||
389 | 0: we only accept non-CA certificates. This is currently not | ||
390 | used, but the possibility is present for future extensions. | ||
391 | 1: we only accept CA certificates. This is currently used for | ||
392 | all certificates in the chain except the leaf certificate. | ||
393 | */ | ||
394 | must_be_ca = -1; | ||
395 | |||
396 | /* A hack to keep people who don't want to modify their software | ||
397 | happy */ | ||
398 | if (getenv("OPENSSL_ALLOW_PROXY_CERTS")) | ||
399 | allow_proxy_certs = 1; | ||
400 | |||
401 | /* Check all untrusted certificates */ | 383 | /* Check all untrusted certificates */ |
402 | for (i = 0; i < ctx->last_untrusted; i++) | 384 | for (i = 0; i < ctx->last_untrusted; i++) |
403 | { | 385 | { |
@@ -412,73 +394,23 @@ static int check_chain_extensions(X509_STORE_CTX *ctx) | |||
412 | ok=cb(0,ctx); | 394 | ok=cb(0,ctx); |
413 | if (!ok) goto end; | 395 | if (!ok) goto end; |
414 | } | 396 | } |
415 | if (!allow_proxy_certs && (x->ex_flags & EXFLAG_PROXY)) | 397 | ret = X509_check_purpose(x, ctx->purpose, i); |
398 | if ((ret == 0) | ||
399 | || ((ctx->flags & X509_V_FLAG_X509_STRICT) | ||
400 | && (ret != 1))) | ||
416 | { | 401 | { |
417 | ctx->error = X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED; | 402 | if (i) |
418 | ctx->error_depth = i; | ||
419 | ctx->current_cert = x; | ||
420 | ok=cb(0,ctx); | ||
421 | if (!ok) goto end; | ||
422 | } | ||
423 | ret = X509_check_ca(x); | ||
424 | switch(must_be_ca) | ||
425 | { | ||
426 | case -1: | ||
427 | if ((ctx->flags & X509_V_FLAG_X509_STRICT) | ||
428 | && (ret != 1) && (ret != 0)) | ||
429 | { | ||
430 | ret = 0; | ||
431 | ctx->error = X509_V_ERR_INVALID_CA; | 403 | ctx->error = X509_V_ERR_INVALID_CA; |
432 | } | ||
433 | else | ||
434 | ret = 1; | ||
435 | break; | ||
436 | case 0: | ||
437 | if (ret != 0) | ||
438 | { | ||
439 | ret = 0; | ||
440 | ctx->error = X509_V_ERR_INVALID_NON_CA; | ||
441 | } | ||
442 | else | 404 | else |
443 | ret = 1; | 405 | ctx->error = X509_V_ERR_INVALID_PURPOSE; |
444 | break; | ||
445 | default: | ||
446 | if ((ret == 0) | ||
447 | || ((ctx->flags & X509_V_FLAG_X509_STRICT) | ||
448 | && (ret != 1))) | ||
449 | { | ||
450 | ret = 0; | ||
451 | ctx->error = X509_V_ERR_INVALID_CA; | ||
452 | } | ||
453 | else | ||
454 | ret = 1; | ||
455 | break; | ||
456 | } | ||
457 | if (ret == 0) | ||
458 | { | ||
459 | ctx->error_depth = i; | 406 | ctx->error_depth = i; |
460 | ctx->current_cert = x; | 407 | ctx->current_cert = x; |
461 | ok=cb(0,ctx); | 408 | ok=cb(0,ctx); |
462 | if (!ok) goto end; | 409 | if (!ok) goto end; |
463 | } | 410 | } |
464 | if (ctx->purpose > 0) | ||
465 | { | ||
466 | ret = X509_check_purpose(x, ctx->purpose, | ||
467 | must_be_ca > 0); | ||
468 | if ((ret == 0) | ||
469 | || ((ctx->flags & X509_V_FLAG_X509_STRICT) | ||
470 | && (ret != 1))) | ||
471 | { | ||
472 | ctx->error = X509_V_ERR_INVALID_PURPOSE; | ||
473 | ctx->error_depth = i; | ||
474 | ctx->current_cert = x; | ||
475 | ok=cb(0,ctx); | ||
476 | if (!ok) goto end; | ||
477 | } | ||
478 | } | ||
479 | /* Check pathlen */ | 411 | /* Check pathlen */ |
480 | if ((i > 1) && (x->ex_pathlen != -1) | 412 | if ((i > 1) && (x->ex_pathlen != -1) |
481 | && (i > (x->ex_pathlen + proxy_path_length + 1))) | 413 | && (i > (x->ex_pathlen + 1))) |
482 | { | 414 | { |
483 | ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED; | 415 | ctx->error = X509_V_ERR_PATH_LENGTH_EXCEEDED; |
484 | ctx->error_depth = i; | 416 | ctx->error_depth = i; |
@@ -486,32 +418,6 @@ static int check_chain_extensions(X509_STORE_CTX *ctx) | |||
486 | ok=cb(0,ctx); | 418 | ok=cb(0,ctx); |
487 | if (!ok) goto end; | 419 | if (!ok) goto end; |
488 | } | 420 | } |
489 | /* If this certificate is a proxy certificate, the next | ||
490 | certificate must be another proxy certificate or a EE | ||
491 | certificate. If not, the next certificate must be a | ||
492 | CA certificate. */ | ||
493 | if (x->ex_flags & EXFLAG_PROXY) | ||
494 | { | ||
495 | PROXY_CERT_INFO_EXTENSION *pci = | ||
496 | X509_get_ext_d2i(x, NID_proxyCertInfo, | ||
497 | NULL, NULL); | ||
498 | if (pci->pcPathLengthConstraint && | ||
499 | ASN1_INTEGER_get(pci->pcPathLengthConstraint) | ||
500 | < i) | ||
501 | { | ||
502 | PROXY_CERT_INFO_EXTENSION_free(pci); | ||
503 | ctx->error = X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED; | ||
504 | ctx->error_depth = i; | ||
505 | ctx->current_cert = x; | ||
506 | ok=cb(0,ctx); | ||
507 | if (!ok) goto end; | ||
508 | } | ||
509 | PROXY_CERT_INFO_EXTENSION_free(pci); | ||
510 | proxy_path_length++; | ||
511 | must_be_ca = 0; | ||
512 | } | ||
513 | else | ||
514 | must_be_ca = 1; | ||
515 | } | 421 | } |
516 | ok = 1; | 422 | ok = 1; |
517 | end: | 423 | end: |
@@ -721,15 +627,6 @@ static int cert_crl(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x) | |||
721 | X509_EXTENSION *ext; | 627 | X509_EXTENSION *ext; |
722 | /* Look for serial number of certificate in CRL */ | 628 | /* Look for serial number of certificate in CRL */ |
723 | rtmp.serialNumber = X509_get_serialNumber(x); | 629 | rtmp.serialNumber = X509_get_serialNumber(x); |
724 | /* Sort revoked into serial number order if not already sorted. | ||
725 | * Do this under a lock to avoid race condition. | ||
726 | */ | ||
727 | if (!sk_X509_REVOKED_is_sorted(crl->crl->revoked)) | ||
728 | { | ||
729 | CRYPTO_w_lock(CRYPTO_LOCK_X509_CRL); | ||
730 | sk_X509_REVOKED_sort(crl->crl->revoked); | ||
731 | CRYPTO_w_unlock(CRYPTO_LOCK_X509_CRL); | ||
732 | } | ||
733 | idx = sk_X509_REVOKED_find(crl->crl->revoked, &rtmp); | 630 | idx = sk_X509_REVOKED_find(crl->crl->revoked, &rtmp); |
734 | /* If found assume revoked: want something cleverer than | 631 | /* If found assume revoked: want something cleverer than |
735 | * this to handle entry extensions in V2 CRLs. | 632 | * this to handle entry extensions in V2 CRLs. |
@@ -875,7 +772,6 @@ static int internal_verify(X509_STORE_CTX *ctx) | |||
875 | } | 772 | } |
876 | 773 | ||
877 | /* The last error (if any) is still in the error value */ | 774 | /* The last error (if any) is still in the error value */ |
878 | ctx->current_issuer=xi; | ||
879 | ctx->current_cert=xs; | 775 | ctx->current_cert=xs; |
880 | ok=(*cb)(1,ctx); | 776 | ok=(*cb)(1,ctx); |
881 | if (!ok) goto end; | 777 | if (!ok) goto end; |
@@ -955,8 +851,7 @@ int X509_cmp_time(ASN1_TIME *ctm, time_t *cmp_time) | |||
955 | atm.length=sizeof(buff2); | 851 | atm.length=sizeof(buff2); |
956 | atm.data=(unsigned char *)buff2; | 852 | atm.data=(unsigned char *)buff2; |
957 | 853 | ||
958 | if (X509_time_adj(&atm,-offset*60, cmp_time) == NULL) | 854 | X509_time_adj(&atm,-offset*60, cmp_time); |
959 | return 0; | ||
960 | 855 | ||
961 | if (ctm->type == V_ASN1_UTCTIME) | 856 | if (ctm->type == V_ASN1_UTCTIME) |
962 | { | 857 | { |
diff --git a/src/lib/libcrypto/x509/x509_vfy.h b/src/lib/libcrypto/x509/x509_vfy.h index 7fd1f0bc4d..198495884c 100644 --- a/src/lib/libcrypto/x509/x509_vfy.h +++ b/src/lib/libcrypto/x509/x509_vfy.h | |||
@@ -276,7 +276,7 @@ struct x509_store_ctx_st /* X509_STORE_CTX */ | |||
276 | #define X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY 6 | 276 | #define X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY 6 |
277 | #define X509_V_ERR_CERT_SIGNATURE_FAILURE 7 | 277 | #define X509_V_ERR_CERT_SIGNATURE_FAILURE 7 |
278 | #define X509_V_ERR_CRL_SIGNATURE_FAILURE 8 | 278 | #define X509_V_ERR_CRL_SIGNATURE_FAILURE 8 |
279 | #define X509_V_ERR_CERT_NOT_YET_VALID 9 | 279 | #define X509_V_ERR_CERT_NOT_YET_VALID 9 |
280 | #define X509_V_ERR_CERT_HAS_EXPIRED 10 | 280 | #define X509_V_ERR_CERT_HAS_EXPIRED 10 |
281 | #define X509_V_ERR_CRL_NOT_YET_VALID 11 | 281 | #define X509_V_ERR_CRL_NOT_YET_VALID 11 |
282 | #define X509_V_ERR_CRL_HAS_EXPIRED 12 | 282 | #define X509_V_ERR_CRL_HAS_EXPIRED 12 |
@@ -306,10 +306,6 @@ struct x509_store_ctx_st /* X509_STORE_CTX */ | |||
306 | #define X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION 34 | 306 | #define X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION 34 |
307 | #define X509_V_ERR_KEYUSAGE_NO_CRL_SIGN 35 | 307 | #define X509_V_ERR_KEYUSAGE_NO_CRL_SIGN 35 |
308 | #define X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION 36 | 308 | #define X509_V_ERR_UNHANDLED_CRITICAL_CRL_EXTENSION 36 |
309 | #define X509_V_ERR_INVALID_NON_CA 37 | ||
310 | #define X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED 38 | ||
311 | #define X509_V_ERR_KEYUSAGE_NO_DIGITAL_SIGNATURE 39 | ||
312 | #define X509_V_ERR_PROXY_CERTIFICATES_NOT_ALLOWED 40 | ||
313 | 309 | ||
314 | /* The application is not happy */ | 310 | /* The application is not happy */ |
315 | #define X509_V_ERR_APPLICATION_VERIFICATION 50 | 311 | #define X509_V_ERR_APPLICATION_VERIFICATION 50 |
@@ -328,8 +324,6 @@ struct x509_store_ctx_st /* X509_STORE_CTX */ | |||
328 | #define X509_V_FLAG_IGNORE_CRITICAL 0x10 | 324 | #define X509_V_FLAG_IGNORE_CRITICAL 0x10 |
329 | /* Disable workarounds for broken certificates */ | 325 | /* Disable workarounds for broken certificates */ |
330 | #define X509_V_FLAG_X509_STRICT 0x20 | 326 | #define X509_V_FLAG_X509_STRICT 0x20 |
331 | /* Enable proxy certificate validation */ | ||
332 | #define X509_V_FLAG_ALLOW_PROXY_CERTS 0x40 | ||
333 | 327 | ||
334 | int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type, | 328 | int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h, int type, |
335 | X509_NAME *name); | 329 | X509_NAME *name); |
diff --git a/src/lib/libcrypto/x509/x509cset.c b/src/lib/libcrypto/x509/x509cset.c index 9d1646d5c8..6cac440ea9 100644 --- a/src/lib/libcrypto/x509/x509cset.c +++ b/src/lib/libcrypto/x509/x509cset.c | |||
@@ -129,7 +129,6 @@ int X509_CRL_sort(X509_CRL *c) | |||
129 | r=sk_X509_REVOKED_value(c->crl->revoked,i); | 129 | r=sk_X509_REVOKED_value(c->crl->revoked,i); |
130 | r->sequence=i; | 130 | r->sequence=i; |
131 | } | 131 | } |
132 | c->crl->enc.modified = 1; | ||
133 | return 1; | 132 | return 1; |
134 | } | 133 | } |
135 | 134 | ||
diff --git a/src/lib/libcrypto/x509/x509name.c b/src/lib/libcrypto/x509/x509name.c index 068abfe5f0..4c20e03ece 100644 --- a/src/lib/libcrypto/x509/x509name.c +++ b/src/lib/libcrypto/x509/x509name.c | |||
@@ -195,8 +195,8 @@ int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, | |||
195 | return ret; | 195 | return ret; |
196 | } | 196 | } |
197 | 197 | ||
198 | int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, | 198 | int X509_NAME_add_entry_by_txt(X509_NAME *name, char *field, int type, |
199 | const unsigned char *bytes, int len, int loc, int set) | 199 | unsigned char *bytes, int len, int loc, int set) |
200 | { | 200 | { |
201 | X509_NAME_ENTRY *ne; | 201 | X509_NAME_ENTRY *ne; |
202 | int ret; | 202 | int ret; |
@@ -273,7 +273,7 @@ err: | |||
273 | } | 273 | } |
274 | 274 | ||
275 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, | 275 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, |
276 | const char *field, int type, const unsigned char *bytes, int len) | 276 | char *field, int type, unsigned char *bytes, int len) |
277 | { | 277 | { |
278 | ASN1_OBJECT *obj; | 278 | ASN1_OBJECT *obj; |
279 | X509_NAME_ENTRY *nentry; | 279 | X509_NAME_ENTRY *nentry; |
@@ -309,7 +309,7 @@ X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, | |||
309 | } | 309 | } |
310 | 310 | ||
311 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, | 311 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, |
312 | ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len) | 312 | ASN1_OBJECT *obj, int type, unsigned char *bytes, int len) |
313 | { | 313 | { |
314 | X509_NAME_ENTRY *ret; | 314 | X509_NAME_ENTRY *ret; |
315 | 315 | ||
@@ -347,7 +347,7 @@ int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj) | |||
347 | } | 347 | } |
348 | 348 | ||
349 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, | 349 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, |
350 | const unsigned char *bytes, int len) | 350 | unsigned char *bytes, int len) |
351 | { | 351 | { |
352 | int i; | 352 | int i; |
353 | 353 | ||
diff --git a/src/lib/libcrypto/x509/x_all.c b/src/lib/libcrypto/x509/x_all.c index ac6dea493a..fb5015cd4d 100644 --- a/src/lib/libcrypto/x509/x_all.c +++ b/src/lib/libcrypto/x509/x_all.c | |||
@@ -103,7 +103,6 @@ int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md) | |||
103 | 103 | ||
104 | int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md) | 104 | int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md) |
105 | { | 105 | { |
106 | x->crl->enc.modified = 1; | ||
107 | return(ASN1_item_sign(ASN1_ITEM_rptr(X509_CRL_INFO),x->crl->sig_alg, | 106 | return(ASN1_item_sign(ASN1_ITEM_rptr(X509_CRL_INFO),x->crl->sig_alg, |
108 | x->sig_alg, x->signature, x->crl,pkey,md)); | 107 | x->sig_alg, x->signature, x->crl,pkey,md)); |
109 | } | 108 | } |