diff options
Diffstat (limited to 'src/lib/libcrypto/pkcs12')
-rw-r--r-- | src/lib/libcrypto/pkcs12/Makefile | 415 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs12/Makefile.ssl | 417 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs12/p12_crpt.c | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs12/p12_init.c | 12 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs12/p12_kiss.c | 18 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs12/p12_mutl.c | 5 |
6 files changed, 844 insertions, 29 deletions
diff --git a/src/lib/libcrypto/pkcs12/Makefile b/src/lib/libcrypto/pkcs12/Makefile new file mode 100644 index 0000000000..854b641f7c --- /dev/null +++ b/src/lib/libcrypto/pkcs12/Makefile | |||
@@ -0,0 +1,415 @@ | |||
1 | # | ||
2 | # SSLeay/crypto/pkcs12/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= pkcs12 | ||
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 | ||
21 | TEST= | ||
22 | APPS= | ||
23 | |||
24 | LIB=$(TOP)/libcrypto.a | ||
25 | LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \ | ||
26 | p12_init.c p12_key.c p12_kiss.c p12_mutl.c\ | ||
27 | p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c | ||
28 | LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \ | ||
29 | p12_init.o p12_key.o p12_kiss.o p12_mutl.o\ | ||
30 | p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o | ||
31 | |||
32 | SRC= $(LIBSRC) | ||
33 | |||
34 | EXHEADER= pkcs12.h | ||
35 | HEADER= $(EXHEADER) | ||
36 | |||
37 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
38 | |||
39 | top: | ||
40 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
41 | |||
42 | test: | ||
43 | |||
44 | all: lib | ||
45 | |||
46 | lib: $(LIBOBJ) | ||
47 | $(AR) $(LIB) $(LIBOBJ) | ||
48 | $(RANLIB) $(LIB) || echo Never mind. | ||
49 | @touch lib | ||
50 | |||
51 | files: | ||
52 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | ||
53 | |||
54 | links: | ||
55 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
56 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
58 | |||
59 | install: | ||
60 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | ||
61 | do \ | ||
62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
63 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
64 | done; | ||
65 | |||
66 | tags: | ||
67 | ctags $(SRC) | ||
68 | |||
69 | tests: | ||
70 | |||
71 | lint: | ||
72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
73 | |||
74 | depend: | ||
75 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
76 | |||
77 | dclean: | ||
78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
79 | mv -f Makefile.new $(MAKEFILE) | ||
80 | |||
81 | clean: | ||
82 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
83 | |||
84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
85 | |||
86 | p12_add.o: ../../e_os.h ../../include/openssl/aes.h | ||
87 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
88 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
89 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
90 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
91 | p12_add.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
92 | p12_add.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
93 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
94 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
95 | p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
96 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
97 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
98 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
99 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
100 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
101 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
102 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
103 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
104 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
105 | p12_add.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
106 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
107 | p12_add.o: ../cryptlib.h p12_add.c | ||
108 | p12_asn.o: ../../e_os.h ../../include/openssl/aes.h | ||
109 | p12_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
110 | p12_asn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
111 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
112 | p12_asn.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
113 | p12_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
114 | p12_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
115 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
116 | p12_asn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
117 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
118 | p12_asn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
119 | p12_asn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
120 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
121 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
122 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
123 | p12_asn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
124 | p12_asn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
125 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
126 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
127 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
128 | p12_asn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
129 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | ||
130 | p12_attr.o: ../../e_os.h ../../include/openssl/aes.h | ||
131 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
132 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
133 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
134 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
135 | p12_attr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
136 | p12_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
137 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
138 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
139 | p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
140 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
141 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
142 | p12_attr.o: ../../include/openssl/opensslconf.h | ||
143 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
144 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
145 | p12_attr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
146 | p12_attr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
147 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
148 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
149 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
150 | p12_attr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
151 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c | ||
152 | p12_crpt.o: ../../e_os.h ../../include/openssl/aes.h | ||
153 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
154 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
155 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
156 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
157 | p12_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
158 | p12_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
159 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
160 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
161 | p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
162 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
163 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
164 | p12_crpt.o: ../../include/openssl/opensslconf.h | ||
165 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
166 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
167 | p12_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
168 | p12_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
169 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
170 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
171 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
172 | p12_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
173 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c | ||
174 | p12_crt.o: ../../e_os.h ../../include/openssl/aes.h | ||
175 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
176 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
177 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
178 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
179 | p12_crt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
180 | p12_crt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
181 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
182 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
183 | p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
184 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
185 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
186 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
187 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
188 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
189 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
190 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
191 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
192 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
193 | p12_crt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
194 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
195 | p12_crt.o: ../cryptlib.h p12_crt.c | ||
196 | p12_decr.o: ../../e_os.h ../../include/openssl/aes.h | ||
197 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
198 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
199 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
200 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
201 | p12_decr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
202 | p12_decr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
203 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
204 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
205 | p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
206 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
207 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
208 | p12_decr.o: ../../include/openssl/opensslconf.h | ||
209 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
210 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
211 | p12_decr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
212 | p12_decr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
213 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
214 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
215 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
216 | p12_decr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
217 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c | ||
218 | p12_init.o: ../../e_os.h ../../include/openssl/aes.h | ||
219 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
220 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
221 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
222 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
223 | p12_init.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
224 | p12_init.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
225 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
226 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
227 | p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
228 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
229 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
230 | p12_init.o: ../../include/openssl/opensslconf.h | ||
231 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
232 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
233 | p12_init.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
234 | p12_init.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
235 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
236 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
237 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
238 | p12_init.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
239 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c | ||
240 | p12_key.o: ../../e_os.h ../../include/openssl/aes.h | ||
241 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
242 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
243 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
244 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
245 | p12_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
246 | p12_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
247 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
248 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
249 | p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
250 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
251 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
252 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
253 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
254 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
255 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
256 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
257 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
258 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
259 | p12_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
260 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
261 | p12_key.o: ../cryptlib.h p12_key.c | ||
262 | p12_kiss.o: ../../e_os.h ../../include/openssl/aes.h | ||
263 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
264 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
265 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
266 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
267 | p12_kiss.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
268 | p12_kiss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
269 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
270 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
271 | p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
272 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
273 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
274 | p12_kiss.o: ../../include/openssl/opensslconf.h | ||
275 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
276 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
277 | p12_kiss.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
278 | p12_kiss.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
279 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
280 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
281 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
282 | p12_kiss.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
283 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c | ||
284 | p12_mutl.o: ../../e_os.h ../../include/openssl/aes.h | ||
285 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
286 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
287 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
288 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
289 | p12_mutl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
290 | p12_mutl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
291 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
292 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
293 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
294 | p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
295 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
296 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
297 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
298 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
299 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
300 | p12_mutl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
301 | p12_mutl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
302 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
303 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
304 | p12_mutl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
305 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
306 | p12_mutl.o: ../cryptlib.h p12_mutl.c | ||
307 | p12_npas.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
308 | p12_npas.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
309 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
310 | p12_npas.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
311 | p12_npas.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
312 | p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
313 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
314 | p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
315 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
316 | p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
317 | p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
318 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
319 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
320 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
321 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
322 | p12_npas.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
323 | p12_npas.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
324 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
325 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
326 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
327 | p12_npas.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
328 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c | ||
329 | p12_p8d.o: ../../e_os.h ../../include/openssl/aes.h | ||
330 | p12_p8d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
331 | p12_p8d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
332 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
333 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
334 | p12_p8d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
335 | p12_p8d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
336 | p12_p8d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
337 | p12_p8d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
338 | p12_p8d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
339 | p12_p8d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
340 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
341 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
342 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
343 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
344 | p12_p8d.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
345 | p12_p8d.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
346 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
347 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
348 | p12_p8d.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
349 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
350 | p12_p8d.o: ../cryptlib.h p12_p8d.c | ||
351 | p12_p8e.o: ../../e_os.h ../../include/openssl/aes.h | ||
352 | p12_p8e.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
353 | p12_p8e.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
354 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
355 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
356 | p12_p8e.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
357 | p12_p8e.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
358 | p12_p8e.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
359 | p12_p8e.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
360 | p12_p8e.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
361 | p12_p8e.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
362 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
363 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
364 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
365 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
366 | p12_p8e.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
367 | p12_p8e.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
368 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
369 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
370 | p12_p8e.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
371 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
372 | p12_p8e.o: ../cryptlib.h p12_p8e.c | ||
373 | p12_utl.o: ../../e_os.h ../../include/openssl/aes.h | ||
374 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
375 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
376 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
377 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
378 | p12_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
379 | p12_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
380 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
381 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
382 | p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
383 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
384 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
385 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
386 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
387 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
388 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
389 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
390 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
391 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
392 | p12_utl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
393 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
394 | p12_utl.o: ../cryptlib.h p12_utl.c | ||
395 | pk12err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
396 | pk12err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
397 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
398 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
399 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
400 | pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
401 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
402 | pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
403 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
404 | pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
405 | pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
406 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
407 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
408 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
409 | pk12err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
410 | pk12err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
411 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
412 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
413 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
414 | pk12err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
415 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c | ||
diff --git a/src/lib/libcrypto/pkcs12/Makefile.ssl b/src/lib/libcrypto/pkcs12/Makefile.ssl new file mode 100644 index 0000000000..a6e47b4085 --- /dev/null +++ b/src/lib/libcrypto/pkcs12/Makefile.ssl | |||
@@ -0,0 +1,417 @@ | |||
1 | # | ||
2 | # SSLeay/crypto/pkcs12/Makefile | ||
3 | # | ||
4 | |||
5 | DIR= pkcs12 | ||
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 | ||
22 | TEST= | ||
23 | APPS= | ||
24 | |||
25 | LIB=$(TOP)/libcrypto.a | ||
26 | LIBSRC= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c \ | ||
27 | p12_init.c p12_key.c p12_kiss.c p12_mutl.c\ | ||
28 | p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c | ||
29 | LIBOBJ= p12_add.o p12_asn.o p12_attr.o p12_crpt.o p12_crt.o p12_decr.o \ | ||
30 | p12_init.o p12_key.o p12_kiss.o p12_mutl.o\ | ||
31 | p12_utl.o p12_npas.o pk12err.o p12_p8d.o p12_p8e.o | ||
32 | |||
33 | SRC= $(LIBSRC) | ||
34 | |||
35 | EXHEADER= pkcs12.h | ||
36 | HEADER= $(EXHEADER) | ||
37 | |||
38 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
39 | |||
40 | top: | ||
41 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
42 | |||
43 | test: | ||
44 | |||
45 | all: lib | ||
46 | |||
47 | lib: $(LIBOBJ) | ||
48 | $(AR) $(LIB) $(LIBOBJ) | ||
49 | $(RANLIB) $(LIB) || echo Never mind. | ||
50 | @touch lib | ||
51 | |||
52 | files: | ||
53 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
54 | |||
55 | links: | ||
56 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | ||
57 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
58 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
59 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
60 | |||
61 | install: | ||
62 | @for i in $(EXHEADER) ; \ | ||
63 | do \ | ||
64 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
65 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
66 | done; | ||
67 | |||
68 | tags: | ||
69 | ctags $(SRC) | ||
70 | |||
71 | tests: | ||
72 | |||
73 | lint: | ||
74 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
75 | |||
76 | depend: | ||
77 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
78 | |||
79 | dclean: | ||
80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
81 | mv -f Makefile.new $(MAKEFILE) | ||
82 | |||
83 | clean: | ||
84 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
85 | |||
86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
87 | |||
88 | p12_add.o: ../../e_os.h ../../include/openssl/aes.h | ||
89 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
90 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
91 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
92 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
93 | p12_add.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
94 | p12_add.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
95 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
96 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
97 | p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
98 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
99 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
100 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
101 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
102 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
103 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
104 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
105 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
106 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
107 | p12_add.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
108 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
109 | p12_add.o: ../cryptlib.h p12_add.c | ||
110 | p12_asn.o: ../../e_os.h ../../include/openssl/aes.h | ||
111 | p12_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
112 | p12_asn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
113 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
114 | p12_asn.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
115 | p12_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
116 | p12_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
117 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
118 | p12_asn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
119 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
120 | p12_asn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
121 | p12_asn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
122 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
123 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
124 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
125 | p12_asn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
126 | p12_asn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
127 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
128 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
129 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
130 | p12_asn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
131 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | ||
132 | p12_attr.o: ../../e_os.h ../../include/openssl/aes.h | ||
133 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
134 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
135 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
136 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
137 | p12_attr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
138 | p12_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
139 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
140 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
141 | p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
142 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
143 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
144 | p12_attr.o: ../../include/openssl/opensslconf.h | ||
145 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
146 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
147 | p12_attr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
148 | p12_attr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
149 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
150 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
151 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
152 | p12_attr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
153 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c | ||
154 | p12_crpt.o: ../../e_os.h ../../include/openssl/aes.h | ||
155 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
156 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
157 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
158 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
159 | p12_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
160 | p12_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
161 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
162 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
163 | p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
164 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
165 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
166 | p12_crpt.o: ../../include/openssl/opensslconf.h | ||
167 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
168 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
169 | p12_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
170 | p12_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
171 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
172 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
173 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
174 | p12_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
175 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c | ||
176 | p12_crt.o: ../../e_os.h ../../include/openssl/aes.h | ||
177 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
178 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
179 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
180 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
181 | p12_crt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
182 | p12_crt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
183 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
184 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
185 | p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
186 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
187 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
188 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
189 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
190 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
191 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
192 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
193 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
194 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
195 | p12_crt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
196 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
197 | p12_crt.o: ../cryptlib.h p12_crt.c | ||
198 | p12_decr.o: ../../e_os.h ../../include/openssl/aes.h | ||
199 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
200 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
201 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
202 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
203 | p12_decr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
204 | p12_decr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
205 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
206 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
207 | p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
208 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
209 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
210 | p12_decr.o: ../../include/openssl/opensslconf.h | ||
211 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
212 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
213 | p12_decr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
214 | p12_decr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
215 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
216 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
217 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
218 | p12_decr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
219 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c | ||
220 | p12_init.o: ../../e_os.h ../../include/openssl/aes.h | ||
221 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
222 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
223 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
224 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
225 | p12_init.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
226 | p12_init.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
227 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
228 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
229 | p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
230 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
231 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
232 | p12_init.o: ../../include/openssl/opensslconf.h | ||
233 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
234 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
235 | p12_init.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
236 | p12_init.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
237 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
238 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
239 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
240 | p12_init.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
241 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c | ||
242 | p12_key.o: ../../e_os.h ../../include/openssl/aes.h | ||
243 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
244 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
245 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
246 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
247 | p12_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
248 | p12_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
249 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
250 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
251 | p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
252 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
253 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
254 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
255 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
256 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
257 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
258 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
259 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
260 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
261 | p12_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
262 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
263 | p12_key.o: ../cryptlib.h p12_key.c | ||
264 | p12_kiss.o: ../../e_os.h ../../include/openssl/aes.h | ||
265 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
266 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
267 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
268 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
269 | p12_kiss.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
270 | p12_kiss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
271 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
272 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
273 | p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
274 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
275 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
276 | p12_kiss.o: ../../include/openssl/opensslconf.h | ||
277 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
278 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
279 | p12_kiss.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
280 | p12_kiss.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
281 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
282 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
283 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
284 | p12_kiss.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
285 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c | ||
286 | p12_mutl.o: ../../e_os.h ../../include/openssl/aes.h | ||
287 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
288 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
289 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
290 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
291 | p12_mutl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
292 | p12_mutl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
293 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
294 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
295 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
296 | p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
297 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
298 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
299 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
300 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
301 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
302 | p12_mutl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
303 | p12_mutl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
304 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
305 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
306 | p12_mutl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
307 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
308 | p12_mutl.o: ../cryptlib.h p12_mutl.c | ||
309 | p12_npas.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
310 | p12_npas.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
311 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
312 | p12_npas.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
313 | p12_npas.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
314 | p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
315 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
316 | p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
317 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
318 | p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
319 | p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
320 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
321 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
322 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
323 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
324 | p12_npas.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
325 | p12_npas.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
326 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
327 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
328 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
329 | p12_npas.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
330 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c | ||
331 | p12_p8d.o: ../../e_os.h ../../include/openssl/aes.h | ||
332 | p12_p8d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
333 | p12_p8d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
334 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
335 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
336 | p12_p8d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
337 | p12_p8d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
338 | p12_p8d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
339 | p12_p8d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
340 | p12_p8d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
341 | p12_p8d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
342 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
343 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
344 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
345 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
346 | p12_p8d.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
347 | p12_p8d.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
348 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
349 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
350 | p12_p8d.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
351 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
352 | p12_p8d.o: ../cryptlib.h p12_p8d.c | ||
353 | p12_p8e.o: ../../e_os.h ../../include/openssl/aes.h | ||
354 | p12_p8e.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
355 | p12_p8e.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
356 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
357 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
358 | p12_p8e.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
359 | p12_p8e.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
360 | p12_p8e.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
361 | p12_p8e.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
362 | p12_p8e.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
363 | p12_p8e.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
364 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
365 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
366 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
367 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
368 | p12_p8e.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
369 | p12_p8e.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
370 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
371 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
372 | p12_p8e.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
373 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
374 | p12_p8e.o: ../cryptlib.h p12_p8e.c | ||
375 | p12_utl.o: ../../e_os.h ../../include/openssl/aes.h | ||
376 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
377 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
378 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
379 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
380 | p12_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
381 | p12_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
382 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
383 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
384 | p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
385 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
386 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
387 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
388 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
389 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
390 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
391 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
392 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
393 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
394 | p12_utl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
395 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
396 | p12_utl.o: ../cryptlib.h p12_utl.c | ||
397 | pk12err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
398 | pk12err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
399 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
400 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
401 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
402 | pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
403 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
404 | pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
405 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
406 | pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
407 | pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
408 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
409 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
410 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | ||
411 | pk12err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
412 | pk12err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
413 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
414 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
415 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
416 | pk12err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
417 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c | ||
diff --git a/src/lib/libcrypto/pkcs12/p12_crpt.c b/src/lib/libcrypto/pkcs12/p12_crpt.c index 003ec7a33e..5e8958612b 100644 --- a/src/lib/libcrypto/pkcs12/p12_crpt.c +++ b/src/lib/libcrypto/pkcs12/p12_crpt.c | |||
@@ -88,7 +88,7 @@ int PKCS12_PBE_keyivgen (EVP_CIPHER_CTX *ctx, const char *pass, int passlen, | |||
88 | ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md, int en_de) | 88 | ASN1_TYPE *param, const EVP_CIPHER *cipher, const EVP_MD *md, int en_de) |
89 | { | 89 | { |
90 | PBEPARAM *pbe; | 90 | PBEPARAM *pbe; |
91 | int saltlen, iter, ret; | 91 | int saltlen, iter; |
92 | unsigned char *salt, *pbuf; | 92 | unsigned char *salt, *pbuf; |
93 | unsigned char key[EVP_MAX_KEY_LENGTH], iv[EVP_MAX_IV_LENGTH]; | 93 | unsigned char key[EVP_MAX_KEY_LENGTH], iv[EVP_MAX_IV_LENGTH]; |
94 | 94 | ||
@@ -117,8 +117,8 @@ int PKCS12_PBE_keyivgen (EVP_CIPHER_CTX *ctx, const char *pass, int passlen, | |||
117 | return 0; | 117 | return 0; |
118 | } | 118 | } |
119 | PBEPARAM_free(pbe); | 119 | PBEPARAM_free(pbe); |
120 | ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de); | 120 | EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de); |
121 | OPENSSL_cleanse(key, EVP_MAX_KEY_LENGTH); | 121 | OPENSSL_cleanse(key, EVP_MAX_KEY_LENGTH); |
122 | OPENSSL_cleanse(iv, EVP_MAX_IV_LENGTH); | 122 | OPENSSL_cleanse(iv, EVP_MAX_IV_LENGTH); |
123 | return ret; | 123 | return 1; |
124 | } | 124 | } |
diff --git a/src/lib/libcrypto/pkcs12/p12_init.c b/src/lib/libcrypto/pkcs12/p12_init.c index 5276b12669..eb837a78cf 100644 --- a/src/lib/libcrypto/pkcs12/p12_init.c +++ b/src/lib/libcrypto/pkcs12/p12_init.c | |||
@@ -76,17 +76,15 @@ PKCS12 *PKCS12_init (int mode) | |||
76 | if (!(pkcs12->authsafes->d.data = | 76 | if (!(pkcs12->authsafes->d.data = |
77 | M_ASN1_OCTET_STRING_new())) { | 77 | M_ASN1_OCTET_STRING_new())) { |
78 | PKCS12err(PKCS12_F_PKCS12_INIT,ERR_R_MALLOC_FAILURE); | 78 | PKCS12err(PKCS12_F_PKCS12_INIT,ERR_R_MALLOC_FAILURE); |
79 | goto err; | 79 | return NULL; |
80 | } | 80 | } |
81 | break; | 81 | break; |
82 | default: | 82 | default: |
83 | PKCS12err(PKCS12_F_PKCS12_INIT, | 83 | PKCS12err(PKCS12_F_PKCS12_INIT,PKCS12_R_UNSUPPORTED_PKCS12_MODE); |
84 | PKCS12_R_UNSUPPORTED_PKCS12_MODE); | 84 | PKCS12_free(pkcs12); |
85 | goto err; | 85 | return NULL; |
86 | break; | ||
86 | } | 87 | } |
87 | 88 | ||
88 | return pkcs12; | 89 | return pkcs12; |
89 | err: | ||
90 | if (pkcs12 != NULL) PKCS12_free(pkcs12); | ||
91 | return NULL; | ||
92 | } | 90 | } |
diff --git a/src/lib/libcrypto/pkcs12/p12_kiss.c b/src/lib/libcrypto/pkcs12/p12_kiss.c index 2b31999e11..885087ad00 100644 --- a/src/lib/libcrypto/pkcs12/p12_kiss.c +++ b/src/lib/libcrypto/pkcs12/p12_kiss.c | |||
@@ -249,26 +249,14 @@ static int parse_bag(PKCS12_SAFEBAG *bag, const char *pass, int passlen, | |||
249 | if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate ) | 249 | if (M_PKCS12_cert_bag_type(bag) != NID_x509Certificate ) |
250 | return 1; | 250 | return 1; |
251 | if (!(x509 = PKCS12_certbag2x509(bag))) return 0; | 251 | if (!(x509 = PKCS12_certbag2x509(bag))) return 0; |
252 | if(ckid) | 252 | if(ckid) X509_keyid_set1(x509, ckid->data, ckid->length); |
253 | { | ||
254 | if (!X509_keyid_set1(x509, ckid->data, ckid->length)) | ||
255 | { | ||
256 | X509_free(x509); | ||
257 | return 0; | ||
258 | } | ||
259 | } | ||
260 | if(fname) { | 253 | if(fname) { |
261 | int len, r; | 254 | int len; |
262 | unsigned char *data; | 255 | unsigned char *data; |
263 | len = ASN1_STRING_to_UTF8(&data, fname); | 256 | len = ASN1_STRING_to_UTF8(&data, fname); |
264 | if(len > 0) { | 257 | if(len > 0) { |
265 | r = X509_alias_set1(x509, data, len); | 258 | X509_alias_set1(x509, data, len); |
266 | OPENSSL_free(data); | 259 | OPENSSL_free(data); |
267 | if (!r) | ||
268 | { | ||
269 | X509_free(x509); | ||
270 | return 0; | ||
271 | } | ||
272 | } | 260 | } |
273 | } | 261 | } |
274 | 262 | ||
diff --git a/src/lib/libcrypto/pkcs12/p12_mutl.c b/src/lib/libcrypto/pkcs12/p12_mutl.c index 4886b9b289..0fb67f74b8 100644 --- a/src/lib/libcrypto/pkcs12/p12_mutl.c +++ b/src/lib/libcrypto/pkcs12/p12_mutl.c | |||
@@ -148,10 +148,7 @@ int PKCS12_setup_mac (PKCS12 *p12, int iter, unsigned char *salt, int saltlen, | |||
148 | PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE); | 148 | PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE); |
149 | return 0; | 149 | return 0; |
150 | } | 150 | } |
151 | if (!ASN1_INTEGER_set(p12->mac->iter, iter)) { | 151 | ASN1_INTEGER_set(p12->mac->iter, iter); |
152 | PKCS12err(PKCS12_F_PKCS12_SETUP_MAC, ERR_R_MALLOC_FAILURE); | ||
153 | return 0; | ||
154 | } | ||
155 | } | 152 | } |
156 | if (!saltlen) saltlen = PKCS12_SALT_LEN; | 153 | if (!saltlen) saltlen = PKCS12_SALT_LEN; |
157 | p12->mac->salt->length = saltlen; | 154 | p12->mac->salt->length = saltlen; |