summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1
diff options
context:
space:
mode:
authorcvs2svn <admin@example.com>2002-09-05 12:51:53 +0000
committercvs2svn <admin@example.com>2002-09-05 12:51:53 +0000
commitd6e0927a98d2b936d171fcdf2ac1c56b694a3705 (patch)
treec76a93032161bb7aba600dc59798f7100c8ff8eb /src/lib/libcrypto/asn1
parent5514995a9d5ed91db089875adb509c7781357c0e (diff)
downloadopenbsd-OPENSSL_0_9_7_BETA1.tar.gz
openbsd-OPENSSL_0_9_7_BETA1.tar.bz2
openbsd-OPENSSL_0_9_7_BETA1.zip
This commit was manufactured by cvs2git to create tag 'OPENSSL_0_9_7_BETA1'.OPENSSL_0_9_7_BETA1
Diffstat (limited to 'src/lib/libcrypto/asn1')
-rw-r--r--src/lib/libcrypto/asn1/Makefile.ssl886
-rw-r--r--src/lib/libcrypto/asn1/f.c80
-rw-r--r--src/lib/libcrypto/asn1/x_cinf.c201
3 files changed, 1167 insertions, 0 deletions
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl
new file mode 100644
index 0000000000..09d4cb4896
--- /dev/null
+++ b/src/lib/libcrypto/asn1/Makefile.ssl
@@ -0,0 +1,886 @@
1#
2# SSLeay/crypto/asn1/Makefile
3#
4
5DIR= asn1
6TOP= ../..
7CC= cc
8INCLUDES= -I.. -I$(TOP) -I../../include
9CFLAG=-g
10INSTALL_PREFIX=
11OPENSSLDIR= /usr/local/ssl
12INSTALLTOP=/usr/local/ssl
13MAKE= make -f Makefile.ssl
14MAKEDEPPROG= makedepend
15MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG)
16MAKEFILE= Makefile.ssl
17AR= ar r
18
19CFLAGS= $(INCLUDES) $(CFLAG)
20
21GENERAL=Makefile README
22TEST=
23APPS=
24
25LIB=$(TOP)/libcrypto.a
26LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \
27 a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c \
28 a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \
29 x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \
30 x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \
31 d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\
32 t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \
33 tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \
34 f_int.c f_string.c n_pkey.c \
35 f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \
36 asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \
37 evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c
38LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \
39 a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \
40 a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \
41 x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \
42 x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \
43 d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \
44 t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \
45 tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \
46 f_int.o f_string.o n_pkey.o \
47 f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \
48 asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \
49 evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o
50
51SRC= $(LIBSRC)
52
53EXHEADER= asn1.h asn1_mac.h asn1t.h
54HEADER= $(EXHEADER)
55
56ALL= $(GENERAL) $(SRC) $(HEADER)
57
58top:
59 (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all)
60
61test: test.c
62 cc -g -I../../include -c test.c
63 cc -g -I../../include -o test test.o -L../.. -lcrypto
64
65pk: pk.c
66 cc -g -I../../include -c pk.c
67 cc -g -I../../include -o pk pk.o -L../.. -lcrypto
68
69all: lib
70
71lib: $(LIBOBJ)
72 $(AR) $(LIB) $(LIBOBJ)
73 $(RANLIB) $(LIB) || echo Never mind.
74 @touch lib
75
76files:
77 $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO
78
79links:
80 @$(TOP)/util/point.sh Makefile.ssl Makefile
81 @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER)
82 @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST)
83 @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS)
84
85install:
86 @for i in $(EXHEADER) ; \
87 do \
88 (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \
89 chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \
90 done;
91
92tags:
93 ctags $(SRC)
94
95tests:
96
97lint:
98 lint -DLINT $(INCLUDES) $(SRC)>fluff
99
100depend:
101 $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC)
102
103dclean:
104 $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new
105 mv -f Makefile.new $(MAKEFILE)
106
107clean:
108 rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff
109
110
111# DO NOT DELETE THIS LINE -- make depend depends on it.
112
113a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h
114a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
115a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
116a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
117a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
118a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
119a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
120a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c
121a_bool.o: ../../e_os.h ../../include/openssl/asn1.h
122a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
123a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
124a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
125a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
126a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
127a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
128a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
129a_bool.o: ../cryptlib.h a_bool.c
130a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h
131a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
132a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
133a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
134a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
135a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
136a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
137a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c
138a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h
139a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
140a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
141a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
142a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
143a_d2i_fp.o: ../../include/openssl/opensslconf.h
144a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
145a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
146a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c
147a_digest.o: ../../e_os.h ../../include/openssl/asn1.h
148a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
149a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
150a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
151a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
152a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
153a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
154a_digest.o: ../../include/openssl/opensslconf.h
155a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
156a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
157a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
158a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
159a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
160a_digest.o: ../cryptlib.h a_digest.c
161a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
162a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
163a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
164a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
165a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
166a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
167a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
168a_dup.o: ../cryptlib.h a_dup.c
169a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
170a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
171a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
172a_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
173a_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
174a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
175a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
176a_enum.o: ../cryptlib.h a_enum.c
177a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h
178a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
179a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
180a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
181a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
182a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
183a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
184a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c
185a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h
186a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
187a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
188a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
189a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
190a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
191a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
192a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
193a_hdr.o: ../cryptlib.h a_hdr.c
194a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h
195a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
196a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
197a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
198a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
199a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
200a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
201a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c
202a_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
203a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
204a_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
205a_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
206a_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
207a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
208a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
209a_int.o: ../cryptlib.h a_int.c
210a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h
211a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
212a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
213a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
214a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
215a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
216a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
217a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c
218a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
219a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
220a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
221a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
222a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
223a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
224a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
225a_meth.o: ../cryptlib.h a_meth.c
226a_object.o: ../../e_os.h ../../include/openssl/asn1.h
227a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
228a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
229a_object.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
230a_object.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
231a_object.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
232a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
233a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
234a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c
235a_octet.o: ../../e_os.h ../../include/openssl/asn1.h
236a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
237a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
238a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
239a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
240a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
241a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
242a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c
243a_print.o: ../../e_os.h ../../include/openssl/asn1.h
244a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
245a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
246a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
247a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
248a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
249a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
250a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c
251a_set.o: ../../e_os.h ../../include/openssl/asn1.h
252a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
253a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
254a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
255a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
256a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
257a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
258a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
259a_set.o: ../cryptlib.h a_set.c
260a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
261a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
262a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
263a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
264a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h
265a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
266a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
267a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
268a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
269a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
270a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
271a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
272a_sign.o: ../cryptlib.h a_sign.c
273a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
274a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
275a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
276a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
277a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
278a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
279a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
280a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
281a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
282a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
283a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
284a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h
285a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h
286a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
287a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
288a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
289a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
290a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
291a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
292a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
293a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c
294a_time.o: ../../e_os.h ../../include/openssl/asn1.h
295a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
296a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
297a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
298a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
299a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
300a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
301a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
302a_time.o: ../cryptlib.h ../o_time.h a_time.c
303a_type.o: ../../e_os.h ../../include/openssl/asn1.h
304a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
305a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
306a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
307a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
308a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
309a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
310a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
311a_type.o: ../cryptlib.h a_type.c
312a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h
313a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
314a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
315a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
316a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
317a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
318a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
319a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c
320a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
321a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
322a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
323a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
324a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
325a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
326a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
327a_utf8.o: ../cryptlib.h a_utf8.c
328a_verify.o: ../../e_os.h ../../include/openssl/asn1.h
329a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
330a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
331a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
332a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
333a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
334a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
335a_verify.o: ../../include/openssl/opensslconf.h
336a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
337a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
338a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
339a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
340a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
341a_verify.o: ../cryptlib.h a_verify.c
342asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h
343asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h
344asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
345asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
346asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
347asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
348asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c
349asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h
350asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
351asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
352asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
353asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
354asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
355asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
356asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c
357asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h
358asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
359asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
360asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
361asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
362asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
363asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
364asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
365asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c
366asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h
367asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
368asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
369asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
370asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h
371asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
372asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
373asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
374asn_moid.o: ../../include/openssl/opensslconf.h
375asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
376asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
377asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
378asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
379asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
380asn_moid.o: ../cryptlib.h asn_moid.c
381asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h
382asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
383asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
384asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
385asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
386asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
387asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
388asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c
389d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
390d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
391d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
392d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
393d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
394d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
395d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
396d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
397d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
398d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
399d2i_pr.o: ../cryptlib.h d2i_pr.c
400d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
401d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
402d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
403d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
404d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
405d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
406d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
407d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
408d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
409d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
410d2i_pu.o: ../cryptlib.h d2i_pu.c
411evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h
412evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
413evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
414evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
415evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
416evp_asn1.o: ../../include/openssl/opensslconf.h
417evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
418evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
419evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c
420f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
421f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
422f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
423f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
424f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
425f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
426f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
427f_enum.o: ../cryptlib.h f_enum.c
428f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
429f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
430f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
431f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
432f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
433f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
434f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
435f_int.o: ../cryptlib.h f_int.c
436f_string.o: ../../e_os.h ../../include/openssl/asn1.h
437f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
438f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
439f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
440f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h
441f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
442f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
443f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c
444i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
445i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
446i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
447i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
448i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h
449i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
450i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
451i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
452i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
453i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
454i2d_pr.o: ../cryptlib.h i2d_pr.c
455i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
456i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
457i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
458i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
459i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h
460i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
461i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
462i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
463i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
464i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
465i2d_pu.o: ../cryptlib.h i2d_pu.c
466n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
467n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h
468n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
469n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
470n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
471n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
472n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
473n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
474n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
475n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
476n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
477n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
478n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
479n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c
480nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
481nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
482nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
483nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
484nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
485nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
486nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
487nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
488nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
489nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
490nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
491nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c
492p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h
493p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
494p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
495p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
496p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
497p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h
498p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
499p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
500p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
501p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
502p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
503p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
504p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
505p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c
506p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h
507p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
508p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
509p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
510p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
511p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h
512p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
513p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
514p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
515p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h
516p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
517p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
518p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
519p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c
520p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
521p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
522p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
523p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
524p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
525p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
526p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
527p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
528p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
529p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
530p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
531p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
532p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
533p8_pkey.o: ../cryptlib.h p8_pkey.c
534t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h
535t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
536t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h
537t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
538t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
539t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h
540t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
541t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
542t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
543t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
544t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
545t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
546t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
547t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c
548t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
549t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
550t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
551t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
552t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
553t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
554t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
555t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
556t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
557t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
558t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
559t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
560t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
561t_crl.o: ../cryptlib.h t_crl.c
562t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
563t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
564t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
565t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
566t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
567t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
568t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h
569t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
570t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c
571t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
572t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
573t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
574t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
575t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
576t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
577t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
578t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
579t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
580t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
581t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
582t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
583t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
584t_req.o: ../cryptlib.h t_req.c
585t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
586t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
587t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
588t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
589t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
590t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
591t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
592t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
593t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
594t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
595t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
596t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
597t_spki.o: ../cryptlib.h t_spki.c
598t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
599t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
600t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
601t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
602t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
603t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
604t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
605t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
606t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
607t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
608t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
609t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
610t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
611t_x509.o: ../cryptlib.h t_x509.c
612t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
613t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
614t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
615t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
616t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
617t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
618t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
619t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
620t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
621t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
622t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
623t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
624t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c
625tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
626tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
627tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
628tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
629tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
630tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
631tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
632tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
633tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c
634tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
635tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
636tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
637tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
638tasn_enc.o: ../../include/openssl/opensslconf.h
639tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
640tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
641tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c
642tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
643tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
644tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
645tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
646tasn_fre.o: ../../include/openssl/opensslconf.h
647tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
648tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
649tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c
650tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
651tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
652tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
653tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
654tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
655tasn_new.o: ../../include/openssl/opensslconf.h
656tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
657tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
658tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c
659tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
660tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
661tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
662tasn_typ.o: ../../include/openssl/opensslconf.h
663tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
664tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
665tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c
666tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
667tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
668tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
669tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
670tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
671tasn_utl.o: ../../include/openssl/opensslconf.h
672tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
673tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
674tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c
675x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
676x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
677x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
678x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
679x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
680x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
681x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
682x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
683x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
684x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
685x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
686x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
687x_algor.o: x_algor.c
688x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h
689x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
690x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
691x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
692x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
693x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h
694x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
695x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
696x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
697x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
698x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
699x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
700x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
701x_attrib.o: ../cryptlib.h x_attrib.c
702x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h
703x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
704x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
705x_bignum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
706x_bignum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
707x_bignum.o: ../../include/openssl/opensslconf.h
708x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
709x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
710x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c
711x_crl.o: ../../e_os.h ../../include/openssl/asn1.h
712x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
713x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
714x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
715x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
716x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h
717x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
718x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
719x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
720x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
721x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
722x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
723x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
724x_crl.o: ../cryptlib.h x_crl.c
725x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h
726x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
727x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
728x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
729x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h
730x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
731x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
732x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
733x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
734x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
735x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
736x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
737x_exten.o: x_exten.c
738x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
739x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
740x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
741x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
742x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h
743x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
744x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
745x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
746x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
747x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
748x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
749x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
750x_info.o: ../cryptlib.h x_info.c
751x_long.o: ../../e_os.h ../../include/openssl/asn1.h
752x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
753x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
754x_long.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h
755x_long.o: ../../include/openssl/err.h ../../include/openssl/lhash.h
756x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
757x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h
758x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
759x_long.o: ../cryptlib.h x_long.c
760x_name.o: ../../e_os.h ../../include/openssl/asn1.h
761x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
762x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
763x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
764x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
765x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h
766x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
767x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
768x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
769x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
770x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
771x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
772x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
773x_name.o: ../cryptlib.h x_name.c
774x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h
775x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h
776x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
777x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
778x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
779x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
780x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
781x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
782x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
783x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
784x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
785x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
786x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
787x_pkey.o: ../cryptlib.h x_pkey.c
788x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h
789x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
790x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
791x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
792x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
793x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h
794x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
795x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
796x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
797x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
798x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
799x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
800x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
801x_pubkey.o: ../cryptlib.h x_pubkey.c
802x_req.o: ../../e_os.h ../../include/openssl/asn1.h
803x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
804x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
805x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
806x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
807x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h
808x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
809x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
810x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
811x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
812x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
813x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
814x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
815x_req.o: ../cryptlib.h x_req.c
816x_sig.o: ../../e_os.h ../../include/openssl/asn1.h
817x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
818x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
819x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
820x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
821x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h
822x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
823x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
824x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
825x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
826x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
827x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
828x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
829x_sig.o: ../cryptlib.h x_sig.c
830x_spki.o: ../../e_os.h ../../include/openssl/asn1.h
831x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
832x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
833x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
834x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
835x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h
836x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
837x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
838x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
839x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
840x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
841x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
842x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
843x_spki.o: ../cryptlib.h x_spki.c
844x_val.o: ../../e_os.h ../../include/openssl/asn1.h
845x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
846x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
847x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
848x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
849x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h
850x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
851x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
852x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
853x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
854x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
855x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
856x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
857x_val.o: ../cryptlib.h x_val.c
858x_x509.o: ../../e_os.h ../../include/openssl/asn1.h
859x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
860x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
861x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h
862x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h
863x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
864x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h
865x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h
866x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h
867x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h
868x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h
869x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h
870x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h
871x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h
872x_x509.o: ../cryptlib.h x_x509.c
873x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h
874x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h
875x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
876x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h
877x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h
878x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h
879x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h
880x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h
881x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h
882x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h
883x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h
884x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
885x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h
886x_x509a.o: ../cryptlib.h x_x509a.c
diff --git a/src/lib/libcrypto/asn1/f.c b/src/lib/libcrypto/asn1/f.c
new file mode 100644
index 0000000000..82bccdfd51
--- /dev/null
+++ b/src/lib/libcrypto/asn1/f.c
@@ -0,0 +1,80 @@
1/* crypto/asn1/f.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58#include <stdio.h>
59#include <openssl/asn1.h>
60#include <openssl/err.h>
61
62main()
63 {
64 ASN1_TYPE *at;
65 char buf[512];
66 int n;
67 long l;
68
69 at=ASN1_TYPE_new();
70
71 n=ASN1_TYPE_set_int_octetstring(at,98736,"01234567",8);
72 printf("%d\n",n);
73 n=ASN1_TYPE_get_int_octetstring(at,&l,buf,8);
74 buf[8]='\0';
75 printf("%ld %d %d\n",l,n,buf[8]);
76 buf[8]='\0';
77 printf("%s\n",buf);
78 ERR_load_crypto_strings();
79 ERR_print_errors_fp(stderr);
80 }
diff --git a/src/lib/libcrypto/asn1/x_cinf.c b/src/lib/libcrypto/asn1/x_cinf.c
new file mode 100644
index 0000000000..339a110eef
--- /dev/null
+++ b/src/lib/libcrypto/asn1/x_cinf.c
@@ -0,0 +1,201 @@
1/* crypto/asn1/x_cinf.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59#include <stdio.h>
60#include "cryptlib.h"
61#include <openssl/asn1_mac.h>
62#include <openssl/x509.h>
63
64int i2d_X509_CINF(X509_CINF *a, unsigned char **pp)
65 {
66 int v1=0,v2=0;
67 M_ASN1_I2D_vars(a);
68
69 M_ASN1_I2D_len_EXP_opt(a->version,i2d_ASN1_INTEGER,0,v1);
70 M_ASN1_I2D_len(a->serialNumber, i2d_ASN1_INTEGER);
71 M_ASN1_I2D_len(a->signature, i2d_X509_ALGOR);
72 M_ASN1_I2D_len(a->issuer, i2d_X509_NAME);
73 M_ASN1_I2D_len(a->validity, i2d_X509_VAL);
74 M_ASN1_I2D_len(a->subject, i2d_X509_NAME);
75 M_ASN1_I2D_len(a->key, i2d_X509_PUBKEY);
76 M_ASN1_I2D_len_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING);
77 M_ASN1_I2D_len_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING);
78 M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions,
79 i2d_X509_EXTENSION,3,
80 V_ASN1_SEQUENCE,v2);
81
82 M_ASN1_I2D_seq_total();
83
84 M_ASN1_I2D_put_EXP_opt(a->version,i2d_ASN1_INTEGER,0,v1);
85 M_ASN1_I2D_put(a->serialNumber, i2d_ASN1_INTEGER);
86 M_ASN1_I2D_put(a->signature, i2d_X509_ALGOR);
87 M_ASN1_I2D_put(a->issuer, i2d_X509_NAME);
88 M_ASN1_I2D_put(a->validity, i2d_X509_VAL);
89 M_ASN1_I2D_put(a->subject, i2d_X509_NAME);
90 M_ASN1_I2D_put(a->key, i2d_X509_PUBKEY);
91 M_ASN1_I2D_put_IMP_opt(a->issuerUID, i2d_ASN1_BIT_STRING,1);
92 M_ASN1_I2D_put_IMP_opt(a->subjectUID, i2d_ASN1_BIT_STRING,2);
93 M_ASN1_I2D_put_EXP_SEQUENCE_opt_type(X509_EXTENSION,a->extensions,
94 i2d_X509_EXTENSION,3,
95 V_ASN1_SEQUENCE,v2);
96
97 M_ASN1_I2D_finish();
98 }
99
100X509_CINF *d2i_X509_CINF(X509_CINF **a, unsigned char **pp, long length)
101 {
102 int ver=0;
103 M_ASN1_D2I_vars(a,X509_CINF *,X509_CINF_new);
104
105 M_ASN1_D2I_Init();
106 M_ASN1_D2I_start_sequence();
107 /* we have the optional version field */
108 if (M_ASN1_next == (V_ASN1_CONTEXT_SPECIFIC | V_ASN1_CONSTRUCTED | 0))
109 {
110 M_ASN1_D2I_get_EXP_opt(ret->version,d2i_ASN1_INTEGER,0);
111 if (ret->version->data != NULL)
112 ver=ret->version->data[0];
113 }
114 else
115 {
116 if (ret->version != NULL)
117 {
118 M_ASN1_INTEGER_free(ret->version);
119 ret->version=NULL;
120 }
121 }
122 M_ASN1_D2I_get(ret->serialNumber,d2i_ASN1_INTEGER);
123 M_ASN1_D2I_get(ret->signature,d2i_X509_ALGOR);
124 M_ASN1_D2I_get(ret->issuer,d2i_X509_NAME);
125 M_ASN1_D2I_get(ret->validity,d2i_X509_VAL);
126 M_ASN1_D2I_get(ret->subject,d2i_X509_NAME);
127 M_ASN1_D2I_get(ret->key,d2i_X509_PUBKEY);
128 if (ver >= 1) /* version 2 extensions */
129 {
130 if (ret->issuerUID != NULL)
131 {
132 M_ASN1_BIT_STRING_free(ret->issuerUID);
133 ret->issuerUID=NULL;
134 }
135 if (ret->subjectUID != NULL)
136 {
137 M_ASN1_BIT_STRING_free(ret->subjectUID);
138 ret->subjectUID=NULL;
139 }
140 M_ASN1_D2I_get_IMP_opt(ret->issuerUID,d2i_ASN1_BIT_STRING, 1,
141 V_ASN1_BIT_STRING);
142 M_ASN1_D2I_get_IMP_opt(ret->subjectUID,d2i_ASN1_BIT_STRING, 2,
143 V_ASN1_BIT_STRING);
144 }
145/* Note: some broken certificates include extensions but don't set
146 * the version number properly. By bypassing this check they can
147 * be parsed.
148 */
149
150#ifdef VERSION_EXT_CHECK
151 if (ver >= 2) /* version 3 extensions */
152#endif
153 {
154 if (ret->extensions != NULL)
155 while (sk_X509_EXTENSION_num(ret->extensions))
156 X509_EXTENSION_free(
157 sk_X509_EXTENSION_pop(ret->extensions));
158 M_ASN1_D2I_get_EXP_set_opt_type(X509_EXTENSION,ret->extensions,
159 d2i_X509_EXTENSION,
160 X509_EXTENSION_free,3,
161 V_ASN1_SEQUENCE);
162 }
163 M_ASN1_D2I_Finish(a,X509_CINF_free,ASN1_F_D2I_X509_CINF);
164 }
165
166X509_CINF *X509_CINF_new(void)
167 {
168 X509_CINF *ret=NULL;
169 ASN1_CTX c;
170
171 M_ASN1_New_Malloc(ret,X509_CINF);
172 ret->version=NULL;
173 M_ASN1_New(ret->serialNumber,M_ASN1_INTEGER_new);
174 M_ASN1_New(ret->signature,X509_ALGOR_new);
175 M_ASN1_New(ret->issuer,X509_NAME_new);
176 M_ASN1_New(ret->validity,X509_VAL_new);
177 M_ASN1_New(ret->subject,X509_NAME_new);
178 M_ASN1_New(ret->key,X509_PUBKEY_new);
179 ret->issuerUID=NULL;
180 ret->subjectUID=NULL;
181 ret->extensions=NULL;
182 return(ret);
183 M_ASN1_New_Error(ASN1_F_X509_CINF_NEW);
184 }
185
186void X509_CINF_free(X509_CINF *a)
187 {
188 if (a == NULL) return;
189 M_ASN1_INTEGER_free(a->version);
190 M_ASN1_INTEGER_free(a->serialNumber);
191 X509_ALGOR_free(a->signature);
192 X509_NAME_free(a->issuer);
193 X509_VAL_free(a->validity);
194 X509_NAME_free(a->subject);
195 X509_PUBKEY_free(a->key);
196 M_ASN1_BIT_STRING_free(a->issuerUID);
197 M_ASN1_BIT_STRING_free(a->subjectUID);
198 sk_X509_EXTENSION_pop_free(a->extensions,X509_EXTENSION_free);
199 OPENSSL_free(a);
200 }
201