diff options
Diffstat (limited to 'src/lib/libcrypto')
37 files changed, 1542 insertions, 1256 deletions
diff --git a/src/lib/libcrypto/aes/Makefile b/src/lib/libcrypto/aes/Makefile index 9d174f4c3e..c501a43a8f 100644 --- a/src/lib/libcrypto/aes/Makefile +++ b/src/lib/libcrypto/aes/Makefile | |||
@@ -11,7 +11,7 @@ CFLAG=-g | |||
11 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
12 | AR= ar r | 12 | AR= ar r |
13 | 13 | ||
14 | AES_ASM_OBJ=aes_core.o aes_cbc.o | 14 | AES_ENC=aes_core.o aes_cbc.o |
15 | 15 | ||
16 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
@@ -26,7 +26,7 @@ LIB=$(TOP)/libcrypto.a | |||
26 | LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \ | 26 | LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \ |
27 | aes_ctr.c aes_ige.c aes_wrap.c | 27 | aes_ctr.c aes_ige.c aes_wrap.c |
28 | LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o aes_wrap.o \ | 28 | LIBOBJ=aes_misc.o aes_ecb.o aes_cfb.o aes_ofb.o aes_ctr.o aes_ige.o aes_wrap.o \ |
29 | $(AES_ASM_OBJ) | 29 | $(AES_ENC) |
30 | 30 | ||
31 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
32 | 32 | ||
@@ -41,24 +41,27 @@ top: | |||
41 | all: lib | 41 | all: lib |
42 | 42 | ||
43 | lib: $(LIBOBJ) | 43 | lib: $(LIBOBJ) |
44 | $(ARX) $(LIB) $(LIBOBJ) | 44 | $(AR) $(LIB) $(LIBOBJ) |
45 | $(RANLIB) $(LIB) || echo Never mind. | 45 | $(RANLIB) $(LIB) || echo Never mind. |
46 | @touch lib | 46 | @touch lib |
47 | 47 | ||
48 | $(LIBOBJ): $(LIBSRC) | ||
49 | |||
50 | aes-ia64.s: asm/aes-ia64.S | 48 | aes-ia64.s: asm/aes-ia64.S |
51 | $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@ | 49 | $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@ |
52 | 50 | ||
53 | ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl | 51 | aes-586.s: asm/aes-586.pl ../perlasm/x86asm.pl |
54 | (cd asm; $(PERL) aes-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@) | 52 | $(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ |
55 | ax86-cof.s: asm/aes-586.pl ../perlasm/x86asm.pl | ||
56 | (cd asm; $(PERL) aes-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@) | ||
57 | ax86-out.s: asm/aes-586.pl ../perlasm/x86asm.pl | ||
58 | (cd asm; $(PERL) aes-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@) | ||
59 | 53 | ||
60 | aes-x86_64.s: asm/aes-x86_64.pl | 54 | aes-x86_64.s: asm/aes-x86_64.pl |
61 | $(PERL) asm/aes-x86_64.pl $@ | 55 | $(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@ |
56 | |||
57 | aes-sparcv9.s: asm/aes-sparcv9.pl | ||
58 | $(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@ | ||
59 | |||
60 | aes-ppc.s: asm/aes-ppc.pl | ||
61 | $(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@ | ||
62 | |||
63 | # GNU make "catch all" | ||
64 | aes-%.s: asm/aes-%.pl; $(PERL) $< $(CFLAGS) > $@ | ||
62 | 65 | ||
63 | files: | 66 | files: |
64 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 67 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -97,16 +100,14 @@ clean: | |||
97 | 100 | ||
98 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
99 | 102 | ||
100 | aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 103 | aes_cbc.o: ../../include/openssl/aes.h ../../include/openssl/modes.h |
101 | aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c aes_locl.h | 104 | aes_cbc.o: ../../include/openssl/opensslconf.h aes_cbc.c |
102 | aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h | 105 | aes_cfb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h |
103 | aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 106 | aes_cfb.o: ../../include/openssl/opensslconf.h aes_cfb.c |
104 | aes_cfb.o: aes_cfb.c aes_locl.h | ||
105 | aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 107 | aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
106 | aes_core.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | 108 | aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h |
107 | aes_core.o: aes_core.c aes_locl.h | 109 | aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/modes.h |
108 | aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 110 | aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c |
109 | aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h | ||
110 | aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 111 | aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
111 | aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h | 112 | aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h |
112 | aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h | 113 | aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h |
@@ -119,8 +120,8 @@ aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h | |||
119 | aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 120 | aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
120 | aes_misc.o: ../../include/openssl/opensslconf.h | 121 | aes_misc.o: ../../include/openssl/opensslconf.h |
121 | aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c | 122 | aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c |
122 | aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 123 | aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h |
123 | aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c | 124 | aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c |
124 | aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h | 125 | aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h |
125 | aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 126 | aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
126 | aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 127 | aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile index 94a6885804..160544eede 100644 --- a/src/lib/libcrypto/asn1/Makefile +++ b/src/lib/libcrypto/asn1/Makefile | |||
@@ -22,30 +22,32 @@ LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ | |||
22 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ | 22 | a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c \ |
23 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ | 23 | x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c \ |
24 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ | 24 | x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c \ |
25 | d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ | 25 | x_nx509.c d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c\ |
26 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ | 26 | t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c \ |
27 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ | 27 | tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c \ |
28 | tasn_prn.c ameth_lib.c \ | ||
28 | f_int.c f_string.c n_pkey.c \ | 29 | f_int.c f_string.c n_pkey.c \ |
29 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c asn_mime.c \ | 30 | f_enum.c x_pkey.c a_bool.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c \ |
30 | asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ | 31 | asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_bytes.c a_strnid.c \ |
31 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | 32 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c |
32 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | 33 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ |
33 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | 34 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ |
34 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ | 35 | a_enum.o a_utf8.o a_sign.o a_digest.o a_verify.o a_mbstr.o a_strex.o \ |
35 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ | 36 | x_algor.o x_val.o x_pubkey.o x_sig.o x_req.o x_attrib.o x_bignum.o \ |
36 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ | 37 | x_long.o x_name.o x_x509.o x_x509a.o x_crl.o x_info.o x_spki.o nsseq.o \ |
37 | d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ | 38 | x_nx509.o d2i_pu.o d2i_pr.o i2d_pu.o i2d_pr.o \ |
38 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | 39 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ |
39 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | 40 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ |
41 | tasn_prn.o ameth_lib.o \ | ||
40 | f_int.o f_string.o n_pkey.o \ | 42 | f_int.o f_string.o n_pkey.o \ |
41 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o asn_mime.o \ | 43 | f_enum.o x_pkey.o a_bool.o x_exten.o bio_asn1.o bio_ndef.o asn_mime.o \ |
42 | asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ | 44 | asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_bytes.o a_strnid.o \ |
43 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | 45 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o |
44 | 46 | ||
45 | SRC= $(LIBSRC) | 47 | SRC= $(LIBSRC) |
46 | 48 | ||
47 | EXHEADER= asn1.h asn1_mac.h asn1t.h | 49 | EXHEADER= asn1.h asn1_mac.h asn1t.h |
48 | HEADER= $(EXHEADER) | 50 | HEADER= $(EXHEADER) asn1_locl.h |
49 | 51 | ||
50 | ALL= $(GENERAL) $(SRC) $(HEADER) | 52 | ALL= $(GENERAL) $(SRC) $(HEADER) |
51 | 53 | ||
@@ -63,7 +65,7 @@ pk: pk.c | |||
63 | all: lib | 65 | all: lib |
64 | 66 | ||
65 | lib: $(LIBOBJ) | 67 | lib: $(LIBOBJ) |
66 | $(ARX) $(LIB) $(LIBOBJ) | 68 | $(AR) $(LIB) $(LIBOBJ) |
67 | $(RANLIB) $(LIB) || echo Never mind. | 69 | $(RANLIB) $(LIB) || echo Never mind. |
68 | @touch lib | 70 | @touch lib |
69 | 71 | ||
@@ -142,9 +144,9 @@ a_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
142 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 144 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
143 | a_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 145 | a_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
144 | a_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 146 | a_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
145 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 147 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
146 | a_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 148 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
147 | a_digest.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 149 | a_digest.o: ../../include/openssl/opensslconf.h |
148 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 150 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
149 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 151 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
150 | a_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 152 | a_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -173,14 +175,6 @@ a_gentm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
173 | a_gentm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 175 | a_gentm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
174 | a_gentm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 176 | a_gentm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
175 | a_gentm.o: ../cryptlib.h ../o_time.h a_gentm.c | 177 | a_gentm.o: ../cryptlib.h ../o_time.h a_gentm.c |
176 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
177 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | ||
178 | a_hdr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
179 | a_hdr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
180 | a_hdr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
181 | a_hdr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
182 | a_hdr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
183 | a_hdr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_hdr.c | ||
184 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | 178 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h |
185 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 179 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
186 | a_i2d_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 180 | a_i2d_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
@@ -205,13 +199,6 @@ a_mbstr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
205 | a_mbstr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 199 | a_mbstr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
206 | a_mbstr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 200 | a_mbstr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
207 | a_mbstr.o: ../cryptlib.h a_mbstr.c | 201 | a_mbstr.o: ../cryptlib.h a_mbstr.c |
208 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
209 | a_meth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
210 | a_meth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
211 | a_meth.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
212 | a_meth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
213 | a_meth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
214 | a_meth.o: ../../include/openssl/symhacks.h ../cryptlib.h a_meth.c | ||
215 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | 202 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h |
216 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 203 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
217 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 204 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -250,27 +237,27 @@ a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | |||
250 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 237 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
251 | a_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 238 | a_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
252 | a_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 239 | a_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
253 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 240 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
254 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 241 | a_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
255 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 242 | a_sign.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
256 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 243 | a_sign.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
257 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 244 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
258 | a_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 245 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
259 | a_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 246 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
260 | a_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_sign.c | 247 | a_sign.o: ../cryptlib.h a_sign.c asn1_locl.h |
261 | a_strex.o: ../../e_os.h ../../include/openssl/asn1.h | 248 | a_strex.o: ../../e_os.h ../../include/openssl/asn1.h |
262 | a_strex.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 249 | a_strex.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
263 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 250 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
264 | a_strex.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 251 | a_strex.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
265 | a_strex.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 252 | a_strex.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
266 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 253 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
267 | a_strex.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 254 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
268 | a_strex.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 255 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
269 | a_strex.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 256 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
270 | a_strex.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 257 | a_strex.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
271 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 258 | a_strex.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
272 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 259 | a_strex.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
273 | a_strex.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_strex.c charmap.h | 260 | a_strex.o: ../cryptlib.h a_strex.c charmap.h |
274 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | 261 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h |
275 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 262 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
276 | a_strnid.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 263 | a_strnid.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
@@ -318,14 +305,29 @@ a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
318 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 305 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
319 | a_verify.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 306 | a_verify.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
320 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 307 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
321 | a_verify.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 308 | a_verify.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
322 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 309 | a_verify.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
323 | a_verify.o: ../../include/openssl/opensslconf.h | ||
324 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 310 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
325 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 311 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
326 | a_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 312 | a_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
327 | a_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 313 | a_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
328 | a_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_verify.c | 314 | a_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_verify.c |
315 | a_verify.o: asn1_locl.h | ||
316 | ameth_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
317 | ameth_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
318 | ameth_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
319 | ameth_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
320 | ameth_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
321 | ameth_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
322 | ameth_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
323 | ameth_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
324 | ameth_lib.o: ../../include/openssl/opensslconf.h | ||
325 | ameth_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
326 | ameth_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
327 | ameth_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
328 | ameth_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
329 | ameth_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ameth_lib.c | ||
330 | ameth_lib.o: asn1_locl.h | ||
329 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 331 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
330 | asn1_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 332 | asn1_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
331 | asn1_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 333 | asn1_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
@@ -339,9 +341,8 @@ asn1_gen.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
339 | asn1_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 341 | asn1_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
340 | asn1_gen.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 342 | asn1_gen.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
341 | asn1_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 343 | asn1_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
342 | asn1_gen.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 344 | asn1_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
343 | asn1_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 345 | asn1_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
344 | asn1_gen.o: ../../include/openssl/opensslconf.h | ||
345 | asn1_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 346 | asn1_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
346 | asn1_gen.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 347 | asn1_gen.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
347 | asn1_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 348 | asn1_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -371,24 +372,23 @@ asn_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
371 | asn_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 372 | asn_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
372 | asn_mime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 373 | asn_mime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
373 | asn_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 374 | asn_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
374 | asn_mime.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 375 | asn_mime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
375 | asn_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 376 | asn_mime.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
376 | asn_mime.o: ../../include/openssl/opensslconf.h | ||
377 | asn_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 377 | asn_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
378 | asn_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 378 | asn_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
379 | asn_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 379 | asn_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
380 | asn_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 380 | asn_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
381 | asn_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 381 | asn_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
382 | asn_mime.o: ../cryptlib.h asn_mime.c | 382 | asn_mime.o: ../cryptlib.h asn1_locl.h asn_mime.c |
383 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | 383 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h |
384 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 384 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
385 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 385 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
386 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 386 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
387 | asn_moid.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 387 | asn_moid.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
388 | asn_moid.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 388 | asn_moid.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
389 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 389 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
390 | asn_moid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 390 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
391 | asn_moid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 391 | asn_moid.o: ../../include/openssl/opensslconf.h |
392 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 392 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
393 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 393 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
394 | asn_moid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 394 | asn_moid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -402,28 +402,43 @@ asn_pack.o: ../../include/openssl/opensslconf.h | |||
402 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 402 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
403 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 403 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
404 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | 404 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c |
405 | bio_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
406 | bio_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
407 | bio_asn1.o: ../../include/openssl/opensslconf.h | ||
408 | bio_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
409 | bio_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
410 | bio_asn1.o: ../../include/openssl/symhacks.h bio_asn1.c | ||
411 | bio_ndef.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
412 | bio_ndef.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
413 | bio_ndef.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
414 | bio_ndef.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
415 | bio_ndef.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
416 | bio_ndef.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
417 | bio_ndef.o: ../../include/openssl/symhacks.h bio_ndef.c | ||
405 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 418 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
406 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 419 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
407 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | 420 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
408 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 421 | d2i_pr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
422 | d2i_pr.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h | ||
409 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 423 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
410 | d2i_pr.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 424 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
411 | d2i_pr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 425 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
412 | d2i_pr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 426 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
413 | d2i_pr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | 427 | d2i_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
414 | d2i_pr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 428 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
415 | d2i_pr.o: ../../include/openssl/symhacks.h ../cryptlib.h d2i_pr.c | 429 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
430 | d2i_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h d2i_pr.c | ||
416 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 431 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
417 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 432 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
418 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | 433 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
419 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 434 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
420 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 435 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
421 | d2i_pu.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 436 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
422 | d2i_pu.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 437 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
423 | d2i_pu.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 438 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
424 | d2i_pu.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | 439 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
425 | d2i_pu.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 440 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
426 | d2i_pu.o: ../../include/openssl/symhacks.h ../cryptlib.h d2i_pu.c | 441 | d2i_pu.o: ../cryptlib.h d2i_pu.c |
427 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 442 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
428 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 443 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
429 | evp_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 444 | evp_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -455,77 +470,76 @@ f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
455 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 470 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
456 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | 471 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c |
457 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 472 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
458 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 473 | i2d_pr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
459 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
460 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 474 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
475 | i2d_pr.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
461 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 476 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
462 | i2d_pr.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 477 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
463 | i2d_pr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 478 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
464 | i2d_pr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 479 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
465 | i2d_pr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | 480 | i2d_pr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
466 | i2d_pr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 481 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
467 | i2d_pr.o: ../../include/openssl/symhacks.h ../cryptlib.h i2d_pr.c | 482 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
483 | i2d_pr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h i2d_pr.c | ||
468 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 484 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
469 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 485 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
470 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | 486 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
471 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 487 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
472 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 488 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
473 | i2d_pu.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 489 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
474 | i2d_pu.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 490 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
475 | i2d_pu.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 491 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
476 | i2d_pu.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | 492 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
477 | i2d_pu.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 493 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
478 | i2d_pu.o: ../../include/openssl/symhacks.h ../cryptlib.h i2d_pu.c | 494 | i2d_pu.o: ../cryptlib.h i2d_pu.c |
479 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 495 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
480 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | 496 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h |
481 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 497 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
482 | n_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 498 | n_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
483 | n_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 499 | n_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
484 | n_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 500 | n_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
485 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 501 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
486 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 502 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
487 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 503 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
488 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 504 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
489 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 505 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
490 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 506 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
491 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 507 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
492 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 508 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c |
493 | n_pkey.o: ../cryptlib.h n_pkey.c | ||
494 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 509 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
495 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 510 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
496 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 511 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
497 | nsseq.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 512 | nsseq.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
498 | nsseq.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | 513 | nsseq.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h |
499 | nsseq.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 514 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
500 | nsseq.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 515 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
501 | nsseq.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 516 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
502 | nsseq.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 517 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
503 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 518 | nsseq.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
504 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 519 | nsseq.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
505 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | 520 | nsseq.o: ../../include/openssl/x509_vfy.h nsseq.c |
506 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | 521 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h |
507 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 522 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
508 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 523 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
509 | p5_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 524 | p5_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
510 | p5_pbe.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 525 | p5_pbe.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
511 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 526 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
512 | p5_pbe.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 527 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
513 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 528 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
514 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 529 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
515 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 530 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
516 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 531 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
517 | p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 532 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
518 | p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 533 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
519 | p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c | 534 | p5_pbe.o: ../cryptlib.h p5_pbe.c |
520 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | 535 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h |
521 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 536 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
522 | p5_pbev2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 537 | p5_pbev2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
523 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 538 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
524 | p5_pbev2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 539 | p5_pbev2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
525 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 540 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
526 | p5_pbev2.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 541 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
527 | p5_pbev2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 542 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
528 | p5_pbev2.o: ../../include/openssl/opensslconf.h | ||
529 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 543 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
530 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 544 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
531 | p5_pbev2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 545 | p5_pbev2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -538,51 +552,48 @@ p8_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
538 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 552 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
539 | p8_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 553 | p8_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
540 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 554 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
541 | p8_pkey.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 555 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
542 | p8_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 556 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
543 | p8_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 557 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
544 | p8_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 558 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
545 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 559 | p8_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
546 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 560 | p8_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
547 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 561 | p8_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p8_pkey.c |
548 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
549 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | 562 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h |
550 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 563 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
551 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 564 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
552 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 565 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
553 | t_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 566 | t_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
554 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 567 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
555 | t_bitst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 568 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
556 | t_bitst.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 569 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
557 | t_bitst.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 570 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
558 | t_bitst.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 571 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
559 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 572 | t_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
560 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 573 | t_bitst.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
561 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 574 | t_bitst.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
562 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | 575 | t_bitst.o: ../cryptlib.h t_bitst.c |
563 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 576 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
564 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 577 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
565 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 578 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
566 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 579 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
567 | t_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 580 | t_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
568 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 581 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
569 | t_crl.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 582 | t_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
570 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 583 | t_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
571 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 584 | t_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
572 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 585 | t_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
573 | t_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 586 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
574 | t_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 587 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
575 | t_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 588 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
576 | t_crl.o: ../../include/openssl/x509v3.h ../cryptlib.h t_crl.c | 589 | t_crl.o: ../cryptlib.h t_crl.c |
577 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 590 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
578 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 591 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
579 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 592 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
580 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 593 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
581 | t_pkey.o: ../../include/openssl/ec.h ../../include/openssl/err.h | 594 | t_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
582 | t_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 595 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
583 | t_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 596 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
584 | t_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
585 | t_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
586 | t_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 597 | t_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
587 | t_pkey.o: ../cryptlib.h t_pkey.c | 598 | t_pkey.o: ../cryptlib.h t_pkey.c |
588 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 599 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
@@ -591,57 +602,57 @@ t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
591 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 602 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
592 | t_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 603 | t_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
593 | t_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 604 | t_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
594 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 605 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
595 | t_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 606 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
596 | t_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 607 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
597 | t_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 608 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
598 | t_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 609 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
599 | t_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 610 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
600 | t_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 611 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
601 | t_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 612 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
602 | t_req.o: ../../include/openssl/x509v3.h ../cryptlib.h t_req.c | 613 | t_req.o: ../cryptlib.h t_req.c |
603 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 614 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
604 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 615 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
605 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | 616 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
606 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 617 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
607 | t_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 618 | t_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
608 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 619 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
609 | t_spki.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 620 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
610 | t_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 621 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
611 | t_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 622 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
612 | t_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 623 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
613 | t_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 624 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
614 | t_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 625 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
615 | t_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 626 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
616 | t_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_spki.c | 627 | t_spki.o: ../cryptlib.h t_spki.c |
617 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 628 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
618 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 629 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
619 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 630 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
620 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 631 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
621 | t_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 632 | t_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
622 | t_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 633 | t_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
623 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 634 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
624 | t_x509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 635 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
625 | t_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 636 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
626 | t_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 637 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
627 | t_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 638 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
628 | t_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 639 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
629 | t_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 640 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
630 | t_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 641 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
631 | t_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h t_x509.c | 642 | t_x509.o: ../cryptlib.h t_x509.c |
632 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | 643 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h |
633 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 644 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
634 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 645 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
635 | t_x509a.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 646 | t_x509a.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
636 | t_x509a.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 647 | t_x509a.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
637 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 648 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
638 | t_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 649 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
639 | t_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 650 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
640 | t_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 651 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
641 | t_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 652 | t_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
642 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 653 | t_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
643 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 654 | t_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
644 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | 655 | t_x509a.o: ../cryptlib.h t_x509a.c |
645 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 656 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
646 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 657 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
647 | tasn_dec.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 658 | tasn_dec.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
@@ -675,6 +686,21 @@ tasn_new.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | |||
675 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 686 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
676 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 687 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
677 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | 688 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c |
689 | tasn_prn.o: ../../e_os.h ../../include/openssl/asn1.h | ||
690 | tasn_prn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
691 | tasn_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
692 | tasn_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
693 | tasn_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
694 | tasn_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
695 | tasn_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
696 | tasn_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
697 | tasn_prn.o: ../../include/openssl/opensslconf.h | ||
698 | tasn_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
699 | tasn_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
700 | tasn_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
701 | tasn_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
702 | tasn_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
703 | tasn_prn.o: ../cryptlib.h asn1_locl.h tasn_prn.c | ||
678 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 704 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
679 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 705 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
680 | tasn_typ.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 706 | tasn_typ.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
@@ -694,23 +720,21 @@ x_algor.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
694 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 720 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
695 | x_algor.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 721 | x_algor.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
696 | x_algor.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | 722 | x_algor.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h |
697 | x_algor.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 723 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
698 | x_algor.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 724 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
699 | x_algor.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 725 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
700 | x_algor.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 726 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
701 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 727 | x_algor.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
702 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 728 | x_algor.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
703 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 729 | x_algor.o: ../../include/openssl/x509_vfy.h x_algor.c |
704 | x_algor.o: x_algor.c | ||
705 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | 730 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h |
706 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 731 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
707 | x_attrib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 732 | x_attrib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
708 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 733 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
709 | x_attrib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 734 | x_attrib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
710 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 735 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
711 | x_attrib.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 736 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
712 | x_attrib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 737 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
713 | x_attrib.o: ../../include/openssl/opensslconf.h | ||
714 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 738 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
715 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 739 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
716 | x_attrib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 740 | x_attrib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -727,44 +751,42 @@ x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |||
727 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | 751 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c |
728 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | 752 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h |
729 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 753 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
730 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 754 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
731 | x_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 755 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
732 | x_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 756 | x_crl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
733 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 757 | x_crl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
734 | x_crl.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 758 | x_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
735 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 759 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
736 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 760 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
737 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 761 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
738 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 762 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
739 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 763 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
740 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 764 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
741 | x_crl.o: ../cryptlib.h x_crl.c | 765 | x_crl.o: ../../include/openssl/x509v3.h ../cryptlib.h asn1_locl.h x_crl.c |
742 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 766 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
743 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 767 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
744 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 768 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
745 | x_exten.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 769 | x_exten.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
746 | x_exten.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | 770 | x_exten.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h |
747 | x_exten.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 771 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
748 | x_exten.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 772 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
749 | x_exten.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 773 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
750 | x_exten.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 774 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
751 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 775 | x_exten.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
752 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 776 | x_exten.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
753 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 777 | x_exten.o: ../../include/openssl/x509_vfy.h x_exten.c |
754 | x_exten.o: x_exten.c | ||
755 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 778 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
756 | x_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 779 | x_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
757 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 780 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
758 | x_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 781 | x_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
759 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 782 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
760 | x_info.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 783 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
761 | x_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 784 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
762 | x_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 785 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
763 | x_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 786 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
764 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 787 | x_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
765 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 788 | x_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
766 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 789 | x_info.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_info.c |
767 | x_info.o: ../cryptlib.h x_info.c | ||
768 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | 790 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h |
769 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 791 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
770 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 792 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
@@ -780,125 +802,129 @@ x_name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
780 | x_name.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 802 | x_name.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
781 | x_name.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 803 | x_name.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
782 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 804 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
783 | x_name.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 805 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
784 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 806 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
785 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 807 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
786 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 808 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
787 | x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 809 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
788 | x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 810 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
789 | x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 811 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn1_locl.h x_name.c |
790 | x_name.o: ../cryptlib.h x_name.c | 812 | x_nx509.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
813 | x_nx509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
814 | x_nx509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
815 | x_nx509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
816 | x_nx509.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
817 | x_nx509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
818 | x_nx509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
819 | x_nx509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
820 | x_nx509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
821 | x_nx509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
822 | x_nx509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
823 | x_nx509.o: ../../include/openssl/x509_vfy.h x_nx509.c | ||
791 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 824 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
792 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 825 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
793 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 826 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
794 | x_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 827 | x_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
795 | x_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 828 | x_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
796 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 829 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
797 | x_pkey.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 830 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
798 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 831 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
799 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 832 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
800 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 833 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
801 | x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 834 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
802 | x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 835 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
803 | x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 836 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c |
804 | x_pkey.o: ../cryptlib.h x_pkey.c | ||
805 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | 837 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h |
806 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 838 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
807 | x_pubkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 839 | x_pubkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
808 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 840 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
809 | x_pubkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 841 | x_pubkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
810 | x_pubkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 842 | x_pubkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
811 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 843 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
812 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 844 | x_pubkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
813 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 845 | x_pubkey.o: ../../include/openssl/opensslconf.h |
814 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 846 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
815 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 847 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
816 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 848 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
817 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 849 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
818 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 850 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
819 | x_pubkey.o: ../cryptlib.h x_pubkey.c | 851 | x_pubkey.o: ../cryptlib.h asn1_locl.h x_pubkey.c |
820 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | 852 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h |
821 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 853 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
822 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 854 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
823 | x_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 855 | x_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
824 | x_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 856 | x_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
825 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 857 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
826 | x_req.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 858 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
827 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 859 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
828 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 860 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
829 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 861 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
830 | x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 862 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
831 | x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 863 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
832 | x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 864 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c |
833 | x_req.o: ../cryptlib.h x_req.c | ||
834 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | 865 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h |
835 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 866 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
836 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 867 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
837 | x_sig.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 868 | x_sig.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
838 | x_sig.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 869 | x_sig.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
839 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 870 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
840 | x_sig.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 871 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
841 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 872 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
842 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 873 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
843 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 874 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
844 | x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 875 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
845 | x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 876 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
846 | x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 877 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c |
847 | x_sig.o: ../cryptlib.h x_sig.c | ||
848 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | 878 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h |
849 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 879 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
850 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 880 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
851 | x_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 881 | x_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
852 | x_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 882 | x_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
853 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 883 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
854 | x_spki.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 884 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
855 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 885 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
856 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 886 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
857 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 887 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
858 | x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 888 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
859 | x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 889 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
860 | x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 890 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c |
861 | x_spki.o: ../cryptlib.h x_spki.c | ||
862 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | 891 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h |
863 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 892 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
864 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 893 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
865 | x_val.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 894 | x_val.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
866 | x_val.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 895 | x_val.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
867 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 896 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
868 | x_val.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 897 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
869 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 898 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
870 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 899 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
871 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 900 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
872 | x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 901 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
873 | x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 902 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
874 | x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 903 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c |
875 | x_val.o: ../cryptlib.h x_val.c | ||
876 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | 904 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h |
877 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 905 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
878 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 906 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
879 | x_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 907 | x_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
880 | x_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 908 | x_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
881 | x_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 909 | x_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
882 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 910 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
883 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 911 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
884 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 912 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
885 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 913 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
886 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 914 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
887 | x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 915 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
888 | x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 916 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
889 | x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 917 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c |
890 | x_x509.o: ../cryptlib.h x_x509.c | ||
891 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | 918 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h |
892 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 919 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
893 | x_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 920 | x_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
894 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 921 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
895 | x_x509a.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 922 | x_x509a.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
896 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 923 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
897 | x_x509a.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 924 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
898 | x_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 925 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
899 | x_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 926 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
900 | x_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 927 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
901 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 928 | x_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
902 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 929 | x_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
903 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 930 | x_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_x509a.c |
904 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/bf/Makefile b/src/lib/libcrypto/bf/Makefile index 7f4f03eb82..dd2c2c708e 100644 --- a/src/lib/libcrypto/bf/Makefile +++ b/src/lib/libcrypto/bf/Makefile | |||
@@ -12,8 +12,6 @@ MAKEFILE= Makefile | |||
12 | AR= ar r | 12 | AR= ar r |
13 | 13 | ||
14 | BF_ENC= bf_enc.o | 14 | BF_ENC= bf_enc.o |
15 | # or use | ||
16 | #DES_ENC= bx86-elf.o | ||
17 | 15 | ||
18 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
19 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
@@ -40,19 +38,12 @@ top: | |||
40 | all: lib | 38 | all: lib |
41 | 39 | ||
42 | lib: $(LIBOBJ) | 40 | lib: $(LIBOBJ) |
43 | $(ARX) $(LIB) $(LIBOBJ) | 41 | $(AR) $(LIB) $(LIBOBJ) |
44 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
45 | @touch lib | 43 | @touch lib |
46 | 44 | ||
47 | # ELF | 45 | bf-586.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
48 | bx86-elf.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 46 | $(PERL) asm/bf-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ |
49 | (cd asm; $(PERL) bf-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@) | ||
50 | # COFF | ||
51 | bx86-cof.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
52 | (cd asm; $(PERL) bf-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@) | ||
53 | # a.out | ||
54 | bx86-out.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
55 | (cd asm; $(PERL) bf-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@) | ||
56 | 47 | ||
57 | files: | 48 | files: |
58 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -103,9 +94,5 @@ bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | |||
103 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h | 94 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h |
104 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | 95 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h |
105 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c | 96 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c |
106 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/crypto.h | 97 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h |
107 | bf_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/fips.h | 98 | bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c |
108 | bf_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
109 | bf_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
110 | bf_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
111 | bf_skey.o: bf_locl.h bf_pi.h bf_skey.c | ||
diff --git a/src/lib/libcrypto/bio/Makefile b/src/lib/libcrypto/bio/Makefile index 1cd76ce7a2..c395d80496 100644 --- a/src/lib/libcrypto/bio/Makefile +++ b/src/lib/libcrypto/bio/Makefile | |||
@@ -45,7 +45,7 @@ top: | |||
45 | all: lib | 45 | all: lib |
46 | 46 | ||
47 | lib: $(LIBOBJ) | 47 | lib: $(LIBOBJ) |
48 | $(ARX) $(LIB) $(LIBOBJ) | 48 | $(AR) $(LIB) $(LIBOBJ) |
49 | $(RANLIB) $(LIB) || echo Never mind. | 49 | $(RANLIB) $(LIB) || echo Never mind. |
50 | @touch lib | 50 | @touch lib |
51 | 51 | ||
@@ -102,11 +102,12 @@ b_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |||
102 | b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h b_print.c | 102 | b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h b_print.c |
103 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h | 103 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h |
104 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 104 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
105 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 105 | b_sock.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
106 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 106 | b_sock.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
107 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 107 | b_sock.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
108 | b_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 108 | b_sock.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
109 | b_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h b_sock.c | 109 | b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
110 | b_sock.o: ../cryptlib.h b_sock.c | ||
110 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h | 111 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h |
111 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 112 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
112 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 113 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
diff --git a/src/lib/libcrypto/buffer/Makefile b/src/lib/libcrypto/buffer/Makefile index 9e0f46e19a..9f3a88d2d6 100644 --- a/src/lib/libcrypto/buffer/Makefile +++ b/src/lib/libcrypto/buffer/Makefile | |||
@@ -17,8 +17,8 @@ TEST= | |||
17 | APPS= | 17 | APPS= |
18 | 18 | ||
19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
20 | LIBSRC= buffer.c buf_str.c buf_err.c | 20 | LIBSRC= buffer.c buf_err.c |
21 | LIBOBJ= buffer.o buf_str.o buf_err.o | 21 | LIBOBJ= buffer.o buf_err.o |
22 | 22 | ||
23 | SRC= $(LIBSRC) | 23 | SRC= $(LIBSRC) |
24 | 24 | ||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
@@ -81,13 +81,6 @@ buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
81 | buf_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 81 | buf_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
82 | buf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 82 | buf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
83 | buf_err.o: buf_err.c | 83 | buf_err.o: buf_err.c |
84 | buf_str.o: ../../e_os.h ../../include/openssl/bio.h | ||
85 | buf_str.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
86 | buf_str.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
87 | buf_str.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
88 | buf_str.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
89 | buf_str.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
90 | buf_str.o: ../../include/openssl/symhacks.h ../cryptlib.h buf_str.c | ||
91 | buffer.o: ../../e_os.h ../../include/openssl/bio.h | 84 | buffer.o: ../../e_os.h ../../include/openssl/bio.h |
92 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 85 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
93 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 86 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
diff --git a/src/lib/libcrypto/cast/Makefile b/src/lib/libcrypto/cast/Makefile index 2e026dbe0d..0acc38f28d 100644 --- a/src/lib/libcrypto/cast/Makefile +++ b/src/lib/libcrypto/cast/Makefile | |||
@@ -38,19 +38,12 @@ top: | |||
38 | all: lib | 38 | all: lib |
39 | 39 | ||
40 | lib: $(LIBOBJ) | 40 | lib: $(LIBOBJ) |
41 | $(ARX) $(LIB) $(LIBOBJ) | 41 | $(AR) $(LIB) $(LIBOBJ) |
42 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 43 | @touch lib |
44 | 44 | ||
45 | # ELF | 45 | cast-586.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
46 | cx86-elf.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 46 | $(PERL) asm/cast-586.pl $(PERLASM_SCHEME) $(CLAGS) $(PROCESSOR) > $@ |
47 | (cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > ../$@) | ||
48 | # COFF | ||
49 | cx86-cof.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
50 | (cd asm; $(PERL) cast-586.pl coff $(CLAGS) $(PROCESSOR) > ../$@) | ||
51 | # a.out | ||
52 | cx86-out.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
53 | (cd asm; $(PERL) cast-586.pl a.out $(CLAGS) $(PROCESSOR) > ../$@) | ||
54 | 47 | ||
55 | files: | 48 | files: |
56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -102,8 +95,5 @@ c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | |||
102 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 95 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
103 | c_ofb64.o: c_ofb64.c cast_lcl.h | 96 | c_ofb64.o: c_ofb64.c cast_lcl.h |
104 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h | 97 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h |
105 | c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 98 | c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
106 | c_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | 99 | c_skey.o: c_skey.c cast_lcl.h cast_s.h |
107 | c_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
108 | c_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
109 | c_skey.o: ../../include/openssl/symhacks.h c_skey.c cast_lcl.h cast_s.h | ||
diff --git a/src/lib/libcrypto/comp/Makefile b/src/lib/libcrypto/comp/Makefile index 5d364b8513..efda832dce 100644 --- a/src/lib/libcrypto/comp/Makefile +++ b/src/lib/libcrypto/comp/Makefile | |||
@@ -36,7 +36,7 @@ top: | |||
36 | all: lib | 36 | all: lib |
37 | 37 | ||
38 | lib: $(LIBOBJ) | 38 | lib: $(LIBOBJ) |
39 | $(ARX) $(LIB) $(LIBOBJ) | 39 | $(AR) $(LIB) $(LIBOBJ) |
40 | $(RANLIB) $(LIB) || echo Never mind. | 40 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 41 | @touch lib |
42 | 42 | ||
diff --git a/src/lib/libcrypto/conf/Makefile b/src/lib/libcrypto/conf/Makefile index ccd0721332..78bb324106 100644 --- a/src/lib/libcrypto/conf/Makefile +++ b/src/lib/libcrypto/conf/Makefile | |||
@@ -36,7 +36,7 @@ top: | |||
36 | all: lib | 36 | all: lib |
37 | 37 | ||
38 | lib: $(LIBOBJ) | 38 | lib: $(LIBOBJ) |
39 | $(ARX) $(LIB) $(LIBOBJ) | 39 | $(AR) $(LIB) $(LIBOBJ) |
40 | $(RANLIB) $(LIB) || echo Never mind. | 40 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 41 | @touch lib |
42 | 42 | ||
@@ -114,8 +114,8 @@ conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | |||
114 | conf_mall.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 114 | conf_mall.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
115 | conf_mall.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h | 115 | conf_mall.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
116 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 116 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
117 | conf_mall.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 117 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
118 | conf_mall.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 118 | conf_mall.o: ../../include/openssl/objects.h |
119 | conf_mall.o: ../../include/openssl/opensslconf.h | 119 | conf_mall.o: ../../include/openssl/opensslconf.h |
120 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 120 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
121 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 121 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
@@ -128,9 +128,9 @@ conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
128 | conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 128 | conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
129 | conf_mod.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 129 | conf_mod.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
130 | conf_mod.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 130 | conf_mod.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
131 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 131 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
132 | conf_mod.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 132 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
133 | conf_mod.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 133 | conf_mod.o: ../../include/openssl/opensslconf.h |
134 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 134 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
135 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 135 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
136 | conf_mod.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 136 | conf_mod.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -143,9 +143,8 @@ conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | |||
143 | conf_sap.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 143 | conf_sap.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
144 | conf_sap.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h | 144 | conf_sap.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
145 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 145 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
146 | conf_sap.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 146 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
147 | conf_sap.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 147 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
148 | conf_sap.o: ../../include/openssl/opensslconf.h | ||
149 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
150 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 149 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
151 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
diff --git a/src/lib/libcrypto/des/Makefile b/src/lib/libcrypto/des/Makefile index 786e68802e..ae982265fd 100644 --- a/src/lib/libcrypto/des/Makefile +++ b/src/lib/libcrypto/des/Makefile | |||
@@ -12,8 +12,6 @@ MAKEFILE= Makefile | |||
12 | AR= ar r | 12 | AR= ar r |
13 | RANLIB= ranlib | 13 | RANLIB= ranlib |
14 | DES_ENC= des_enc.o fcrypt_b.o | 14 | DES_ENC= des_enc.o fcrypt_b.o |
15 | # or use | ||
16 | #DES_ENC= dx86-elf.o yx86-elf.o | ||
17 | 15 | ||
18 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
19 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
@@ -24,7 +22,7 @@ TEST=destest.c | |||
24 | APPS= | 22 | APPS= |
25 | 23 | ||
26 | LIB=$(TOP)/libcrypto.a | 24 | LIB=$(TOP)/libcrypto.a |
27 | LIBSRC= des_lib.c cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | 25 | LIBSRC= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ |
28 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ | 26 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ |
29 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ | 27 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ |
30 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ | 28 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ |
@@ -33,7 +31,7 @@ LIBSRC= des_lib.c cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | |||
33 | str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \ | 31 | str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c \ |
34 | read2pwd.c | 32 | read2pwd.c |
35 | 33 | ||
36 | LIBOBJ= des_lib.o set_key.o ecb_enc.o cbc_enc.o \ | 34 | LIBOBJ= set_key.o ecb_enc.o cbc_enc.o \ |
37 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ | 35 | ecb3_enc.o cfb64enc.o cfb64ede.o cfb_enc.o ofb64ede.o \ |
38 | enc_read.o enc_writ.o ofb64enc.o \ | 36 | enc_read.o enc_writ.o ofb64enc.o \ |
39 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ | 37 | ofb_enc.o str2key.o pcbc_enc.o qud_cksm.o rand_key.o \ |
@@ -54,7 +52,7 @@ top: | |||
54 | all: lib | 52 | all: lib |
55 | 53 | ||
56 | lib: $(LIBOBJ) | 54 | lib: $(LIBOBJ) |
57 | $(ARX) $(LIB) $(LIBOBJ) | 55 | $(AR) $(LIB) $(LIBOBJ) |
58 | $(RANLIB) $(LIB) || echo Never mind. | 56 | $(RANLIB) $(LIB) || echo Never mind. |
59 | @touch lib | 57 | @touch lib |
60 | 58 | ||
@@ -64,21 +62,10 @@ des: des.o cbc3_enc.o lib | |||
64 | des_enc-sparc.S: asm/des_enc.m4 | 62 | des_enc-sparc.S: asm/des_enc.m4 |
65 | m4 -B 8192 asm/des_enc.m4 > des_enc-sparc.S | 63 | m4 -B 8192 asm/des_enc.m4 > des_enc-sparc.S |
66 | 64 | ||
67 | # ELF | 65 | des-586.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
68 | dx86-elf.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 66 | $(PERL) asm/des-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ |
69 | (cd asm; $(PERL) des-586.pl elf $(CFLAGS) > ../$@) | 67 | crypt586.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
70 | yx86-elf.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 68 | $(PERL) asm/crypt586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ |
71 | (cd asm; $(PERL) crypt586.pl elf $(CFLAGS) > ../$@) | ||
72 | # COFF | ||
73 | dx86-cof.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
74 | (cd asm; $(PERL) des-586.pl coff $(CFLAGS) > ../$@) | ||
75 | yx86-cof.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
76 | (cd asm; $(PERL) crypt586.pl coff $(CFLAGS) > ../$@) | ||
77 | # a.out | ||
78 | dx86-out.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
79 | (cd asm; $(PERL) des-586.pl a.out $(CFLAGS) > ../$@) | ||
80 | yx86-out.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
81 | (cd asm; $(PERL) crypt586.pl a.out $(CFLAGS) > ../$@) | ||
82 | 69 | ||
83 | files: | 70 | files: |
84 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 71 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -156,14 +143,7 @@ des_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | |||
156 | des_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 143 | des_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
157 | des_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 144 | des_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
158 | des_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 145 | des_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
159 | des_enc.o: des_enc.c des_locl.h ncbc_enc.c | 146 | des_enc.o: des_enc.c des_locl.h ncbc_enc.c spr.h |
160 | des_lib.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
161 | des_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
162 | des_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
163 | des_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
164 | des_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
165 | des_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
166 | des_lib.o: ../../include/openssl/ui_compat.h des_lib.c des_locl.h des_ver.h | ||
167 | des_old.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 147 | des_old.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
168 | des_old.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 148 | des_old.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
169 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 149 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
@@ -182,12 +162,13 @@ ecb3_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | |||
182 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 162 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
183 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 163 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
184 | ecb3_enc.o: des_locl.h ecb3_enc.c | 164 | ecb3_enc.o: des_locl.h ecb3_enc.c |
165 | ecb_enc.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
185 | ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 166 | ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
186 | ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 167 | ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
187 | ecb_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 168 | ecb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
188 | ecb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 169 | ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
189 | ecb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 170 | ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
190 | ecb_enc.o: des_locl.h ecb_enc.c spr.h | 171 | ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h ecb_enc.c |
191 | ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 172 | ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
192 | ede_cbcm_enc.o: ../../include/openssl/e_os2.h | 173 | ede_cbcm_enc.o: ../../include/openssl/e_os2.h |
193 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h | 174 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h |
@@ -277,11 +258,11 @@ rpc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | |||
277 | rpc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 258 | rpc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
278 | rpc_enc.o: des_locl.h des_ver.h rpc_des.h rpc_enc.c | 259 | rpc_enc.o: des_locl.h des_ver.h rpc_des.h rpc_enc.c |
279 | set_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 260 | set_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
280 | set_key.o: ../../include/openssl/e_os2.h ../../include/openssl/fips.h | 261 | set_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
281 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/ossl_typ.h | 262 | set_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
282 | set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 263 | set_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
283 | set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 264 | set_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
284 | set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c | 265 | set_key.o: des_locl.h set_key.c |
285 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 266 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
286 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 267 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
287 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 268 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
diff --git a/src/lib/libcrypto/dso/Makefile b/src/lib/libcrypto/dso/Makefile index 52f152888c..fb2709ed63 100644 --- a/src/lib/libcrypto/dso/Makefile +++ b/src/lib/libcrypto/dso/Makefile | |||
@@ -18,9 +18,9 @@ APPS= | |||
18 | 18 | ||
19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
20 | LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \ | 20 | LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \ |
21 | dso_openssl.c dso_win32.c dso_vms.c | 21 | dso_openssl.c dso_win32.c dso_vms.c dso_beos.c |
22 | LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \ | 22 | LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \ |
23 | dso_openssl.o dso_win32.o dso_vms.o | 23 | dso_openssl.o dso_win32.o dso_vms.o dso_beos.o |
24 | 24 | ||
25 | SRC= $(LIBSRC) | 25 | SRC= $(LIBSRC) |
26 | 26 | ||
@@ -35,7 +35,7 @@ top: | |||
35 | all: lib | 35 | all: lib |
36 | 36 | ||
37 | lib: $(LIBOBJ) | 37 | lib: $(LIBOBJ) |
38 | $(ARX) $(LIB) $(LIBOBJ) | 38 | $(AR) $(LIB) $(LIBOBJ) |
39 | $(RANLIB) $(LIB) || echo Never mind. | 39 | $(RANLIB) $(LIB) || echo Never mind. |
40 | @touch lib | 40 | @touch lib |
41 | 41 | ||
@@ -76,6 +76,14 @@ clean: | |||
76 | 76 | ||
77 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 77 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
78 | 78 | ||
79 | dso_beos.o: ../../e_os.h ../../include/openssl/bio.h | ||
80 | dso_beos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
81 | dso_beos.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
82 | dso_beos.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
83 | dso_beos.o: ../../include/openssl/opensslconf.h | ||
84 | dso_beos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
85 | dso_beos.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
86 | dso_beos.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_beos.c | ||
79 | dso_dl.o: ../../e_os.h ../../include/openssl/bio.h | 87 | dso_dl.o: ../../e_os.h ../../include/openssl/bio.h |
80 | dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 88 | dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
81 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 89 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
diff --git a/src/lib/libcrypto/ec/Makefile b/src/lib/libcrypto/ec/Makefile index b5bbc9faa1..db380ed16f 100644 --- a/src/lib/libcrypto/ec/Makefile +++ b/src/lib/libcrypto/ec/Makefile | |||
@@ -19,11 +19,11 @@ APPS= | |||
19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
20 | LIBSRC= ec_lib.c ecp_smpl.c ecp_mont.c ecp_nist.c ec_cvt.c ec_mult.c\ | 20 | LIBSRC= ec_lib.c ecp_smpl.c ecp_mont.c ecp_nist.c ec_cvt.c ec_mult.c\ |
21 | ec_err.c ec_curve.c ec_check.c ec_print.c ec_asn1.c ec_key.c\ | 21 | ec_err.c ec_curve.c ec_check.c ec_print.c ec_asn1.c ec_key.c\ |
22 | ec2_smpl.c ec2_smpt.c ec2_mult.c | 22 | ec2_smpl.c ec2_mult.c ec_ameth.c ec_pmeth.c eck_prn.c |
23 | 23 | ||
24 | LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_nist.o ec_cvt.o ec_mult.o\ | 24 | LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_nist.o ec_cvt.o ec_mult.o\ |
25 | ec_err.o ec_curve.o ec_check.o ec_print.o ec_asn1.o ec_key.o\ | 25 | ec_err.o ec_curve.o ec_check.o ec_print.o ec_asn1.o ec_key.o\ |
26 | ec2_smpl.o ec2_mult.o | 26 | ec2_smpl.o ec2_mult.o ec_ameth.o ec_pmeth.o eck_prn.o |
27 | 27 | ||
28 | SRC= $(LIBSRC) | 28 | SRC= $(LIBSRC) |
29 | 29 | ||
@@ -38,7 +38,7 @@ top: | |||
38 | all: lib | 38 | all: lib |
39 | 39 | ||
40 | lib: $(LIBOBJ) | 40 | lib: $(LIBOBJ) |
41 | $(ARX) $(LIB) $(LIBOBJ) | 41 | $(AR) $(LIB) $(LIBOBJ) |
42 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 43 | @touch lib |
44 | 44 | ||
@@ -94,8 +94,22 @@ ec2_smpl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | |||
94 | ec2_smpl.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | 94 | ec2_smpl.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h |
95 | ec2_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 95 | ec2_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
96 | ec2_smpl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 96 | ec2_smpl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
97 | ec2_smpl.o: ../../include/openssl/symhacks.h ec2_smpl.c ec2_smpt.c ec_lcl.h | 97 | ec2_smpl.o: ../../include/openssl/symhacks.h ec2_smpl.c ec_lcl.h |
98 | ec2_smpt.o: ec2_smpt.c | 98 | ec_ameth.o: ../../e_os.h ../../include/openssl/asn1.h |
99 | ec_ameth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
100 | ec_ameth.o: ../../include/openssl/buffer.h ../../include/openssl/cms.h | ||
101 | ec_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
102 | ec_ameth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
103 | ec_ameth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
104 | ec_ameth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
105 | ec_ameth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
106 | ec_ameth.o: ../../include/openssl/opensslconf.h | ||
107 | ec_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
108 | ec_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
109 | ec_ameth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
110 | ec_ameth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
111 | ec_ameth.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h | ||
112 | ec_ameth.o: ec_ameth.c | ||
99 | ec_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 113 | ec_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
100 | ec_asn1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 114 | ec_asn1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
101 | ec_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 115 | ec_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
@@ -160,6 +174,20 @@ ec_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | |||
160 | ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 174 | ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
161 | ec_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 175 | ec_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
162 | ec_mult.o: ../../include/openssl/symhacks.h ec_lcl.h ec_mult.c | 176 | ec_mult.o: ../../include/openssl/symhacks.h ec_lcl.h ec_mult.c |
177 | ec_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
178 | ec_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
179 | ec_pmeth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
180 | ec_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
181 | ec_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
182 | ec_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
183 | ec_pmeth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
184 | ec_pmeth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
185 | ec_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
186 | ec_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
187 | ec_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
188 | ec_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
189 | ec_pmeth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h ../evp/evp_locl.h | ||
190 | ec_pmeth.o: ec_pmeth.c | ||
163 | ec_print.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 191 | ec_print.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
164 | ec_print.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 192 | ec_print.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
165 | ec_print.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 193 | ec_print.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
@@ -167,6 +195,16 @@ ec_print.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | |||
167 | ec_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 195 | ec_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
168 | ec_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 196 | ec_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
169 | ec_print.o: ../../include/openssl/symhacks.h ec_lcl.h ec_print.c | 197 | ec_print.o: ../../include/openssl/symhacks.h ec_lcl.h ec_print.c |
198 | eck_prn.o: ../../e_os.h ../../include/openssl/asn1.h | ||
199 | eck_prn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
200 | eck_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
201 | eck_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
202 | eck_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
203 | eck_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
204 | eck_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
205 | eck_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
206 | eck_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
207 | eck_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h eck_prn.c | ||
170 | ecp_mont.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 208 | ecp_mont.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
171 | ecp_mont.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 209 | ecp_mont.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
172 | ecp_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 210 | ecp_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
diff --git a/src/lib/libcrypto/engine/eng_cryptodev.c b/src/lib/libcrypto/engine/eng_cryptodev.c index ab38cd52f0..52f4ca3901 100644 --- a/src/lib/libcrypto/engine/eng_cryptodev.c +++ b/src/lib/libcrypto/engine/eng_cryptodev.c | |||
@@ -32,7 +32,7 @@ | |||
32 | #include <openssl/bn.h> | 32 | #include <openssl/bn.h> |
33 | 33 | ||
34 | #if (defined(__unix__) || defined(unix)) && !defined(USG) && \ | 34 | #if (defined(__unix__) || defined(unix)) && !defined(USG) && \ |
35 | (defined(OpenBSD) || defined(__FreeBSD_version)) | 35 | (defined(OpenBSD) || defined(__FreeBSD__)) |
36 | #include <sys/param.h> | 36 | #include <sys/param.h> |
37 | # if (OpenBSD >= 200112) || ((__FreeBSD_version >= 470101 && __FreeBSD_version < 500000) || __FreeBSD_version >= 500041) | 37 | # if (OpenBSD >= 200112) || ((__FreeBSD_version >= 470101 && __FreeBSD_version < 500000) || __FreeBSD_version >= 500041) |
38 | # define HAVE_CRYPTODEV | 38 | # define HAVE_CRYPTODEV |
@@ -55,6 +55,10 @@ ENGINE_load_cryptodev(void) | |||
55 | 55 | ||
56 | #include <sys/types.h> | 56 | #include <sys/types.h> |
57 | #include <crypto/cryptodev.h> | 57 | #include <crypto/cryptodev.h> |
58 | #include <crypto/dh/dh.h> | ||
59 | #include <crypto/dsa/dsa.h> | ||
60 | #include <crypto/err/err.h> | ||
61 | #include <crypto/rsa/rsa.h> | ||
58 | #include <sys/ioctl.h> | 62 | #include <sys/ioctl.h> |
59 | #include <errno.h> | 63 | #include <errno.h> |
60 | #include <stdio.h> | 64 | #include <stdio.h> |
@@ -68,6 +72,16 @@ ENGINE_load_cryptodev(void) | |||
68 | struct dev_crypto_state { | 72 | struct dev_crypto_state { |
69 | struct session_op d_sess; | 73 | struct session_op d_sess; |
70 | int d_fd; | 74 | int d_fd; |
75 | |||
76 | #ifdef USE_CRYPTODEV_DIGESTS | ||
77 | char dummy_mac_key[HASH_MAX_LEN]; | ||
78 | |||
79 | unsigned char digest_res[HASH_MAX_LEN]; | ||
80 | char *mac_data; | ||
81 | int mac_len; | ||
82 | |||
83 | int copy; | ||
84 | #endif | ||
71 | }; | 85 | }; |
72 | 86 | ||
73 | static u_int32_t cryptodev_asymfeat = 0; | 87 | static u_int32_t cryptodev_asymfeat = 0; |
@@ -75,15 +89,14 @@ static u_int32_t cryptodev_asymfeat = 0; | |||
75 | static int get_asym_dev_crypto(void); | 89 | static int get_asym_dev_crypto(void); |
76 | static int open_dev_crypto(void); | 90 | static int open_dev_crypto(void); |
77 | static int get_dev_crypto(void); | 91 | static int get_dev_crypto(void); |
78 | static int cryptodev_max_iv(int cipher); | ||
79 | static int cryptodev_key_length_valid(int cipher, int len); | ||
80 | static int cipher_nid_to_cryptodev(int nid); | ||
81 | static int get_cryptodev_ciphers(const int **cnids); | 92 | static int get_cryptodev_ciphers(const int **cnids); |
93 | #ifdef USE_CRYPTODEV_DIGESTS | ||
82 | static int get_cryptodev_digests(const int **cnids); | 94 | static int get_cryptodev_digests(const int **cnids); |
95 | #endif | ||
83 | static int cryptodev_usable_ciphers(const int **nids); | 96 | static int cryptodev_usable_ciphers(const int **nids); |
84 | static int cryptodev_usable_digests(const int **nids); | 97 | static int cryptodev_usable_digests(const int **nids); |
85 | static int cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | 98 | static int cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, |
86 | const unsigned char *in, unsigned int inl); | 99 | const unsigned char *in, size_t inl); |
87 | static int cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | 100 | static int cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, |
88 | const unsigned char *iv, int enc); | 101 | const unsigned char *iv, int enc); |
89 | static int cryptodev_cleanup(EVP_CIPHER_CTX *ctx); | 102 | static int cryptodev_cleanup(EVP_CIPHER_CTX *ctx); |
@@ -100,7 +113,7 @@ static int cryptodev_asym(struct crypt_kop *kop, int rlen, BIGNUM *r, | |||
100 | static int cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a, | 113 | static int cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a, |
101 | const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); | 114 | const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); |
102 | static int cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, | 115 | static int cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, |
103 | RSA *rsa); | 116 | RSA *rsa, BN_CTX *ctx); |
104 | static int cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx); | 117 | static int cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx); |
105 | static int cryptodev_dsa_bn_mod_exp(DSA *dsa, BIGNUM *r, BIGNUM *a, | 118 | static int cryptodev_dsa_bn_mod_exp(DSA *dsa, BIGNUM *r, BIGNUM *a, |
106 | const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); | 119 | const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); |
@@ -117,7 +130,7 @@ static int cryptodev_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a, | |||
117 | static int cryptodev_dh_compute_key(unsigned char *key, | 130 | static int cryptodev_dh_compute_key(unsigned char *key, |
118 | const BIGNUM *pub_key, DH *dh); | 131 | const BIGNUM *pub_key, DH *dh); |
119 | static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, | 132 | static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, |
120 | void (*f)()); | 133 | void (*f)(void)); |
121 | void ENGINE_load_cryptodev(void); | 134 | void ENGINE_load_cryptodev(void); |
122 | 135 | ||
123 | static const ENGINE_CMD_DEFN cryptodev_defns[] = { | 136 | static const ENGINE_CMD_DEFN cryptodev_defns[] = { |
@@ -130,27 +143,34 @@ static struct { | |||
130 | int ivmax; | 143 | int ivmax; |
131 | int keylen; | 144 | int keylen; |
132 | } ciphers[] = { | 145 | } ciphers[] = { |
146 | { CRYPTO_ARC4, NID_rc4, 0, 16, }, | ||
133 | { CRYPTO_DES_CBC, NID_des_cbc, 8, 8, }, | 147 | { CRYPTO_DES_CBC, NID_des_cbc, 8, 8, }, |
134 | { CRYPTO_3DES_CBC, NID_des_ede3_cbc, 8, 24, }, | 148 | { CRYPTO_3DES_CBC, NID_des_ede3_cbc, 8, 24, }, |
135 | { CRYPTO_AES_CBC, NID_aes_128_cbc, 16, 16, }, | 149 | { CRYPTO_AES_CBC, NID_aes_128_cbc, 16, 16, }, |
150 | { CRYPTO_AES_CBC, NID_aes_192_cbc, 16, 24, }, | ||
151 | { CRYPTO_AES_CBC, NID_aes_256_cbc, 16, 32, }, | ||
136 | { CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16, }, | 152 | { CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16, }, |
137 | { CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16, }, | 153 | { CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16, }, |
138 | { CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0, }, | 154 | { CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0, }, |
139 | { 0, NID_undef, 0, 0, }, | 155 | { 0, NID_undef, 0, 0, }, |
140 | }; | 156 | }; |
141 | 157 | ||
158 | #ifdef USE_CRYPTODEV_DIGESTS | ||
142 | static struct { | 159 | static struct { |
143 | int id; | 160 | int id; |
144 | int nid; | 161 | int nid; |
162 | int keylen; | ||
145 | } digests[] = { | 163 | } digests[] = { |
146 | { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, }, | 164 | { CRYPTO_MD5_HMAC, NID_hmacWithMD5, 16}, |
147 | { CRYPTO_RIPEMD160_HMAC, NID_ripemd160, }, | 165 | { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, 20}, |
148 | { CRYPTO_MD5_KPDK, NID_undef, }, | 166 | { CRYPTO_RIPEMD160_HMAC, NID_ripemd160, 16/*?*/}, |
149 | { CRYPTO_SHA1_KPDK, NID_undef, }, | 167 | { CRYPTO_MD5_KPDK, NID_undef, 0}, |
150 | { CRYPTO_MD5, NID_md5, }, | 168 | { CRYPTO_SHA1_KPDK, NID_undef, 0}, |
151 | { CRYPTO_SHA1, NID_undef, }, | 169 | { CRYPTO_MD5, NID_md5, 16}, |
152 | { 0, NID_undef, }, | 170 | { CRYPTO_SHA1, NID_sha1, 20}, |
171 | { 0, NID_undef, 0}, | ||
153 | }; | 172 | }; |
173 | #endif | ||
154 | 174 | ||
155 | /* | 175 | /* |
156 | * Return a fd if /dev/crypto seems usable, 0 otherwise. | 176 | * Return a fd if /dev/crypto seems usable, 0 otherwise. |
@@ -203,50 +223,6 @@ get_asym_dev_crypto(void) | |||
203 | } | 223 | } |
204 | 224 | ||
205 | /* | 225 | /* |
206 | * XXXX this needs to be set for each alg - and determined from | ||
207 | * a running card. | ||
208 | */ | ||
209 | static int | ||
210 | cryptodev_max_iv(int cipher) | ||
211 | { | ||
212 | int i; | ||
213 | |||
214 | for (i = 0; ciphers[i].id; i++) | ||
215 | if (ciphers[i].id == cipher) | ||
216 | return (ciphers[i].ivmax); | ||
217 | return (0); | ||
218 | } | ||
219 | |||
220 | /* | ||
221 | * XXXX this needs to be set for each alg - and determined from | ||
222 | * a running card. For now, fake it out - but most of these | ||
223 | * for real devices should return 1 for the supported key | ||
224 | * sizes the device can handle. | ||
225 | */ | ||
226 | static int | ||
227 | cryptodev_key_length_valid(int cipher, int len) | ||
228 | { | ||
229 | int i; | ||
230 | |||
231 | for (i = 0; ciphers[i].id; i++) | ||
232 | if (ciphers[i].id == cipher) | ||
233 | return (ciphers[i].keylen == len); | ||
234 | return (0); | ||
235 | } | ||
236 | |||
237 | /* convert libcrypto nids to cryptodev */ | ||
238 | static int | ||
239 | cipher_nid_to_cryptodev(int nid) | ||
240 | { | ||
241 | int i; | ||
242 | |||
243 | for (i = 0; ciphers[i].id; i++) | ||
244 | if (ciphers[i].nid == nid) | ||
245 | return (ciphers[i].id); | ||
246 | return (0); | ||
247 | } | ||
248 | |||
249 | /* | ||
250 | * Find out what ciphers /dev/crypto will let us have a session for. | 226 | * Find out what ciphers /dev/crypto will let us have a session for. |
251 | * XXX note, that some of these openssl doesn't deal with yet! | 227 | * XXX note, that some of these openssl doesn't deal with yet! |
252 | * returning them here is harmless, as long as we return NULL | 228 | * returning them here is harmless, as long as we return NULL |
@@ -264,7 +240,7 @@ get_cryptodev_ciphers(const int **cnids) | |||
264 | return (0); | 240 | return (0); |
265 | } | 241 | } |
266 | memset(&sess, 0, sizeof(sess)); | 242 | memset(&sess, 0, sizeof(sess)); |
267 | sess.key = (caddr_t)"123456781234567812345678"; | 243 | sess.key = (caddr_t)"123456789abcdefghijklmno"; |
268 | 244 | ||
269 | for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { | 245 | for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { |
270 | if (ciphers[i].nid == NID_undef) | 246 | if (ciphers[i].nid == NID_undef) |
@@ -285,6 +261,7 @@ get_cryptodev_ciphers(const int **cnids) | |||
285 | return (count); | 261 | return (count); |
286 | } | 262 | } |
287 | 263 | ||
264 | #ifdef USE_CRYPTODEV_DIGESTS | ||
288 | /* | 265 | /* |
289 | * Find out what digests /dev/crypto will let us have a session for. | 266 | * Find out what digests /dev/crypto will let us have a session for. |
290 | * XXX note, that some of these openssl doesn't deal with yet! | 267 | * XXX note, that some of these openssl doesn't deal with yet! |
@@ -303,10 +280,12 @@ get_cryptodev_digests(const int **cnids) | |||
303 | return (0); | 280 | return (0); |
304 | } | 281 | } |
305 | memset(&sess, 0, sizeof(sess)); | 282 | memset(&sess, 0, sizeof(sess)); |
283 | sess.mackey = (caddr_t)"123456789abcdefghijklmno"; | ||
306 | for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { | 284 | for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { |
307 | if (digests[i].nid == NID_undef) | 285 | if (digests[i].nid == NID_undef) |
308 | continue; | 286 | continue; |
309 | sess.mac = digests[i].id; | 287 | sess.mac = digests[i].id; |
288 | sess.mackeylen = digests[i].keylen; | ||
310 | sess.cipher = 0; | 289 | sess.cipher = 0; |
311 | if (ioctl(fd, CIOCGSESSION, &sess) != -1 && | 290 | if (ioctl(fd, CIOCGSESSION, &sess) != -1 && |
312 | ioctl(fd, CIOCFSESSION, &sess.ses) != -1) | 291 | ioctl(fd, CIOCFSESSION, &sess.ses) != -1) |
@@ -320,6 +299,7 @@ get_cryptodev_digests(const int **cnids) | |||
320 | *cnids = NULL; | 299 | *cnids = NULL; |
321 | return (count); | 300 | return (count); |
322 | } | 301 | } |
302 | #endif /* 0 */ | ||
323 | 303 | ||
324 | /* | 304 | /* |
325 | * Find the useable ciphers|digests from dev/crypto - this is the first | 305 | * Find the useable ciphers|digests from dev/crypto - this is the first |
@@ -351,6 +331,9 @@ cryptodev_usable_ciphers(const int **nids) | |||
351 | static int | 331 | static int |
352 | cryptodev_usable_digests(const int **nids) | 332 | cryptodev_usable_digests(const int **nids) |
353 | { | 333 | { |
334 | #ifdef USE_CRYPTODEV_DIGESTS | ||
335 | return (get_cryptodev_digests(nids)); | ||
336 | #else | ||
354 | /* | 337 | /* |
355 | * XXXX just disable all digests for now, because it sucks. | 338 | * XXXX just disable all digests for now, because it sucks. |
356 | * we need a better way to decide this - i.e. I may not | 339 | * we need a better way to decide this - i.e. I may not |
@@ -365,16 +348,17 @@ cryptodev_usable_digests(const int **nids) | |||
365 | */ | 348 | */ |
366 | *nids = NULL; | 349 | *nids = NULL; |
367 | return (0); | 350 | return (0); |
351 | #endif | ||
368 | } | 352 | } |
369 | 353 | ||
370 | static int | 354 | static int |
371 | cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | 355 | cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, |
372 | const unsigned char *in, unsigned int inl) | 356 | const unsigned char *in, size_t inl) |
373 | { | 357 | { |
374 | struct crypt_op cryp; | 358 | struct crypt_op cryp; |
375 | struct dev_crypto_state *state = ctx->cipher_data; | 359 | struct dev_crypto_state *state = ctx->cipher_data; |
376 | struct session_op *sess = &state->d_sess; | 360 | struct session_op *sess = &state->d_sess; |
377 | void *iiv; | 361 | const void *iiv; |
378 | unsigned char save_iv[EVP_MAX_IV_LENGTH]; | 362 | unsigned char save_iv[EVP_MAX_IV_LENGTH]; |
379 | 363 | ||
380 | if (state->d_fd < 0) | 364 | if (state->d_fd < 0) |
@@ -398,7 +382,7 @@ cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | |||
398 | if (ctx->cipher->iv_len) { | 382 | if (ctx->cipher->iv_len) { |
399 | cryp.iv = (caddr_t) ctx->iv; | 383 | cryp.iv = (caddr_t) ctx->iv; |
400 | if (!ctx->encrypt) { | 384 | if (!ctx->encrypt) { |
401 | iiv = (void *) in + inl - ctx->cipher->iv_len; | 385 | iiv = in + inl - ctx->cipher->iv_len; |
402 | memcpy(save_iv, iiv, ctx->cipher->iv_len); | 386 | memcpy(save_iv, iiv, ctx->cipher->iv_len); |
403 | } | 387 | } |
404 | } else | 388 | } else |
@@ -413,7 +397,7 @@ cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | |||
413 | 397 | ||
414 | if (ctx->cipher->iv_len) { | 398 | if (ctx->cipher->iv_len) { |
415 | if (ctx->encrypt) | 399 | if (ctx->encrypt) |
416 | iiv = (void *) out + inl - ctx->cipher->iv_len; | 400 | iiv = out + inl - ctx->cipher->iv_len; |
417 | else | 401 | else |
418 | iiv = save_iv; | 402 | iiv = save_iv; |
419 | memcpy(ctx->iv, iiv, ctx->cipher->iv_len); | 403 | memcpy(ctx->iv, iiv, ctx->cipher->iv_len); |
@@ -427,23 +411,27 @@ cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | |||
427 | { | 411 | { |
428 | struct dev_crypto_state *state = ctx->cipher_data; | 412 | struct dev_crypto_state *state = ctx->cipher_data; |
429 | struct session_op *sess = &state->d_sess; | 413 | struct session_op *sess = &state->d_sess; |
430 | int cipher; | 414 | int cipher = -1, i; |
431 | 415 | ||
432 | if ((cipher = cipher_nid_to_cryptodev(ctx->cipher->nid)) == NID_undef) | 416 | for (i = 0; ciphers[i].id; i++) |
433 | return (0); | 417 | if (ctx->cipher->nid == ciphers[i].nid && |
434 | 418 | ctx->cipher->iv_len <= ciphers[i].ivmax && | |
435 | if (ctx->cipher->iv_len > cryptodev_max_iv(cipher)) | 419 | ctx->key_len == ciphers[i].keylen) { |
436 | return (0); | 420 | cipher = ciphers[i].id; |
421 | break; | ||
422 | } | ||
437 | 423 | ||
438 | if (!cryptodev_key_length_valid(cipher, ctx->key_len)) | 424 | if (!ciphers[i].id) { |
425 | state->d_fd = -1; | ||
439 | return (0); | 426 | return (0); |
427 | } | ||
440 | 428 | ||
441 | memset(sess, 0, sizeof(struct session_op)); | 429 | memset(sess, 0, sizeof(struct session_op)); |
442 | 430 | ||
443 | if ((state->d_fd = get_dev_crypto()) < 0) | 431 | if ((state->d_fd = get_dev_crypto()) < 0) |
444 | return (0); | 432 | return (0); |
445 | 433 | ||
446 | sess->key = (unsigned char *)key; | 434 | sess->key = (caddr_t)key; |
447 | sess->keylen = ctx->key_len; | 435 | sess->keylen = ctx->key_len; |
448 | sess->cipher = cipher; | 436 | sess->cipher = cipher; |
449 | 437 | ||
@@ -496,6 +484,20 @@ cryptodev_cleanup(EVP_CIPHER_CTX *ctx) | |||
496 | * gets called when libcrypto requests a cipher NID. | 484 | * gets called when libcrypto requests a cipher NID. |
497 | */ | 485 | */ |
498 | 486 | ||
487 | /* RC4 */ | ||
488 | const EVP_CIPHER cryptodev_rc4 = { | ||
489 | NID_rc4, | ||
490 | 1, 16, 0, | ||
491 | EVP_CIPH_VARIABLE_LENGTH, | ||
492 | cryptodev_init_key, | ||
493 | cryptodev_cipher, | ||
494 | cryptodev_cleanup, | ||
495 | sizeof(struct dev_crypto_state), | ||
496 | NULL, | ||
497 | NULL, | ||
498 | NULL | ||
499 | }; | ||
500 | |||
499 | /* DES CBC EVP */ | 501 | /* DES CBC EVP */ |
500 | const EVP_CIPHER cryptodev_des_cbc = { | 502 | const EVP_CIPHER cryptodev_des_cbc = { |
501 | NID_des_cbc, | 503 | NID_des_cbc, |
@@ -563,6 +565,32 @@ const EVP_CIPHER cryptodev_aes_cbc = { | |||
563 | NULL | 565 | NULL |
564 | }; | 566 | }; |
565 | 567 | ||
568 | const EVP_CIPHER cryptodev_aes_192_cbc = { | ||
569 | NID_aes_192_cbc, | ||
570 | 16, 24, 16, | ||
571 | EVP_CIPH_CBC_MODE, | ||
572 | cryptodev_init_key, | ||
573 | cryptodev_cipher, | ||
574 | cryptodev_cleanup, | ||
575 | sizeof(struct dev_crypto_state), | ||
576 | EVP_CIPHER_set_asn1_iv, | ||
577 | EVP_CIPHER_get_asn1_iv, | ||
578 | NULL | ||
579 | }; | ||
580 | |||
581 | const EVP_CIPHER cryptodev_aes_256_cbc = { | ||
582 | NID_aes_256_cbc, | ||
583 | 16, 32, 16, | ||
584 | EVP_CIPH_CBC_MODE, | ||
585 | cryptodev_init_key, | ||
586 | cryptodev_cipher, | ||
587 | cryptodev_cleanup, | ||
588 | sizeof(struct dev_crypto_state), | ||
589 | EVP_CIPHER_set_asn1_iv, | ||
590 | EVP_CIPHER_get_asn1_iv, | ||
591 | NULL | ||
592 | }; | ||
593 | |||
566 | /* | 594 | /* |
567 | * Registered by the ENGINE when used to find out how to deal with | 595 | * Registered by the ENGINE when used to find out how to deal with |
568 | * a particular NID in the ENGINE. this says what we'll do at the | 596 | * a particular NID in the ENGINE. this says what we'll do at the |
@@ -576,6 +604,9 @@ cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher, | |||
576 | return (cryptodev_usable_ciphers(nids)); | 604 | return (cryptodev_usable_ciphers(nids)); |
577 | 605 | ||
578 | switch (nid) { | 606 | switch (nid) { |
607 | case NID_rc4: | ||
608 | *cipher = &cryptodev_rc4; | ||
609 | break; | ||
579 | case NID_des_ede3_cbc: | 610 | case NID_des_ede3_cbc: |
580 | *cipher = &cryptodev_3des_cbc; | 611 | *cipher = &cryptodev_3des_cbc; |
581 | break; | 612 | break; |
@@ -591,6 +622,12 @@ cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher, | |||
591 | case NID_aes_128_cbc: | 622 | case NID_aes_128_cbc: |
592 | *cipher = &cryptodev_aes_cbc; | 623 | *cipher = &cryptodev_aes_cbc; |
593 | break; | 624 | break; |
625 | case NID_aes_192_cbc: | ||
626 | *cipher = &cryptodev_aes_192_cbc; | ||
627 | break; | ||
628 | case NID_aes_256_cbc: | ||
629 | *cipher = &cryptodev_aes_256_cbc; | ||
630 | break; | ||
594 | default: | 631 | default: |
595 | *cipher = NULL; | 632 | *cipher = NULL; |
596 | break; | 633 | break; |
@@ -598,6 +635,234 @@ cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher, | |||
598 | return (*cipher != NULL); | 635 | return (*cipher != NULL); |
599 | } | 636 | } |
600 | 637 | ||
638 | |||
639 | #ifdef USE_CRYPTODEV_DIGESTS | ||
640 | |||
641 | /* convert digest type to cryptodev */ | ||
642 | static int | ||
643 | digest_nid_to_cryptodev(int nid) | ||
644 | { | ||
645 | int i; | ||
646 | |||
647 | for (i = 0; digests[i].id; i++) | ||
648 | if (digests[i].nid == nid) | ||
649 | return (digests[i].id); | ||
650 | return (0); | ||
651 | } | ||
652 | |||
653 | |||
654 | static int | ||
655 | digest_key_length(int nid) | ||
656 | { | ||
657 | int i; | ||
658 | |||
659 | for (i = 0; digests[i].id; i++) | ||
660 | if (digests[i].nid == nid) | ||
661 | return digests[i].keylen; | ||
662 | return (0); | ||
663 | } | ||
664 | |||
665 | |||
666 | static int cryptodev_digest_init(EVP_MD_CTX *ctx) | ||
667 | { | ||
668 | struct dev_crypto_state *state = ctx->md_data; | ||
669 | struct session_op *sess = &state->d_sess; | ||
670 | int digest; | ||
671 | |||
672 | if ((digest = digest_nid_to_cryptodev(ctx->digest->type)) == NID_undef){ | ||
673 | printf("cryptodev_digest_init: Can't get digest \n"); | ||
674 | return (0); | ||
675 | } | ||
676 | |||
677 | memset(state, 0, sizeof(struct dev_crypto_state)); | ||
678 | |||
679 | if ((state->d_fd = get_dev_crypto()) < 0) { | ||
680 | printf("cryptodev_digest_init: Can't get Dev \n"); | ||
681 | return (0); | ||
682 | } | ||
683 | |||
684 | sess->mackey = state->dummy_mac_key; | ||
685 | sess->mackeylen = digest_key_length(ctx->digest->type); | ||
686 | sess->mac = digest; | ||
687 | |||
688 | if (ioctl(state->d_fd, CIOCGSESSION, sess) < 0) { | ||
689 | close(state->d_fd); | ||
690 | state->d_fd = -1; | ||
691 | printf("cryptodev_digest_init: Open session failed\n"); | ||
692 | return (0); | ||
693 | } | ||
694 | |||
695 | return (1); | ||
696 | } | ||
697 | |||
698 | static int cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data, | ||
699 | size_t count) | ||
700 | { | ||
701 | struct crypt_op cryp; | ||
702 | struct dev_crypto_state *state = ctx->md_data; | ||
703 | struct session_op *sess = &state->d_sess; | ||
704 | |||
705 | if (!data || state->d_fd < 0) { | ||
706 | printf("cryptodev_digest_update: illegal inputs \n"); | ||
707 | return (0); | ||
708 | } | ||
709 | |||
710 | if (!count) { | ||
711 | return (0); | ||
712 | } | ||
713 | |||
714 | if (!(ctx->flags & EVP_MD_CTX_FLAG_ONESHOT)) { | ||
715 | /* if application doesn't support one buffer */ | ||
716 | state->mac_data = OPENSSL_realloc(state->mac_data, state->mac_len + count); | ||
717 | |||
718 | if (!state->mac_data) { | ||
719 | printf("cryptodev_digest_update: realloc failed\n"); | ||
720 | return (0); | ||
721 | } | ||
722 | |||
723 | memcpy(state->mac_data + state->mac_len, data, count); | ||
724 | state->mac_len += count; | ||
725 | |||
726 | return (1); | ||
727 | } | ||
728 | |||
729 | memset(&cryp, 0, sizeof(cryp)); | ||
730 | |||
731 | cryp.ses = sess->ses; | ||
732 | cryp.flags = 0; | ||
733 | cryp.len = count; | ||
734 | cryp.src = (caddr_t) data; | ||
735 | cryp.dst = NULL; | ||
736 | cryp.mac = (caddr_t) state->digest_res; | ||
737 | if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) { | ||
738 | printf("cryptodev_digest_update: digest failed\n"); | ||
739 | return (0); | ||
740 | } | ||
741 | return (1); | ||
742 | } | ||
743 | |||
744 | |||
745 | static int cryptodev_digest_final(EVP_MD_CTX *ctx, unsigned char *md) | ||
746 | { | ||
747 | struct crypt_op cryp; | ||
748 | struct dev_crypto_state *state = ctx->md_data; | ||
749 | struct session_op *sess = &state->d_sess; | ||
750 | |||
751 | int ret = 1; | ||
752 | |||
753 | if (!md || state->d_fd < 0) { | ||
754 | printf("cryptodev_digest_final: illegal input\n"); | ||
755 | return(0); | ||
756 | } | ||
757 | |||
758 | if (! (ctx->flags & EVP_MD_CTX_FLAG_ONESHOT) ) { | ||
759 | /* if application doesn't support one buffer */ | ||
760 | memset(&cryp, 0, sizeof(cryp)); | ||
761 | |||
762 | cryp.ses = sess->ses; | ||
763 | cryp.flags = 0; | ||
764 | cryp.len = state->mac_len; | ||
765 | cryp.src = state->mac_data; | ||
766 | cryp.dst = NULL; | ||
767 | cryp.mac = (caddr_t)md; | ||
768 | |||
769 | if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) { | ||
770 | printf("cryptodev_digest_final: digest failed\n"); | ||
771 | return (0); | ||
772 | } | ||
773 | |||
774 | return 1; | ||
775 | } | ||
776 | |||
777 | memcpy(md, state->digest_res, ctx->digest->md_size); | ||
778 | |||
779 | return (ret); | ||
780 | } | ||
781 | |||
782 | |||
783 | static int cryptodev_digest_cleanup(EVP_MD_CTX *ctx) | ||
784 | { | ||
785 | int ret = 1; | ||
786 | struct dev_crypto_state *state = ctx->md_data; | ||
787 | struct session_op *sess = &state->d_sess; | ||
788 | |||
789 | if (state->d_fd < 0) { | ||
790 | printf("cryptodev_digest_cleanup: illegal input\n"); | ||
791 | return (0); | ||
792 | } | ||
793 | |||
794 | if (state->mac_data) { | ||
795 | OPENSSL_free(state->mac_data); | ||
796 | state->mac_data = NULL; | ||
797 | state->mac_len = 0; | ||
798 | } | ||
799 | |||
800 | if (state->copy) | ||
801 | return 1; | ||
802 | |||
803 | if (ioctl(state->d_fd, CIOCFSESSION, &sess->ses) < 0) { | ||
804 | printf("cryptodev_digest_cleanup: failed to close session\n"); | ||
805 | ret = 0; | ||
806 | } else { | ||
807 | ret = 1; | ||
808 | } | ||
809 | close(state->d_fd); | ||
810 | state->d_fd = -1; | ||
811 | |||
812 | return (ret); | ||
813 | } | ||
814 | |||
815 | static int cryptodev_digest_copy(EVP_MD_CTX *to,const EVP_MD_CTX *from) | ||
816 | { | ||
817 | struct dev_crypto_state *fstate = from->md_data; | ||
818 | struct dev_crypto_state *dstate = to->md_data; | ||
819 | |||
820 | memcpy(dstate, fstate, sizeof(struct dev_crypto_state)); | ||
821 | |||
822 | if (fstate->mac_len != 0) { | ||
823 | dstate->mac_data = OPENSSL_malloc(fstate->mac_len); | ||
824 | memcpy(dstate->mac_data, fstate->mac_data, fstate->mac_len); | ||
825 | } | ||
826 | |||
827 | dstate->copy = 1; | ||
828 | |||
829 | return 1; | ||
830 | } | ||
831 | |||
832 | |||
833 | const EVP_MD cryptodev_sha1 = { | ||
834 | NID_sha1, | ||
835 | NID_undef, | ||
836 | SHA_DIGEST_LENGTH, | ||
837 | EVP_MD_FLAG_ONESHOT, | ||
838 | cryptodev_digest_init, | ||
839 | cryptodev_digest_update, | ||
840 | cryptodev_digest_final, | ||
841 | cryptodev_digest_copy, | ||
842 | cryptodev_digest_cleanup, | ||
843 | EVP_PKEY_NULL_method, | ||
844 | SHA_CBLOCK, | ||
845 | sizeof(struct dev_crypto_state), | ||
846 | }; | ||
847 | |||
848 | const EVP_MD cryptodev_md5 = { | ||
849 | NID_md5, | ||
850 | NID_undef, | ||
851 | 16 /* MD5_DIGEST_LENGTH */, | ||
852 | EVP_MD_FLAG_ONESHOT, | ||
853 | cryptodev_digest_init, | ||
854 | cryptodev_digest_update, | ||
855 | cryptodev_digest_final, | ||
856 | cryptodev_digest_copy, | ||
857 | cryptodev_digest_cleanup, | ||
858 | EVP_PKEY_NULL_method, | ||
859 | 64 /* MD5_CBLOCK */, | ||
860 | sizeof(struct dev_crypto_state), | ||
861 | }; | ||
862 | |||
863 | #endif /* USE_CRYPTODEV_DIGESTS */ | ||
864 | |||
865 | |||
601 | static int | 866 | static int |
602 | cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest, | 867 | cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest, |
603 | const int **nids, int nid) | 868 | const int **nids, int nid) |
@@ -606,10 +871,15 @@ cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest, | |||
606 | return (cryptodev_usable_digests(nids)); | 871 | return (cryptodev_usable_digests(nids)); |
607 | 872 | ||
608 | switch (nid) { | 873 | switch (nid) { |
874 | #ifdef USE_CRYPTODEV_DIGESTS | ||
609 | case NID_md5: | 875 | case NID_md5: |
610 | *digest = NULL; /* need to make a clean md5 critter */ | 876 | *digest = &cryptodev_md5; |
611 | break; | 877 | break; |
878 | case NID_sha1: | ||
879 | *digest = &cryptodev_sha1; | ||
880 | break; | ||
612 | default: | 881 | default: |
882 | #endif /* USE_CRYPTODEV_DIGESTS */ | ||
613 | *digest = NULL; | 883 | *digest = NULL; |
614 | break; | 884 | break; |
615 | } | 885 | } |
@@ -625,7 +895,7 @@ static int | |||
625 | bn2crparam(const BIGNUM *a, struct crparam *crp) | 895 | bn2crparam(const BIGNUM *a, struct crparam *crp) |
626 | { | 896 | { |
627 | int i, j, k; | 897 | int i, j, k; |
628 | ssize_t words, bytes, bits; | 898 | ssize_t bytes, bits; |
629 | u_char *b; | 899 | u_char *b; |
630 | 900 | ||
631 | crp->crp_p = NULL; | 901 | crp->crp_p = NULL; |
@@ -637,8 +907,9 @@ bn2crparam(const BIGNUM *a, struct crparam *crp) | |||
637 | b = malloc(bytes); | 907 | b = malloc(bytes); |
638 | if (b == NULL) | 908 | if (b == NULL) |
639 | return (1); | 909 | return (1); |
910 | memset(b, 0, bytes); | ||
640 | 911 | ||
641 | crp->crp_p = b; | 912 | crp->crp_p = (caddr_t) b; |
642 | crp->crp_nbits = bits; | 913 | crp->crp_nbits = bits; |
643 | 914 | ||
644 | for (i = 0, j = 0; i < a->top; i++) { | 915 | for (i = 0, j = 0; i < a->top; i++) { |
@@ -681,7 +952,7 @@ zapparams(struct crypt_kop *kop) | |||
681 | { | 952 | { |
682 | int i; | 953 | int i; |
683 | 954 | ||
684 | for (i = 0; i <= kop->crk_iparams + kop->crk_oparams; i++) { | 955 | for (i = 0; i < kop->crk_iparams + kop->crk_oparams; i++) { |
685 | if (kop->crk_param[i].crp_p) | 956 | if (kop->crk_param[i].crp_p) |
686 | free(kop->crk_param[i].crp_p); | 957 | free(kop->crk_param[i].crp_p); |
687 | kop->crk_param[i].crp_p = NULL; | 958 | kop->crk_param[i].crp_p = NULL; |
@@ -746,21 +1017,27 @@ cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, | |||
746 | goto err; | 1017 | goto err; |
747 | kop.crk_iparams = 3; | 1018 | kop.crk_iparams = 3; |
748 | 1019 | ||
749 | if (cryptodev_asym(&kop, BN_num_bytes(m), r, 0, NULL) == -1) { | 1020 | if (cryptodev_asym(&kop, BN_num_bytes(m), r, 0, NULL)) { |
1021 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); | ||
1022 | printf("OCF asym process failed, Running in software\n"); | ||
1023 | ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); | ||
1024 | |||
1025 | } else if (ECANCELED == kop.crk_status) { | ||
750 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); | 1026 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); |
1027 | printf("OCF hardware operation cancelled. Running in Software\n"); | ||
751 | ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); | 1028 | ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); |
752 | } | 1029 | } |
1030 | /* else cryptodev operation worked ok ==> ret = 1*/ | ||
1031 | |||
753 | err: | 1032 | err: |
754 | zapparams(&kop); | 1033 | zapparams(&kop); |
755 | return (ret); | 1034 | return (ret); |
756 | } | 1035 | } |
757 | 1036 | ||
758 | static int | 1037 | static int |
759 | cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa) | 1038 | cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx) |
760 | { | 1039 | { |
761 | int r; | 1040 | int r; |
762 | BN_CTX *ctx; | ||
763 | |||
764 | ctx = BN_CTX_new(); | 1041 | ctx = BN_CTX_new(); |
765 | r = cryptodev_bn_mod_exp(r0, I, rsa->d, rsa->n, ctx, NULL); | 1042 | r = cryptodev_bn_mod_exp(r0, I, rsa->d, rsa->n, ctx, NULL); |
766 | BN_CTX_free(ctx); | 1043 | BN_CTX_free(ctx); |
@@ -795,10 +1072,18 @@ cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx) | |||
795 | goto err; | 1072 | goto err; |
796 | kop.crk_iparams = 6; | 1073 | kop.crk_iparams = 6; |
797 | 1074 | ||
798 | if (cryptodev_asym(&kop, BN_num_bytes(rsa->n), r0, 0, NULL) == -1) { | 1075 | if (cryptodev_asym(&kop, BN_num_bytes(rsa->n), r0, 0, NULL)) { |
1076 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); | ||
1077 | printf("OCF asym process failed, running in Software\n"); | ||
1078 | ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); | ||
1079 | |||
1080 | } else if (ECANCELED == kop.crk_status) { | ||
799 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); | 1081 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); |
1082 | printf("OCF hardware operation cancelled. Running in Software\n"); | ||
800 | ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); | 1083 | ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); |
801 | } | 1084 | } |
1085 | /* else cryptodev operation worked ok ==> ret = 1*/ | ||
1086 | |||
802 | err: | 1087 | err: |
803 | zapparams(&kop); | 1088 | zapparams(&kop); |
804 | return (ret); | 1089 | return (ret); |
@@ -934,7 +1219,8 @@ cryptodev_dsa_verify(const unsigned char *dgst, int dlen, | |||
934 | kop.crk_iparams = 7; | 1219 | kop.crk_iparams = 7; |
935 | 1220 | ||
936 | if (cryptodev_asym(&kop, 0, NULL, 0, NULL) == 0) { | 1221 | if (cryptodev_asym(&kop, 0, NULL, 0, NULL) == 0) { |
937 | dsaret = kop.crk_status; | 1222 | /*OCF success value is 0, if not zero, change dsaret to fail*/ |
1223 | if(0 != kop.crk_status) dsaret = 0; | ||
938 | } else { | 1224 | } else { |
939 | const DSA_METHOD *meth = DSA_OpenSSL(); | 1225 | const DSA_METHOD *meth = DSA_OpenSSL(); |
940 | 1226 | ||
@@ -994,7 +1280,7 @@ cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) | |||
994 | goto err; | 1280 | goto err; |
995 | kop.crk_iparams = 3; | 1281 | kop.crk_iparams = 3; |
996 | 1282 | ||
997 | kop.crk_param[3].crp_p = key; | 1283 | kop.crk_param[3].crp_p = (caddr_t) key; |
998 | kop.crk_param[3].crp_nbits = keylen * 8; | 1284 | kop.crk_param[3].crp_nbits = keylen * 8; |
999 | kop.crk_oparams = 1; | 1285 | kop.crk_oparams = 1; |
1000 | 1286 | ||
@@ -1025,7 +1311,7 @@ static DH_METHOD cryptodev_dh = { | |||
1025 | * but I expect we'll want some options soon. | 1311 | * but I expect we'll want some options soon. |
1026 | */ | 1312 | */ |
1027 | static int | 1313 | static int |
1028 | cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | 1314 | cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)) |
1029 | { | 1315 | { |
1030 | #ifdef HAVE_SYSLOG_R | 1316 | #ifdef HAVE_SYSLOG_R |
1031 | struct syslog_data sd = SYSLOG_DATA_INIT; | 1317 | struct syslog_data sd = SYSLOG_DATA_INIT; |
diff --git a/src/lib/libcrypto/err/Makefile b/src/lib/libcrypto/err/Makefile index 91d1379d41..862b23ba17 100644 --- a/src/lib/libcrypto/err/Makefile +++ b/src/lib/libcrypto/err/Makefile | |||
@@ -17,8 +17,8 @@ TEST= | |||
17 | APPS= | 17 | APPS= |
18 | 18 | ||
19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
20 | LIBSRC=err.c err_def.c err_all.c err_prn.c err_str.c err_bio.c | 20 | LIBSRC=err.c err_all.c err_prn.c |
21 | LIBOBJ=err.o err_def.o err_all.o err_prn.o err_str.o err_bio.o | 21 | LIBOBJ=err.o err_all.o err_prn.o |
22 | 22 | ||
23 | SRC= $(LIBSRC) | 23 | SRC= $(LIBSRC) |
24 | 24 | ||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
@@ -83,37 +83,24 @@ err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | |||
83 | err.o: ../cryptlib.h err.c | 83 | err.o: ../cryptlib.h err.c |
84 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 84 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
85 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 85 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
86 | err_all.o: ../../include/openssl/cms.h ../../include/openssl/comp.h | ||
86 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 87 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
87 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 88 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
88 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 89 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
89 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 90 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
90 | err_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h | 91 | err_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
91 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 92 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
92 | err_all.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 93 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
93 | err_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 94 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
94 | err_all.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 95 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
95 | err_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 96 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h |
96 | err_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 97 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
97 | err_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 98 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
98 | err_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 99 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
99 | err_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 100 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
100 | err_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 101 | err_all.o: ../../include/openssl/ts.h ../../include/openssl/ui.h |
101 | err_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 102 | err_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
102 | err_all.o: ../../include/openssl/x509v3.h err_all.c | 103 | err_all.o: ../../include/openssl/x509v3.h err_all.c |
103 | err_bio.o: ../../e_os.h ../../include/openssl/bio.h | ||
104 | err_bio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
105 | err_bio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
106 | err_bio.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
107 | err_bio.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
108 | err_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
109 | err_bio.o: ../../include/openssl/symhacks.h ../cryptlib.h err_bio.c | ||
110 | err_def.o: ../../e_os.h ../../include/openssl/bio.h | ||
111 | err_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
112 | err_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
113 | err_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
114 | err_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
115 | err_def.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
116 | err_def.o: ../../include/openssl/symhacks.h ../cryptlib.h err_def.c | ||
117 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | 104 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h |
118 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 105 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
119 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 106 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
@@ -121,10 +108,3 @@ err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
121 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 108 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
122 | err_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 109 | err_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
123 | err_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h err_prn.c | 110 | err_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h err_prn.c |
124 | err_str.o: ../../e_os.h ../../include/openssl/bio.h | ||
125 | err_str.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
126 | err_str.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
127 | err_str.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
128 | err_str.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
129 | err_str.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
130 | err_str.o: ../../include/openssl/symhacks.h ../cryptlib.h err_str.c | ||
diff --git a/src/lib/libcrypto/hmac/Makefile b/src/lib/libcrypto/hmac/Makefile index 5cfa37d99c..0e91709f64 100644 --- a/src/lib/libcrypto/hmac/Makefile +++ b/src/lib/libcrypto/hmac/Makefile | |||
@@ -17,8 +17,8 @@ TEST=hmactest.c | |||
17 | APPS= | 17 | APPS= |
18 | 18 | ||
19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
20 | LIBSRC=hmac.c | 20 | LIBSRC=hmac.c hm_ameth.c hm_pmeth.c |
21 | LIBOBJ=hmac.o | 21 | LIBOBJ=hmac.o hm_ameth.o hm_pmeth.o |
22 | 22 | ||
23 | SRC= $(LIBSRC) | 23 | SRC= $(LIBSRC) |
24 | 24 | ||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
@@ -74,13 +74,37 @@ clean: | |||
74 | 74 | ||
75 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 75 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
76 | 76 | ||
77 | hm_ameth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
78 | hm_ameth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
79 | hm_ameth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
80 | hm_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
81 | hm_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
82 | hm_ameth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
83 | hm_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
84 | hm_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
85 | hm_ameth.o: ../../include/openssl/symhacks.h ../asn1/asn1_locl.h ../cryptlib.h | ||
86 | hm_ameth.o: hm_ameth.c | ||
87 | hm_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
88 | hm_pmeth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
89 | hm_pmeth.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
90 | hm_pmeth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
91 | hm_pmeth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
92 | hm_pmeth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
93 | hm_pmeth.o: ../../include/openssl/hmac.h ../../include/openssl/lhash.h | ||
94 | hm_pmeth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
95 | hm_pmeth.o: ../../include/openssl/opensslconf.h | ||
96 | hm_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
97 | hm_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
98 | hm_pmeth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
99 | hm_pmeth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
100 | hm_pmeth.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
101 | hm_pmeth.o: ../cryptlib.h ../evp/evp_locl.h hm_pmeth.c | ||
77 | hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 102 | hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
78 | hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 103 | hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
79 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 104 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
80 | hmac.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 105 | hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
81 | hmac.o: ../../include/openssl/hmac.h ../../include/openssl/lhash.h | 106 | hmac.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
82 | hmac.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 107 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
83 | hmac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 108 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
84 | hmac.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 109 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
85 | hmac.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 110 | hmac.o: ../../include/openssl/symhacks.h ../cryptlib.h hmac.c |
86 | hmac.o: ../cryptlib.h hmac.c | ||
diff --git a/src/lib/libcrypto/idea/Makefile b/src/lib/libcrypto/idea/Makefile index 55c0d4dbff..b2e7add666 100644 --- a/src/lib/libcrypto/idea/Makefile +++ b/src/lib/libcrypto/idea/Makefile | |||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
@@ -82,9 +82,5 @@ i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | |||
82 | i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h | 82 | i_ecb.o: ../../include/openssl/opensslv.h i_ecb.c idea_lcl.h |
83 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | 83 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
84 | i_ofb64.o: i_ofb64.c idea_lcl.h | 84 | i_ofb64.o: i_ofb64.c idea_lcl.h |
85 | i_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 85 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
86 | i_skey.o: ../../include/openssl/fips.h ../../include/openssl/idea.h | ||
87 | i_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
88 | i_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
89 | i_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
90 | i_skey.o: i_skey.c idea_lcl.h | 86 | i_skey.o: i_skey.c idea_lcl.h |
diff --git a/src/lib/libcrypto/krb5/Makefile b/src/lib/libcrypto/krb5/Makefile index 8efb9e8910..14077390d6 100644 --- a/src/lib/libcrypto/krb5/Makefile +++ b/src/lib/libcrypto/krb5/Makefile | |||
@@ -34,7 +34,7 @@ top: | |||
34 | all: lib | 34 | all: lib |
35 | 35 | ||
36 | lib: $(LIBOBJ) | 36 | lib: $(LIBOBJ) |
37 | $(ARX) $(LIB) $(LIBOBJ) | 37 | $(AR) $(LIB) $(LIBOBJ) |
38 | $(RANLIB) $(LIB) || echo Never mind. | 38 | $(RANLIB) $(LIB) || echo Never mind. |
39 | @touch lib | 39 | @touch lib |
40 | 40 | ||
diff --git a/src/lib/libcrypto/lhash/Makefile b/src/lib/libcrypto/lhash/Makefile index 35f0932971..82bddac474 100644 --- a/src/lib/libcrypto/lhash/Makefile +++ b/src/lib/libcrypto/lhash/Makefile | |||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
diff --git a/src/lib/libcrypto/md2/Makefile b/src/lib/libcrypto/md2/Makefile index 7f43321ab2..17f878aeb7 100644 --- a/src/lib/libcrypto/md2/Makefile +++ b/src/lib/libcrypto/md2/Makefile | |||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
@@ -74,9 +74,7 @@ clean: | |||
74 | 74 | ||
75 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 75 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
76 | 76 | ||
77 | md2_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 77 | md2_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
78 | md2_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
79 | md2_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
80 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h | 78 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h |
81 | md2_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 79 | md2_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
82 | md2_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 80 | md2_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
diff --git a/src/lib/libcrypto/md4/Makefile b/src/lib/libcrypto/md4/Makefile index 0bc4896585..c94a1398ed 100644 --- a/src/lib/libcrypto/md4/Makefile +++ b/src/lib/libcrypto/md4/Makefile | |||
@@ -34,7 +34,7 @@ top: | |||
34 | all: lib | 34 | all: lib |
35 | 35 | ||
36 | lib: $(LIBOBJ) | 36 | lib: $(LIBOBJ) |
37 | $(ARX) $(LIB) $(LIBOBJ) | 37 | $(AR) $(LIB) $(LIBOBJ) |
38 | $(RANLIB) $(LIB) || echo Never mind. | 38 | $(RANLIB) $(LIB) || echo Never mind. |
39 | @touch lib | 39 | @touch lib |
40 | 40 | ||
@@ -69,19 +69,16 @@ depend: | |||
69 | dclean: | 69 | dclean: |
70 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 70 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
71 | mv -f Makefile.new $(MAKEFILE) | 71 | mv -f Makefile.new $(MAKEFILE) |
72 | rm -f ../../include/openssl/$(EXHEADER) ../../test/$(TEST) ../../apps/$(APPS) | ||
72 | 73 | ||
73 | clean: | 74 | clean: |
74 | rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 75 | rm -f asm/mx86unix.cpp *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
75 | 76 | ||
76 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 77 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
77 | 78 | ||
78 | md4_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 79 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h |
79 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 80 | md4_dgst.o: ../../include/openssl/opensslconf.h |
80 | md4_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 81 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c |
81 | md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | ||
82 | md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
83 | md4_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
84 | md4_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md4_dgst.c | ||
85 | md4_dgst.o: md4_locl.h | 82 | md4_dgst.o: md4_locl.h |
86 | md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 83 | md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
87 | md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 84 | md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h |
diff --git a/src/lib/libcrypto/md5/Makefile b/src/lib/libcrypto/md5/Makefile index 3c450fcfc0..9858d53d31 100644 --- a/src/lib/libcrypto/md5/Makefile +++ b/src/lib/libcrypto/md5/Makefile | |||
@@ -38,21 +38,19 @@ top: | |||
38 | all: lib | 38 | all: lib |
39 | 39 | ||
40 | lib: $(LIBOBJ) | 40 | lib: $(LIBOBJ) |
41 | $(ARX) $(LIB) $(LIBOBJ) | 41 | $(AR) $(LIB) $(LIBOBJ) |
42 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 43 | @touch lib |
44 | 44 | ||
45 | # ELF | 45 | md5-586.s: asm/md5-586.pl ../perlasm/x86asm.pl |
46 | mx86-elf.s: asm/md5-586.pl ../perlasm/x86asm.pl | 46 | $(PERL) asm/md5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ |
47 | (cd asm; $(PERL) md5-586.pl elf $(CFLAGS) > ../$@) | ||
48 | # COFF | ||
49 | mx86-cof.s: asm/md5-586.pl ../perlasm/x86asm.pl | ||
50 | (cd asm; $(PERL) md5-586.pl coff $(CFLAGS) > ../$@) | ||
51 | # a.out | ||
52 | mx86-out.s: asm/md5-586.pl ../perlasm/x86asm.pl | ||
53 | (cd asm; $(PERL) md5-586.pl a.out $(CFLAGS) > ../$@) | ||
54 | 47 | ||
55 | md5-x86_64.s: asm/md5-x86_64.pl; $(PERL) asm/md5-x86_64.pl $@ | 48 | md5-x86_64.s: asm/md5-x86_64.pl |
49 | $(PERL) asm/md5-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
50 | |||
51 | md5-ia64.s: asm/md5-ia64.S | ||
52 | $(CC) $(CFLAGS) -E asm/md5-ia64.S | \ | ||
53 | $(PERL) -ne 's/;\s+/;\n/g; print;' > $@ | ||
56 | 54 | ||
57 | files: | 55 | files: |
58 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -91,13 +89,9 @@ clean: | |||
91 | 89 | ||
92 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
93 | 91 | ||
94 | md5_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 92 | md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md5.h |
95 | md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 93 | md5_dgst.o: ../../include/openssl/opensslconf.h |
96 | md5_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 94 | md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c |
97 | md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | ||
98 | md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
99 | md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
100 | md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c | ||
101 | md5_dgst.o: md5_locl.h | 95 | md5_dgst.o: md5_locl.h |
102 | md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 96 | md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
103 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | 97 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h |
diff --git a/src/lib/libcrypto/objects/Makefile b/src/lib/libcrypto/objects/Makefile index 25e8b23b5d..a8aedbd422 100644 --- a/src/lib/libcrypto/objects/Makefile +++ b/src/lib/libcrypto/objects/Makefile | |||
@@ -18,23 +18,23 @@ TEST= | |||
18 | APPS= | 18 | APPS= |
19 | 19 | ||
20 | LIB=$(TOP)/libcrypto.a | 20 | LIB=$(TOP)/libcrypto.a |
21 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c | 21 | LIBSRC= o_names.c obj_dat.c obj_lib.c obj_err.c obj_xref.c |
22 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o | 22 | LIBOBJ= o_names.o obj_dat.o obj_lib.o obj_err.o obj_xref.o |
23 | 23 | ||
24 | SRC= $(LIBSRC) | 24 | SRC= $(LIBSRC) |
25 | 25 | ||
26 | EXHEADER= objects.h obj_mac.h | 26 | EXHEADER= objects.h obj_mac.h |
27 | HEADER= $(EXHEADER) obj_dat.h | 27 | HEADER= $(EXHEADER) obj_dat.h obj_xref.h |
28 | 28 | ||
29 | ALL= $(GENERAL) $(SRC) $(HEADER) | 29 | ALL= $(GENERAL) $(SRC) $(HEADER) |
30 | 30 | ||
31 | top: | 31 | top: |
32 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | 32 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) |
33 | 33 | ||
34 | all: obj_dat.h lib | 34 | all: obj_dat.h obj_xref.h lib |
35 | 35 | ||
36 | lib: $(LIBOBJ) | 36 | lib: $(LIBOBJ) |
37 | $(ARX) $(LIB) $(LIBOBJ) | 37 | $(AR) $(LIB) $(LIBOBJ) |
38 | $(RANLIB) $(LIB) || echo Never mind. | 38 | $(RANLIB) $(LIB) || echo Never mind. |
39 | @touch lib | 39 | @touch lib |
40 | 40 | ||
@@ -46,6 +46,10 @@ obj_mac.h: objects.pl objects.txt obj_mac.num | |||
46 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h | 46 | $(PERL) objects.pl objects.txt obj_mac.num obj_mac.h |
47 | @sleep 1; touch obj_mac.h; sleep 1 | 47 | @sleep 1; touch obj_mac.h; sleep 1 |
48 | 48 | ||
49 | obj_xref.h: objxref.pl obj_xref.txt obj_mac.num | ||
50 | $(PERL) objxref.pl obj_mac.num obj_xref.txt > obj_xref.h | ||
51 | @sleep 1; touch obj_xref.h; sleep 1 | ||
52 | |||
49 | files: | 53 | files: |
50 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 54 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
51 | 55 | ||
@@ -117,3 +121,10 @@ obj_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
117 | obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 121 | obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
118 | obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 122 | obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
119 | obj_lib.o: ../cryptlib.h obj_lib.c | 123 | obj_lib.o: ../cryptlib.h obj_lib.c |
124 | obj_xref.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
125 | obj_xref.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
126 | obj_xref.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
127 | obj_xref.o: ../../include/openssl/opensslconf.h | ||
128 | obj_xref.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
129 | obj_xref.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
130 | obj_xref.o: ../../include/openssl/symhacks.h obj_xref.c obj_xref.h | ||
diff --git a/src/lib/libcrypto/ocsp/Makefile b/src/lib/libcrypto/ocsp/Makefile index 30a00b3372..60c414cf4d 100644 --- a/src/lib/libcrypto/ocsp/Makefile +++ b/src/lib/libcrypto/ocsp/Makefile | |||
@@ -36,7 +36,7 @@ top: | |||
36 | all: lib | 36 | all: lib |
37 | 37 | ||
38 | lib: $(LIBOBJ) | 38 | lib: $(LIBOBJ) |
39 | $(ARX) $(LIB) $(LIBOBJ) | 39 | $(AR) $(LIB) $(LIBOBJ) |
40 | $(RANLIB) $(LIB) || echo Never mind. | 40 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 41 | @touch lib |
42 | 42 | ||
@@ -82,10 +82,9 @@ ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
82 | ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 82 | ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
83 | ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 83 | ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
84 | ocsp_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 84 | ocsp_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
85 | ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 85 | ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
86 | ocsp_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 86 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
87 | ocsp_asn.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 87 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
88 | ocsp_asn.o: ../../include/openssl/opensslconf.h | ||
89 | ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 88 | ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
90 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 89 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
91 | ocsp_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 90 | ocsp_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -98,25 +97,24 @@ ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
98 | ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 97 | ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
99 | ocsp_cl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 98 | ocsp_cl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
100 | ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 99 | ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
101 | ocsp_cl.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 100 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
102 | ocsp_cl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 101 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
103 | ocsp_cl.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 102 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
104 | ocsp_cl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 103 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
105 | ocsp_cl.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 104 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
106 | ocsp_cl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 105 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
107 | ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 106 | ocsp_cl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
108 | ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 107 | ocsp_cl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
109 | ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 108 | ocsp_cl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
110 | ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c | 109 | ocsp_cl.o: ../cryptlib.h ocsp_cl.c |
111 | ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 110 | ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
112 | ocsp_err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 111 | ocsp_err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
113 | ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 112 | ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
114 | ocsp_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 113 | ocsp_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
115 | ocsp_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 114 | ocsp_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
116 | ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 115 | ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
117 | ocsp_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 116 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
118 | ocsp_err.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 117 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
119 | ocsp_err.o: ../../include/openssl/opensslconf.h | ||
120 | ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 118 | ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
121 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 119 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
122 | ocsp_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 120 | ocsp_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -129,9 +127,9 @@ ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
129 | ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 127 | ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
130 | ocsp_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 128 | ocsp_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
131 | ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 129 | ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
132 | ocsp_ext.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 130 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
133 | ocsp_ext.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 131 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
134 | ocsp_ext.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 132 | ocsp_ext.o: ../../include/openssl/opensslconf.h |
135 | ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 133 | ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
136 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 134 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
137 | ocsp_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 135 | ocsp_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -144,22 +142,21 @@ ocsp_ht.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
144 | ocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 142 | ocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
145 | ocsp_ht.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 143 | ocsp_ht.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
146 | ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 144 | ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
147 | ocsp_ht.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 145 | ocsp_ht.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
148 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 146 | ocsp_ht.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
149 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 147 | ocsp_ht.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
150 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 | ocsp_ht.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
151 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 149 | ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
152 | ocsp_ht.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
153 | ocsp_ht.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 151 | ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
154 | ocsp_ht.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 152 | ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c |
155 | ocsp_ht.o: ocsp_ht.c | ||
156 | ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 153 | ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
157 | ocsp_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 154 | ocsp_lib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
158 | ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 155 | ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
159 | ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 156 | ocsp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
160 | ocsp_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 157 | ocsp_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
161 | ocsp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 158 | ocsp_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
162 | ocsp_lib.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 159 | ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
163 | ocsp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 160 | ocsp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
164 | ocsp_lib.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 161 | ocsp_lib.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
165 | ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 162 | ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
@@ -174,10 +171,9 @@ ocsp_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
174 | ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 171 | ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
175 | ocsp_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 172 | ocsp_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
176 | ocsp_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 173 | ocsp_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
177 | ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 174 | ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
178 | ocsp_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 175 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
179 | ocsp_prn.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 176 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
180 | ocsp_prn.o: ../../include/openssl/opensslconf.h | ||
181 | ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 177 | ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
182 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 178 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
183 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 179 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
@@ -191,9 +187,9 @@ ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
191 | ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 187 | ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
192 | ocsp_srv.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 188 | ocsp_srv.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
193 | ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 189 | ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
194 | ocsp_srv.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 190 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
195 | ocsp_srv.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 191 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
196 | ocsp_srv.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 192 | ocsp_srv.o: ../../include/openssl/opensslconf.h |
197 | ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 193 | ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
198 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 194 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
199 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 195 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
@@ -206,10 +202,9 @@ ocsp_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
206 | ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 202 | ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
207 | ocsp_vfy.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 203 | ocsp_vfy.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
208 | ocsp_vfy.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 204 | ocsp_vfy.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
209 | ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 205 | ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
210 | ocsp_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 206 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
211 | ocsp_vfy.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 207 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
212 | ocsp_vfy.o: ../../include/openssl/opensslconf.h | ||
213 | ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 208 | ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
214 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 209 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
215 | ocsp_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 210 | ocsp_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
diff --git a/src/lib/libcrypto/pem/Makefile b/src/lib/libcrypto/pem/Makefile index 669f36612c..2cc7801529 100644 --- a/src/lib/libcrypto/pem/Makefile +++ b/src/lib/libcrypto/pem/Makefile | |||
@@ -18,10 +18,10 @@ APPS= | |||
18 | 18 | ||
19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
20 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \ | 20 | LIBSRC= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c \ |
21 | pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c | 21 | pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c pvkfmt.c |
22 | 22 | ||
23 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \ | 23 | LIBOBJ= pem_sign.o pem_seal.o pem_info.o pem_lib.o pem_all.o pem_err.o \ |
24 | pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o | 24 | pem_x509.o pem_xaux.o pem_oth.o pem_pk8.o pem_pkey.o pvkfmt.o |
25 | 25 | ||
26 | SRC= $(LIBSRC) | 26 | SRC= $(LIBSRC) |
27 | 27 | ||
@@ -36,7 +36,7 @@ top: | |||
36 | all: lib | 36 | all: lib |
37 | 37 | ||
38 | lib: $(LIBOBJ) | 38 | lib: $(LIBOBJ) |
39 | $(ARX) $(LIB) $(LIBOBJ) | 39 | $(AR) $(LIB) $(LIBOBJ) |
40 | $(RANLIB) $(LIB) || echo Never mind. | 40 | $(RANLIB) $(LIB) || echo Never mind. |
41 | @touch lib | 41 | @touch lib |
42 | 42 | ||
@@ -83,39 +83,36 @@ pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | |||
83 | pem_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 83 | pem_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
84 | pem_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 84 | pem_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
85 | pem_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 85 | pem_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
86 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 86 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
87 | pem_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 87 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
88 | pem_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 88 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
89 | pem_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 89 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
90 | pem_all.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 90 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
91 | pem_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 91 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
92 | pem_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 92 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
93 | pem_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 93 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
94 | pem_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 94 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c |
95 | pem_all.o: ../cryptlib.h pem_all.c | ||
96 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 95 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
97 | pem_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 96 | pem_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
98 | pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 97 | pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
99 | pem_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 98 | pem_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
100 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 99 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
101 | pem_err.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 100 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
102 | pem_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 101 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
103 | pem_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 102 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
104 | pem_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 103 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
105 | pem_err.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 104 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
106 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 105 | pem_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
107 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 106 | pem_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
108 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 107 | pem_err.o: ../../include/openssl/x509_vfy.h pem_err.c |
109 | pem_err.o: pem_err.c | ||
110 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h | 108 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h |
111 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 109 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
112 | pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | 110 | pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
113 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 111 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
114 | pem_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 112 | pem_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
115 | pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 113 | pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
116 | pem_info.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 114 | pem_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
117 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 115 | pem_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
118 | pem_info.o: ../../include/openssl/opensslconf.h | ||
119 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 116 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
120 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 117 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
121 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 118 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
@@ -128,8 +125,8 @@ pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
128 | pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 125 | pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
129 | pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 126 | pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
130 | pem_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 127 | pem_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
131 | pem_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 128 | pem_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
132 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 129 | pem_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
133 | pem_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 130 | pem_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
134 | pem_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 131 | pem_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
135 | pem_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 132 | pem_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
@@ -139,43 +136,43 @@ pem_lib.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | |||
139 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 136 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
140 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 137 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
141 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 138 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
142 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | 139 | pem_lib.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h |
140 | pem_lib.o: pem_lib.c | ||
143 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h | 141 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h |
144 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 142 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
145 | pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 143 | pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
146 | pem_oth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 144 | pem_oth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
147 | pem_oth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 145 | pem_oth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
148 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 146 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
149 | pem_oth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 147 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
150 | pem_oth.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 148 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
151 | pem_oth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 149 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
152 | pem_oth.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 150 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
153 | pem_oth.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 151 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
154 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 152 | pem_oth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
155 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 153 | pem_oth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
156 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 154 | pem_oth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_oth.c |
157 | pem_oth.o: ../cryptlib.h pem_oth.c | ||
158 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h | 155 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h |
159 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 156 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
160 | pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 157 | pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
161 | pem_pk8.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 158 | pem_pk8.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
162 | pem_pk8.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 159 | pem_pk8.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
163 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 160 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
164 | pem_pk8.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 161 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
165 | pem_pk8.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 162 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
166 | pem_pk8.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 163 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
167 | pem_pk8.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 164 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h |
168 | pem_pk8.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 165 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
169 | pem_pk8.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 166 | pem_pk8.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
170 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 167 | pem_pk8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
171 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 168 | pem_pk8.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
172 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | 169 | pem_pk8.o: ../cryptlib.h pem_pk8.c |
173 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 170 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
174 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 171 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
175 | pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 172 | pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
176 | pem_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 173 | pem_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
177 | pem_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 174 | pem_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
178 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 175 | pem_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
179 | pem_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 176 | pem_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
180 | pem_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 177 | pem_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
181 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 178 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
@@ -184,15 +181,16 @@ pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | |||
184 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 181 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
185 | pem_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 182 | pem_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
186 | pem_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 183 | pem_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
187 | pem_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pkey.c | 184 | pem_pkey.o: ../../include/openssl/x509_vfy.h ../asn1/asn1_locl.h ../cryptlib.h |
185 | pem_pkey.o: pem_pkey.c | ||
188 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h | 186 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h |
189 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 187 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
190 | pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 188 | pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
191 | pem_seal.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 189 | pem_seal.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
192 | pem_seal.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 190 | pem_seal.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
193 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 191 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
194 | pem_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 192 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
195 | pem_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 193 | pem_seal.o: ../../include/openssl/opensslconf.h |
196 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 194 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
197 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 195 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
198 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 196 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
@@ -205,9 +203,9 @@ pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
205 | pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 203 | pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
206 | pem_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 204 | pem_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
207 | pem_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 205 | pem_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
208 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 206 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
209 | pem_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 207 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
210 | pem_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 208 | pem_sign.o: ../../include/openssl/opensslconf.h |
211 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 209 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
212 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 210 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
213 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 211 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
@@ -220,9 +218,9 @@ pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
220 | pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 218 | pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
221 | pem_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 219 | pem_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
222 | pem_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 220 | pem_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
223 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 221 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
224 | pem_x509.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 222 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
225 | pem_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 223 | pem_x509.o: ../../include/openssl/opensslconf.h |
226 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 224 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
227 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 225 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
228 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 226 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
@@ -234,12 +232,27 @@ pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
234 | pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 232 | pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
235 | pem_xaux.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 233 | pem_xaux.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
236 | pem_xaux.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 234 | pem_xaux.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
237 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 235 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
238 | pem_xaux.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 236 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
239 | pem_xaux.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 237 | pem_xaux.o: ../../include/openssl/opensslconf.h |
240 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 238 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
241 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 239 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
242 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 240 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
243 | pem_xaux.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 241 | pem_xaux.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
244 | pem_xaux.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 242 | pem_xaux.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
245 | pem_xaux.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_xaux.c | 243 | pem_xaux.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_xaux.c |
244 | pvkfmt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
245 | pvkfmt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
246 | pvkfmt.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h | ||
247 | pvkfmt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
248 | pvkfmt.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
249 | pvkfmt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
250 | pvkfmt.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
251 | pvkfmt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
252 | pvkfmt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
253 | pvkfmt.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
254 | pvkfmt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
255 | pvkfmt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
256 | pvkfmt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
257 | pvkfmt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
258 | pvkfmt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pvkfmt.c | ||
diff --git a/src/lib/libcrypto/pkcs12/Makefile b/src/lib/libcrypto/pkcs12/Makefile index eed226b30d..3a7498fe7a 100644 --- a/src/lib/libcrypto/pkcs12/Makefile +++ b/src/lib/libcrypto/pkcs12/Makefile | |||
@@ -39,7 +39,7 @@ test: | |||
39 | all: lib | 39 | all: lib |
40 | 40 | ||
41 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
42 | $(ARX) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
43 | $(RANLIB) $(LIB) || echo Never mind. | 43 | $(RANLIB) $(LIB) || echo Never mind. |
44 | @touch lib | 44 | @touch lib |
45 | 45 | ||
@@ -85,37 +85,36 @@ p12_add.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
85 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 85 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
86 | p12_add.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 86 | p12_add.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
87 | p12_add.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 87 | p12_add.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
88 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 88 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
89 | p12_add.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 89 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
90 | p12_add.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 90 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
91 | p12_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 91 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
92 | p12_add.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 92 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
93 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 93 | p12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
94 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 94 | p12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
95 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 95 | p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_add.c |
96 | p12_add.o: ../cryptlib.h p12_add.c | ||
97 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h | 96 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h |
98 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 97 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
99 | p12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 98 | p12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
100 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 99 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
101 | p12_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 100 | p12_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
102 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 101 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
103 | p12_asn.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 102 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
104 | p12_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 103 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
105 | p12_asn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 104 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
106 | p12_asn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 105 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
107 | p12_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 106 | p12_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
108 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 107 | p12_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
109 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 108 | p12_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
110 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | 109 | p12_asn.o: ../cryptlib.h p12_asn.c |
111 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h | 110 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h |
112 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 111 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
113 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 112 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
114 | p12_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 113 | p12_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
115 | p12_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 114 | p12_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
116 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 115 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
117 | p12_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 116 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
118 | p12_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 117 | p12_attr.o: ../../include/openssl/opensslconf.h |
119 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 118 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
120 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 119 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
121 | p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 120 | p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -127,9 +126,9 @@ p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
127 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 126 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
128 | p12_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 127 | p12_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
129 | p12_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 128 | p12_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
130 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 129 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
131 | p12_crpt.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 130 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
132 | p12_crpt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 131 | p12_crpt.o: ../../include/openssl/opensslconf.h |
133 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 132 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
134 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 133 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
135 | p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 134 | p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -141,23 +140,22 @@ p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
141 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 140 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
142 | p12_crt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 141 | p12_crt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
143 | p12_crt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 142 | p12_crt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
144 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 143 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
145 | p12_crt.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 144 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
146 | p12_crt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 145 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
147 | p12_crt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 146 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
148 | p12_crt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 147 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
149 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 148 | p12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
150 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 149 | p12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
151 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 150 | p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crt.c |
152 | p12_crt.o: ../cryptlib.h p12_crt.c | ||
153 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h | 151 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h |
154 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 152 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
155 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 153 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
156 | p12_decr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 154 | p12_decr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
157 | p12_decr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 155 | p12_decr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
158 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 156 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
159 | p12_decr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 157 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
160 | p12_decr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 158 | p12_decr.o: ../../include/openssl/opensslconf.h |
161 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 159 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
162 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 160 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
163 | p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 161 | p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -169,9 +167,9 @@ p12_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
169 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 167 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
170 | p12_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 168 | p12_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
171 | p12_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 169 | p12_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
172 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 170 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
173 | p12_init.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 171 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
174 | p12_init.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 172 | p12_init.o: ../../include/openssl/opensslconf.h |
175 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 173 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
176 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 174 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
177 | p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 175 | p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -184,22 +182,22 @@ p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
184 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 182 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
185 | p12_key.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 183 | p12_key.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
186 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 184 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
187 | p12_key.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 185 | p12_key.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
188 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 186 | p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
189 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 187 | p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
190 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 188 | p12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
191 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 189 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
192 | p12_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 190 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
193 | p12_key.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 191 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
194 | p12_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_key.c | 192 | p12_key.o: ../cryptlib.h p12_key.c |
195 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h | 193 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h |
196 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 194 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
197 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 195 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
198 | p12_kiss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 196 | p12_kiss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
199 | p12_kiss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 197 | p12_kiss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
200 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 198 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
201 | p12_kiss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 199 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
202 | p12_kiss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 200 | p12_kiss.o: ../../include/openssl/opensslconf.h |
203 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 201 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
204 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 202 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
205 | p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 203 | p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -211,10 +209,9 @@ p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
211 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 209 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
212 | p12_mutl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 210 | p12_mutl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
213 | p12_mutl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 211 | p12_mutl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
214 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 212 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
215 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/lhash.h | 213 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
216 | p12_mutl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 214 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
217 | p12_mutl.o: ../../include/openssl/opensslconf.h | ||
218 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 215 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
219 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 216 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
220 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 217 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
@@ -226,9 +223,8 @@ p12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
226 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 223 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
227 | p12_npas.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 224 | p12_npas.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
228 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 225 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
229 | p12_npas.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 226 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
230 | p12_npas.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 227 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
231 | p12_npas.o: ../../include/openssl/opensslconf.h | ||
232 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 228 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
233 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 229 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
234 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 230 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
@@ -241,53 +237,50 @@ p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
241 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 237 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
242 | p12_p8d.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 238 | p12_p8d.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
243 | p12_p8d.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 239 | p12_p8d.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
244 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 240 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
245 | p12_p8d.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 241 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
246 | p12_p8d.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 242 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
247 | p12_p8d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 243 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
248 | p12_p8d.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 244 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
249 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 245 | p12_p8d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
250 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 246 | p12_p8d.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
251 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 247 | p12_p8d.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8d.c |
252 | p12_p8d.o: ../cryptlib.h p12_p8d.c | ||
253 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h | 248 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h |
254 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 249 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
255 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 250 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
256 | p12_p8e.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 251 | p12_p8e.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
257 | p12_p8e.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 252 | p12_p8e.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
258 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 253 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
259 | p12_p8e.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 254 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
260 | p12_p8e.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 255 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
261 | p12_p8e.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 256 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
262 | p12_p8e.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 257 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
263 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 258 | p12_p8e.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
264 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 259 | p12_p8e.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
265 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 260 | p12_p8e.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8e.c |
266 | p12_p8e.o: ../cryptlib.h p12_p8e.c | ||
267 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h | 261 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h |
268 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 262 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
269 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 263 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
270 | p12_utl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 264 | p12_utl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
271 | p12_utl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 265 | p12_utl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
272 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 266 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
273 | p12_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 267 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
274 | p12_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 268 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
275 | p12_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 269 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
276 | p12_utl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 270 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
277 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 271 | p12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
278 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 272 | p12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
279 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 273 | p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_utl.c |
280 | p12_utl.o: ../cryptlib.h p12_utl.c | ||
281 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 274 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
282 | pk12err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 275 | pk12err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
283 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 276 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
284 | pk12err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 277 | pk12err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
285 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 278 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
286 | pk12err.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 279 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
287 | pk12err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 280 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
288 | pk12err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 281 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
289 | pk12err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 282 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
290 | pk12err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 283 | pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
291 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 284 | pk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
292 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 285 | pk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
293 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c | 286 | pk12err.o: pk12err.c |
diff --git a/src/lib/libcrypto/pkcs7/Makefile b/src/lib/libcrypto/pkcs7/Makefile index 790d8edf36..56dc6823d1 100644 --- a/src/lib/libcrypto/pkcs7/Makefile +++ b/src/lib/libcrypto/pkcs7/Makefile | |||
@@ -21,9 +21,9 @@ APPS= | |||
21 | 21 | ||
22 | LIB=$(TOP)/libcrypto.a | 22 | LIB=$(TOP)/libcrypto.a |
23 | LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \ | 23 | LIBSRC= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c \ |
24 | pk7_mime.c | 24 | pk7_mime.c bio_pk7.c |
25 | LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \ | 25 | LIBOBJ= pk7_asn1.o pk7_lib.o pkcs7err.o pk7_doit.o pk7_smime.o pk7_attr.o \ |
26 | pk7_mime.o | 26 | pk7_mime.o bio_pk7.o |
27 | 27 | ||
28 | SRC= $(LIBSRC) | 28 | SRC= $(LIBSRC) |
29 | 29 | ||
@@ -54,7 +54,7 @@ verify: verify.o example.o lib | |||
54 | $(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS) | 54 | $(CC) $(CFLAGS) -o verify verify.o $(PEX_LIBS) example.o $(LIB) $(EX_LIBS) |
55 | 55 | ||
56 | lib: $(LIBOBJ) | 56 | lib: $(LIBOBJ) |
57 | $(ARX) $(LIB) $(LIBOBJ) | 57 | $(AR) $(LIB) $(LIBOBJ) |
58 | $(RANLIB) $(LIB) || echo Never mind. | 58 | $(RANLIB) $(LIB) || echo Never mind. |
59 | @touch lib | 59 | @touch lib |
60 | 60 | ||
@@ -95,26 +95,31 @@ clean: | |||
95 | 95 | ||
96 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 96 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
97 | 97 | ||
98 | bio_pk7.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
99 | bio_pk7.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
100 | bio_pk7.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
101 | bio_pk7.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
102 | bio_pk7.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
103 | bio_pk7.o: ../../include/openssl/symhacks.h bio_pk7.c | ||
98 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 104 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
99 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 105 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
100 | pk7_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 106 | pk7_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
101 | pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 107 | pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
102 | pk7_asn1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 108 | pk7_asn1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
103 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 109 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
104 | pk7_asn1.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 110 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
105 | pk7_asn1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 111 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
106 | pk7_asn1.o: ../../include/openssl/opensslconf.h | ||
107 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 112 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
108 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 113 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
109 | pk7_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 114 | pk7_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
110 | pk7_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 115 | pk7_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
111 | pk7_asn1.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_asn1.c | 116 | pk7_asn1.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_asn1.c |
112 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 117 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
113 | pk7_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 118 | pk7_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
114 | pk7_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 119 | pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
115 | pk7_attr.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 120 | pk7_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
116 | pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 121 | pk7_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
117 | pk7_attr.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 122 | pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
118 | pk7_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 123 | pk7_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
119 | pk7_attr.o: ../../include/openssl/opensslconf.h | 124 | pk7_attr.o: ../../include/openssl/opensslconf.h |
120 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 125 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
@@ -129,9 +134,8 @@ pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
129 | pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 134 | pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
130 | pk7_doit.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 135 | pk7_doit.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
131 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 136 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
132 | pk7_doit.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 137 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
133 | pk7_doit.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 138 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
134 | pk7_doit.o: ../../include/openssl/opensslconf.h | ||
135 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 139 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
136 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 140 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
137 | pk7_doit.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 141 | pk7_doit.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -143,22 +147,22 @@ pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
143 | pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 147 | pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
144 | pk7_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 148 | pk7_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
145 | pk7_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 149 | pk7_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
146 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 150 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
147 | pk7_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 151 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
148 | pk7_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 152 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
149 | pk7_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 153 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
150 | pk7_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 154 | pk7_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
151 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 155 | pk7_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
152 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 156 | pk7_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
153 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | 157 | pk7_lib.o: ../asn1/asn1_locl.h ../cryptlib.h pk7_lib.c |
154 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h | 158 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h |
155 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 159 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
156 | pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 160 | pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
157 | pk7_mime.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 161 | pk7_mime.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
158 | pk7_mime.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 162 | pk7_mime.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
159 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 163 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
160 | pk7_mime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 164 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
161 | pk7_mime.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 165 | pk7_mime.o: ../../include/openssl/opensslconf.h |
162 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 166 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
163 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 167 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
164 | pk7_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 168 | pk7_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
@@ -171,8 +175,8 @@ pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
171 | pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 175 | pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
172 | pk7_smime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 176 | pk7_smime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
173 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 177 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
174 | pk7_smime.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 178 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
175 | pk7_smime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 179 | pk7_smime.o: ../../include/openssl/objects.h |
176 | pk7_smime.o: ../../include/openssl/opensslconf.h | 180 | pk7_smime.o: ../../include/openssl/opensslconf.h |
177 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 181 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
178 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 182 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
diff --git a/src/lib/libcrypto/rc2/Makefile b/src/lib/libcrypto/rc2/Makefile index 4b6292b65f..73eac347e7 100644 --- a/src/lib/libcrypto/rc2/Makefile +++ b/src/lib/libcrypto/rc2/Makefile | |||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
@@ -78,11 +78,7 @@ rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | |||
78 | rc2_cbc.o: rc2_cbc.c rc2_locl.h | 78 | rc2_cbc.o: rc2_cbc.c rc2_locl.h |
79 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 79 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
80 | rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h | 80 | rc2_ecb.o: ../../include/openssl/rc2.h rc2_ecb.c rc2_locl.h |
81 | rc2_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 81 | rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h |
82 | rc2_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | ||
83 | rc2_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
84 | rc2_skey.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h | ||
85 | rc2_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
86 | rc2_skey.o: rc2_locl.h rc2_skey.c | 82 | rc2_skey.o: rc2_locl.h rc2_skey.c |
87 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | 83 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h |
88 | rc2cfb64.o: rc2_locl.h rc2cfb64.c | 84 | rc2cfb64.o: rc2_locl.h rc2cfb64.c |
diff --git a/src/lib/libcrypto/rc4/Makefile b/src/lib/libcrypto/rc4/Makefile index f0bd7678fc..264451a213 100644 --- a/src/lib/libcrypto/rc4/Makefile +++ b/src/lib/libcrypto/rc4/Makefile | |||
@@ -21,8 +21,8 @@ TEST=rc4test.c | |||
21 | APPS= | 21 | APPS= |
22 | 22 | ||
23 | LIB=$(TOP)/libcrypto.a | 23 | LIB=$(TOP)/libcrypto.a |
24 | LIBSRC=rc4_skey.c rc4_enc.c rc4_fblk.c | 24 | LIBSRC=rc4_skey.c rc4_enc.c |
25 | LIBOBJ=$(RC4_ENC) rc4_fblk.o | 25 | LIBOBJ=$(RC4_ENC) |
26 | 26 | ||
27 | SRC= $(LIBSRC) | 27 | SRC= $(LIBSRC) |
28 | 28 | ||
@@ -37,26 +37,26 @@ top: | |||
37 | all: lib | 37 | all: lib |
38 | 38 | ||
39 | lib: $(LIBOBJ) | 39 | lib: $(LIBOBJ) |
40 | $(ARX) $(LIB) $(LIBOBJ) | 40 | $(AR) $(LIB) $(LIBOBJ) |
41 | $(RANLIB) $(LIB) || echo Never mind. | 41 | $(RANLIB) $(LIB) || echo Never mind. |
42 | @touch lib | 42 | @touch lib |
43 | 43 | ||
44 | # ELF | 44 | rc4-586.s: asm/rc4-586.pl ../perlasm/x86asm.pl |
45 | rx86-elf.s: asm/rc4-586.pl ../perlasm/x86asm.pl | 45 | $(PERL) asm/rc4-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ |
46 | (cd asm; $(PERL) rc4-586.pl elf $(CFLAGS) > ../$@) | ||
47 | # COFF | ||
48 | rx86-cof.s: asm/rc4-586.pl ../perlasm/x86asm.pl | ||
49 | (cd asm; $(PERL) rc4-586.pl coff $(CFLAGS) > ../$@) | ||
50 | # a.out | ||
51 | rx86-out.s: asm/rc4-586.pl ../perlasm/x86asm.pl | ||
52 | (cd asm; $(PERL) rc4-586.pl a.out $(CFLAGS) > ../$@) | ||
53 | 46 | ||
54 | rc4-x86_64.s: asm/rc4-x86_64.pl; $(PERL) asm/rc4-x86_64.pl $@ | 47 | rc4-x86_64.s: asm/rc4-x86_64.pl |
48 | $(PERL) asm/rc4-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
55 | 49 | ||
56 | rc4-ia64.s: asm/rc4-ia64.S | 50 | rc4-ia64.S: asm/rc4-ia64.pl |
51 | $(PERL) asm/rc4-ia64.pl $(CFLAGS) > $@ | ||
52 | |||
53 | rc4-s390x.s: asm/rc4-s390x.pl | ||
54 | $(PERL) asm/rc4-s390x.pl > $@ | ||
55 | |||
56 | rc4-ia64.s: rc4-ia64.S | ||
57 | @case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \ | 57 | @case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \ |
58 | int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E asm/rc4-ia64.S > $@ ;; \ | 58 | int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E rc4-ia64.S > $@ ;; \ |
59 | char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E asm/rc4-ia64.S > $@ ;; \ | 59 | char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E rc4-ia64.S > $@ ;; \ |
60 | *) exit 1 ;; \ | 60 | *) exit 1 ;; \ |
61 | esac | 61 | esac |
62 | 62 | ||
@@ -105,20 +105,10 @@ rc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
105 | rc4_enc.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | 105 | rc4_enc.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h |
106 | rc4_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 106 | rc4_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
107 | rc4_enc.o: ../cryptlib.h rc4_enc.c rc4_locl.h | 107 | rc4_enc.o: ../cryptlib.h rc4_enc.c rc4_locl.h |
108 | rc4_fblk.o: ../../e_os.h ../../include/openssl/bio.h | ||
109 | rc4_fblk.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
110 | rc4_fblk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
111 | rc4_fblk.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
112 | rc4_fblk.o: ../../include/openssl/opensslconf.h | ||
113 | rc4_fblk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
114 | rc4_fblk.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | ||
115 | rc4_fblk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
116 | rc4_fblk.o: ../cryptlib.h rc4_fblk.c rc4_locl.h | ||
117 | rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h | 108 | rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h |
118 | rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 109 | rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
119 | rc4_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 110 | rc4_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
120 | rc4_skey.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 111 | rc4_skey.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
121 | rc4_skey.o: ../../include/openssl/opensslconf.h | ||
122 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 112 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
123 | rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | 113 | rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h |
124 | rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 114 | rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
diff --git a/src/lib/libcrypto/rc5/Makefile b/src/lib/libcrypto/rc5/Makefile index b4e21c9bb2..8a8b00eb89 100644 --- a/src/lib/libcrypto/rc5/Makefile +++ b/src/lib/libcrypto/rc5/Makefile | |||
@@ -12,8 +12,6 @@ MAKEFILE= Makefile | |||
12 | AR= ar r | 12 | AR= ar r |
13 | 13 | ||
14 | RC5_ENC= rc5_enc.o | 14 | RC5_ENC= rc5_enc.o |
15 | # or use | ||
16 | #DES_ENC= r586-elf.o | ||
17 | 15 | ||
18 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
19 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
@@ -40,19 +38,12 @@ top: | |||
40 | all: lib | 38 | all: lib |
41 | 39 | ||
42 | lib: $(LIBOBJ) | 40 | lib: $(LIBOBJ) |
43 | $(ARX) $(LIB) $(LIBOBJ) | 41 | $(AR) $(LIB) $(LIBOBJ) |
44 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
45 | @touch lib | 43 | @touch lib |
46 | 44 | ||
47 | # ELF | 45 | rc5-586.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
48 | r586-elf.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 46 | $(PERL) asm/rc5-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ |
49 | (cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > ../$@) | ||
50 | # COFF | ||
51 | r586-cof.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
52 | (cd asm; $(PERL) rc5-586.pl coff $(CFLAGS) > ../$@) | ||
53 | # a.out | ||
54 | r586-out.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
55 | (cd asm; $(PERL) rc5-586.pl a.out $(CFLAGS) > ../$@) | ||
56 | 47 | ||
57 | files: | 48 | files: |
58 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
diff --git a/src/lib/libcrypto/ripemd/Makefile b/src/lib/libcrypto/ripemd/Makefile index 6145f13699..d5b1067dbe 100644 --- a/src/lib/libcrypto/ripemd/Makefile +++ b/src/lib/libcrypto/ripemd/Makefile | |||
@@ -38,19 +38,12 @@ top: | |||
38 | all: lib | 38 | all: lib |
39 | 39 | ||
40 | lib: $(LIBOBJ) | 40 | lib: $(LIBOBJ) |
41 | $(ARX) $(LIB) $(LIBOBJ) | 41 | $(AR) $(LIB) $(LIBOBJ) |
42 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 43 | @touch lib |
44 | 44 | ||
45 | # ELF | 45 | rmd-586.s: asm/rmd-586.pl ../perlasm/x86asm.pl |
46 | rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl | 46 | $(PERL) asm/rmd-586.pl $(PERLASM_SCHEME) $(CFLAGS) > $@ |
47 | (cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > ../$@) | ||
48 | # COFF | ||
49 | rm86-cof.s: asm/rmd-586.pl ../perlasm/x86asm.pl | ||
50 | (cd asm; $(PERL) rmd-586.pl coff $(CFLAGS) > ../$@) | ||
51 | # a.out | ||
52 | rm86-out.s: asm/rmd-586.pl ../perlasm/x86asm.pl | ||
53 | (cd asm; $(PERL) rmd-586.pl a.out $(CFLAGS) > ../$@) | ||
54 | 47 | ||
55 | files: | 48 | files: |
56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 49 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -89,13 +82,8 @@ clean: | |||
89 | 82 | ||
90 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
91 | 84 | ||
92 | rmd_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 85 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
93 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 86 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h |
94 | rmd_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
95 | rmd_dgst.o: ../../include/openssl/opensslconf.h | ||
96 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
97 | rmd_dgst.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h | ||
98 | rmd_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
99 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h | 87 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h |
100 | rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 88 | rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
101 | rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 89 | rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
diff --git a/src/lib/libcrypto/sha/Makefile b/src/lib/libcrypto/sha/Makefile index f4741b9ee6..e6eccb05f9 100644 --- a/src/lib/libcrypto/sha/Makefile +++ b/src/lib/libcrypto/sha/Makefile | |||
@@ -38,25 +38,16 @@ top: | |||
38 | all: lib | 38 | all: lib |
39 | 39 | ||
40 | lib: $(LIBOBJ) | 40 | lib: $(LIBOBJ) |
41 | $(ARX) $(LIB) $(LIBOBJ) | 41 | $(AR) $(LIB) $(LIBOBJ) |
42 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
43 | @touch lib | 43 | @touch lib |
44 | 44 | ||
45 | # ELF | 45 | sha1-586.s: asm/sha1-586.pl ../perlasm/x86asm.pl |
46 | sx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl | 46 | $(PERL) asm/sha1-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ |
47 | (cd asm; $(PERL) sha1-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@) | 47 | sha256-586.s: asm/sha256-586.pl ../perlasm/x86asm.pl |
48 | s512sse2-elf.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl | 48 | $(PERL) asm/sha256-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ |
49 | (cd asm; $(PERL) sha512-sse2.pl elf $(CFLAGS) $(PROCESSOR) > ../$@) | 49 | sha512-586.s: asm/sha512-586.pl ../perlasm/x86asm.pl |
50 | # COFF | 50 | $(PERL) asm/sha512-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ |
51 | sx86-cof.s: asm/sha1-586.pl ../perlasm/x86asm.pl | ||
52 | (cd asm; $(PERL) sha1-586.pl coff $(CFLAGS) $(PROCESSOR) > ../$@) | ||
53 | s512sse2-cof.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl | ||
54 | (cd asm; $(PERL) sha512-sse2.pl coff $(CFLAGS) $(PROCESSOR) > ../$@) | ||
55 | # a.out | ||
56 | sx86-out.s: asm/sha1-586.pl ../perlasm/x86asm.pl | ||
57 | (cd asm; $(PERL) sha1-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@) | ||
58 | s512sse2-out.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl | ||
59 | (cd asm; $(PERL) sha512-sse2.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@) | ||
60 | 51 | ||
61 | sha1-ia64.s: asm/sha1-ia64.pl | 52 | sha1-ia64.s: asm/sha1-ia64.pl |
62 | (cd asm; $(PERL) sha1-ia64.pl ../$@ $(CFLAGS)) | 53 | (cd asm; $(PERL) sha1-ia64.pl ../$@ $(CFLAGS)) |
@@ -65,10 +56,25 @@ sha256-ia64.s: asm/sha512-ia64.pl | |||
65 | sha512-ia64.s: asm/sha512-ia64.pl | 56 | sha512-ia64.s: asm/sha512-ia64.pl |
66 | (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS)) | 57 | (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS)) |
67 | 58 | ||
59 | sha256-armv4.s: asm/sha256-armv4.pl | ||
60 | $(PERL) $< $@ | ||
61 | |||
68 | # Solaris make has to be explicitly told | 62 | # Solaris make has to be explicitly told |
69 | sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $@ | 63 | sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $(PERLASM_SCHEME) > $@ |
70 | sha256-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $@ | 64 | sha256-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $(PERLASM_SCHEME) $@ |
71 | sha512-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $@ | 65 | sha512-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $(PERLASM_SCHEME) $@ |
66 | sha1-sparcv9.s: asm/sha1-sparcv9.pl; $(PERL) asm/sha1-sparcv9.pl $@ $(CFLAGS) | ||
67 | sha256-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS) | ||
68 | sha512-sparcv9.s:asm/sha512-sparcv9.pl; $(PERL) asm/sha512-sparcv9.pl $@ $(CFLAGS) | ||
69 | |||
70 | sha1-ppc.s: asm/sha1-ppc.pl; $(PERL) asm/sha1-ppc.pl $(PERLASM_SCHEME) $@ | ||
71 | sha256-ppc.s: asm/sha512-ppc.pl; $(PERL) asm/sha512-ppc.pl $(PERLASM_SCHEME) $@ | ||
72 | sha512-ppc.s: asm/sha512-ppc.pl; $(PERL) asm/sha512-ppc.pl $(PERLASM_SCHEME) $@ | ||
73 | |||
74 | # GNU make "catch all" | ||
75 | sha1-%.s: asm/sha1-%.pl; $(PERL) $< $@ | ||
76 | sha256-%.s: asm/sha512-%.pl; $(PERL) $< $@ | ||
77 | sha512-%.s: asm/sha512-%.pl; $(PERL) $< $@ | ||
72 | 78 | ||
73 | files: | 79 | files: |
74 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 80 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -113,31 +119,24 @@ sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
113 | sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 119 | sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
114 | sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 120 | sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
115 | sha1_one.o: sha1_one.c | 121 | sha1_one.o: sha1_one.c |
116 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/fips.h | 122 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
117 | sha1dgst.o: ../../include/openssl/opensslconf.h | ||
118 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | 123 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h |
119 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h | 124 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h |
120 | sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 125 | sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
121 | sha256.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | 126 | sha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
122 | sha256.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 127 | sha256.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
123 | sha256.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 128 | sha256.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
124 | sha256.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 129 | sha256.o: ../../include/openssl/symhacks.h ../md32_common.h sha256.c |
125 | sha256.o: ../md32_common.h sha256.c | ||
126 | sha512.o: ../../e_os.h ../../include/openssl/bio.h | 130 | sha512.o: ../../e_os.h ../../include/openssl/bio.h |
127 | sha512.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 131 | sha512.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
128 | sha512.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 132 | sha512.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
129 | sha512.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 133 | sha512.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
130 | sha512.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 134 | sha512.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
131 | sha512.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 135 | sha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
132 | sha512.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 136 | sha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
133 | sha512.o: ../../include/openssl/symhacks.h ../cryptlib.h sha512.c | 137 | sha512.o: ../cryptlib.h sha512.c |
134 | sha_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 138 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
135 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 139 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h |
136 | sha_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
137 | sha_dgst.o: ../../include/openssl/opensslconf.h | ||
138 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
139 | sha_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
140 | sha_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
141 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h | 140 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h |
142 | sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 141 | sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
143 | sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 142 | sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
diff --git a/src/lib/libcrypto/stack/Makefile b/src/lib/libcrypto/stack/Makefile index 489a77b93c..5327692ac8 100644 --- a/src/lib/libcrypto/stack/Makefile +++ b/src/lib/libcrypto/stack/Makefile | |||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
diff --git a/src/lib/libcrypto/txt_db/Makefile b/src/lib/libcrypto/txt_db/Makefile index 87e57b49f6..e6f30331d8 100644 --- a/src/lib/libcrypto/txt_db/Makefile +++ b/src/lib/libcrypto/txt_db/Makefile | |||
@@ -33,7 +33,7 @@ top: | |||
33 | all: lib | 33 | all: lib |
34 | 34 | ||
35 | lib: $(LIBOBJ) | 35 | lib: $(LIBOBJ) |
36 | $(ARX) $(LIB) $(LIBOBJ) | 36 | $(AR) $(LIB) $(LIBOBJ) |
37 | $(RANLIB) $(LIB) || echo Never mind. | 37 | $(RANLIB) $(LIB) || echo Never mind. |
38 | @touch lib | 38 | @touch lib |
39 | 39 | ||
diff --git a/src/lib/libcrypto/ui/Makefile b/src/lib/libcrypto/ui/Makefile index 4755e206f6..a685659fb4 100644 --- a/src/lib/libcrypto/ui/Makefile +++ b/src/lib/libcrypto/ui/Makefile | |||
@@ -37,7 +37,7 @@ top: | |||
37 | all: lib | 37 | all: lib |
38 | 38 | ||
39 | lib: $(LIBOBJ) | 39 | lib: $(LIBOBJ) |
40 | $(ARX) $(LIB) $(LIBOBJ) | 40 | $(AR) $(LIB) $(LIBOBJ) |
41 | $(RANLIB) $(LIB) || echo Never mind. | 41 | $(RANLIB) $(LIB) || echo Never mind. |
42 | @touch lib | 42 | @touch lib |
43 | 43 | ||
diff --git a/src/lib/libcrypto/util/deltree.com b/src/lib/libcrypto/util/deltree.com new file mode 100644 index 0000000000..9f36b1a5e9 --- /dev/null +++ b/src/lib/libcrypto/util/deltree.com | |||
@@ -0,0 +1,34 @@ | |||
1 | $! DELTREE.COM | ||
2 | $ | ||
3 | $ call deltree 'p1' | ||
4 | $ exit $status | ||
5 | $ | ||
6 | $ deltree: subroutine ! P1 is a name of a directory | ||
7 | $ on control_y then goto dt_STOP | ||
8 | $ on warning then goto dt_exit | ||
9 | $ _dt_def = f$trnlnm("SYS$DISK")+f$directory() | ||
10 | $ if f$parse(p1) .eqs. "" then exit | ||
11 | $ set default 'f$parse(p1,,,"DEVICE")''f$parse(p1,,,"DIRECTORY")' | ||
12 | $ p1 = f$parse(p1,,,"NAME") + f$parse(p1,,,"TYPE") | ||
13 | $ _fp = f$parse(".DIR",p1) | ||
14 | $ dt_loop: | ||
15 | $ _f = f$search(_fp) | ||
16 | $ if _f .eqs. "" then goto dt_loopend | ||
17 | $ call deltree [.'f$parse(_f,,,"NAME")']*.* | ||
18 | $ goto dt_loop | ||
19 | $ dt_loopend: | ||
20 | $ _fp = f$parse(p1,".;*") | ||
21 | $ if f$search(_fp) .eqs. "" then goto dt_exit | ||
22 | $ set noon | ||
23 | $ set file/prot=(S:RWED,O:RWED,G:RWED,W:RWED) '_fp' | ||
24 | $ set on | ||
25 | $ delete/nolog '_fp' | ||
26 | $ dt_exit: | ||
27 | $ set default '_dt_def' | ||
28 | $ goto dt_end | ||
29 | $ dt_STOP: | ||
30 | $ set default '_dt_def' | ||
31 | $ stop/id="" | ||
32 | $ exit | ||
33 | $ dt_end: | ||
34 | $ endsubroutine | ||
diff --git a/src/lib/libcrypto/util/shlib_wrap.sh b/src/lib/libcrypto/util/shlib_wrap.sh index a2f62d696f..9416d593d2 100755 --- a/src/lib/libcrypto/util/shlib_wrap.sh +++ b/src/lib/libcrypto/util/shlib_wrap.sh | |||
@@ -80,7 +80,7 @@ if [ -f "$LIBCRYPTOSO" -a -z "$preload_var" ]; then | |||
80 | # it into a script makes it possible to do so on multi-ABI | 80 | # it into a script makes it possible to do so on multi-ABI |
81 | # platforms. | 81 | # platforms. |
82 | case "$SYSNAME" in | 82 | case "$SYSNAME" in |
83 | *BSD) LD_PRELOAD="$LIBCRYPTOSO:$LIBSSLSO" ;; # *BSD | 83 | *BSD|QNX) LD_PRELOAD="$LIBCRYPTOSO:$LIBSSLSO" ;; # *BSD, QNX |
84 | *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX | 84 | *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX |
85 | esac | 85 | esac |
86 | _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX | 86 | _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX |
@@ -88,4 +88,6 @@ if [ -f "$LIBCRYPTOSO" -a -z "$preload_var" ]; then | |||
88 | export LD_PRELOAD _RLD_LIST DYLD_INSERT_LIBRARIES | 88 | export LD_PRELOAD _RLD_LIST DYLD_INSERT_LIBRARIES |
89 | fi | 89 | fi |
90 | 90 | ||
91 | exec "$@" | 91 | cmd="$1${EXE_EXT}" |
92 | shift | ||
93 | exec "$cmd" "$@" | ||
diff --git a/src/lib/libcrypto/x509/Makefile b/src/lib/libcrypto/x509/Makefile index 464752b159..72c82278f4 100644 --- a/src/lib/libcrypto/x509/Makefile +++ b/src/lib/libcrypto/x509/Makefile | |||
@@ -43,12 +43,12 @@ top: | |||
43 | all: lib | 43 | all: lib |
44 | 44 | ||
45 | lib: $(LIBOBJ) | 45 | lib: $(LIBOBJ) |
46 | $(ARX) $(LIB) $(LIBOBJ) | 46 | $(AR) $(LIB) $(LIBOBJ) |
47 | $(RANLIB) $(LIB) || echo Never mind. | 47 | $(RANLIB) $(LIB) || echo Never mind. |
48 | @touch lib | 48 | @touch lib |
49 | 49 | ||
50 | files: | 50 | files: |
51 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 51 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
52 | 52 | ||
53 | links: | 53 | links: |
54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
@@ -89,37 +89,35 @@ by_dir.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
89 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 89 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
90 | by_dir.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 90 | by_dir.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
91 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 91 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
92 | by_dir.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 92 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
93 | by_dir.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 93 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
94 | by_dir.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 94 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
95 | by_dir.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 95 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
96 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 96 | by_dir.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
97 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 97 | by_dir.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
98 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 98 | by_dir.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_dir.c |
99 | by_dir.o: ../cryptlib.h by_dir.c | ||
100 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h | 99 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h |
101 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 100 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
102 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 101 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
103 | by_file.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 102 | by_file.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
104 | by_file.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 103 | by_file.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
105 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 104 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
106 | by_file.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 105 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
107 | by_file.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 106 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
108 | by_file.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 107 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
109 | by_file.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 108 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
110 | by_file.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 109 | by_file.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
111 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 110 | by_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
112 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 111 | by_file.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
113 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | 112 | by_file.o: ../cryptlib.h by_file.c |
114 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h | 113 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h |
115 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 114 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
116 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 115 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
117 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 116 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
118 | x509_att.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 117 | x509_att.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
119 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 118 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
120 | x509_att.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 119 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
121 | x509_att.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 120 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
122 | x509_att.o: ../../include/openssl/opensslconf.h | ||
123 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 121 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
124 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 122 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
125 | x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 123 | x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -132,9 +130,8 @@ x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
132 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 130 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
133 | x509_cmp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 131 | x509_cmp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
134 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 132 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
135 | x509_cmp.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 133 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
136 | x509_cmp.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 134 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
137 | x509_cmp.o: ../../include/openssl/opensslconf.h | ||
138 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 135 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
139 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 136 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
140 | x509_cmp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 137 | x509_cmp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -146,22 +143,22 @@ x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
146 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 143 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
147 | x509_d2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 144 | x509_d2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
148 | x509_d2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 145 | x509_d2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
149 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 146 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
150 | x509_d2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 147 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
151 | x509_d2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 148 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
152 | x509_d2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 149 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
153 | x509_d2.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 150 | x509_d2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
154 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 151 | x509_d2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
155 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 152 | x509_d2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
156 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | 153 | x509_d2.o: ../cryptlib.h x509_d2.c |
157 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h | 154 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h |
158 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 155 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
159 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 156 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
160 | x509_def.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 157 | x509_def.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
161 | x509_def.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 158 | x509_def.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
162 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 159 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
163 | x509_def.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 160 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
164 | x509_def.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 161 | x509_def.o: ../../include/openssl/opensslconf.h |
165 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 162 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
166 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 163 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
167 | x509_def.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 164 | x509_def.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -172,9 +169,8 @@ x509_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
172 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 169 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
173 | x509_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 170 | x509_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
174 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 171 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
175 | x509_err.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 172 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
176 | x509_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 173 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
177 | x509_err.o: ../../include/openssl/opensslconf.h | ||
178 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 174 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
179 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 175 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
180 | x509_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 176 | x509_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -186,9 +182,8 @@ x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
186 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 182 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
187 | x509_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 183 | x509_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
188 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 184 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
189 | x509_ext.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 185 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
190 | x509_ext.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 186 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
191 | x509_ext.o: ../../include/openssl/opensslconf.h | ||
192 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 187 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
193 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 188 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
194 | x509_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 189 | x509_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -201,22 +196,22 @@ x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
201 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 196 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
202 | x509_lu.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 197 | x509_lu.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
203 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 198 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
204 | x509_lu.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 199 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
205 | x509_lu.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 200 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
206 | x509_lu.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 201 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
207 | x509_lu.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 202 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
208 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 203 | x509_lu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
209 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 204 | x509_lu.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
210 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 205 | x509_lu.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
211 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | 206 | x509_lu.o: ../cryptlib.h x509_lu.c |
212 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h | 207 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h |
213 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 208 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
214 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 209 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
215 | x509_obj.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 210 | x509_obj.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
216 | x509_obj.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 211 | x509_obj.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
217 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 212 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
218 | x509_obj.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 213 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
219 | x509_obj.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 214 | x509_obj.o: ../../include/openssl/opensslconf.h |
220 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 215 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
221 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 216 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
222 | x509_obj.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 217 | x509_obj.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -228,21 +223,20 @@ x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
228 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 223 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
229 | x509_r2x.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 224 | x509_r2x.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
230 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 225 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
231 | x509_r2x.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 226 | x509_r2x.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
232 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 227 | x509_r2x.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
233 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
234 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 228 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
235 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 229 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
236 | x509_r2x.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 230 | x509_r2x.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
237 | x509_r2x.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 231 | x509_r2x.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
238 | x509_r2x.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_r2x.c | 232 | x509_r2x.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_r2x.c |
239 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h | 233 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h |
240 | x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 234 | x509_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
241 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 235 | x509_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
242 | x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 236 | x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
243 | x509_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 237 | x509_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
244 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 238 | x509_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
245 | x509_req.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 239 | x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
246 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 240 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
247 | x509_req.o: ../../include/openssl/opensslconf.h | 241 | x509_req.o: ../../include/openssl/opensslconf.h |
248 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 242 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
@@ -256,9 +250,9 @@ x509_set.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
256 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 250 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
257 | x509_set.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 251 | x509_set.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
258 | x509_set.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 252 | x509_set.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
259 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 253 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
260 | x509_set.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 254 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
261 | x509_set.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 255 | x509_set.o: ../../include/openssl/opensslconf.h |
262 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 256 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
263 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 257 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
264 | x509_set.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 258 | x509_set.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -270,9 +264,8 @@ x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
270 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 264 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
271 | x509_trs.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 265 | x509_trs.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
272 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 266 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
273 | x509_trs.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 267 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
274 | x509_trs.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 268 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
275 | x509_trs.o: ../../include/openssl/opensslconf.h | ||
276 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 269 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
277 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 270 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
278 | x509_trs.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 271 | x509_trs.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -284,9 +277,9 @@ x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
284 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 277 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
285 | x509_txt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 278 | x509_txt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
286 | x509_txt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 279 | x509_txt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
287 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 280 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
288 | x509_txt.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 281 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
289 | x509_txt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 282 | x509_txt.o: ../../include/openssl/opensslconf.h |
290 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 283 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
291 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 284 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
292 | x509_txt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 285 | x509_txt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -298,23 +291,22 @@ x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
298 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 291 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
299 | x509_v3.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 292 | x509_v3.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
300 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 293 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
301 | x509_v3.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 294 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
302 | x509_v3.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 295 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
303 | x509_v3.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 296 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
304 | x509_v3.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 297 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
305 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 298 | x509_v3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
306 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 299 | x509_v3.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
307 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 300 | x509_v3.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
308 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | 301 | x509_v3.o: ../cryptlib.h x509_v3.c |
309 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h | 302 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h |
310 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 303 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
311 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 304 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
312 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 305 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
313 | x509_vfy.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 306 | x509_vfy.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
314 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 307 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
315 | x509_vfy.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 308 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
316 | x509_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 309 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
317 | x509_vfy.o: ../../include/openssl/opensslconf.h | ||
318 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 310 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
319 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 311 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
320 | x509_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 312 | x509_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -327,9 +319,8 @@ x509_vpm.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
327 | x509_vpm.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 319 | x509_vpm.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
328 | x509_vpm.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 320 | x509_vpm.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
329 | x509_vpm.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 321 | x509_vpm.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
330 | x509_vpm.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 322 | x509_vpm.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
331 | x509_vpm.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 323 | x509_vpm.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
332 | x509_vpm.o: ../../include/openssl/opensslconf.h | ||
333 | x509_vpm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 324 | x509_vpm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
334 | x509_vpm.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 325 | x509_vpm.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
335 | x509_vpm.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 326 | x509_vpm.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -341,9 +332,9 @@ x509cset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
341 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 332 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
342 | x509cset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 333 | x509cset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
343 | x509cset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 334 | x509cset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
344 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 335 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
345 | x509cset.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 336 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
346 | x509cset.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 337 | x509cset.o: ../../include/openssl/opensslconf.h |
347 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 338 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
348 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 339 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
349 | x509cset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 340 | x509cset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -354,9 +345,9 @@ x509name.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
354 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 345 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
355 | x509name.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 346 | x509name.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
356 | x509name.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 347 | x509name.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
357 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 348 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
358 | x509name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 349 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
359 | x509name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 350 | x509name.o: ../../include/openssl/opensslconf.h |
360 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 351 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
361 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 352 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
362 | x509name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 353 | x509name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -367,9 +358,9 @@ x509rset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
367 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 358 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
368 | x509rset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 359 | x509rset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
369 | x509rset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 360 | x509rset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
370 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 361 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
371 | x509rset.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 362 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
372 | x509rset.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 363 | x509rset.o: ../../include/openssl/opensslconf.h |
373 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 364 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
374 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 365 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
375 | x509rset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 366 | x509rset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -380,9 +371,9 @@ x509spki.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
380 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 371 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
381 | x509spki.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 372 | x509spki.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
382 | x509spki.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 373 | x509spki.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
383 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 374 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
384 | x509spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 375 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
385 | x509spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 376 | x509spki.o: ../../include/openssl/opensslconf.h |
386 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 377 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
387 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 378 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
388 | x509spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 379 | x509spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -393,9 +384,9 @@ x509type.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
393 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 384 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
394 | x509type.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 385 | x509type.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
395 | x509type.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 386 | x509type.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
396 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 387 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
397 | x509type.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 388 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
398 | x509type.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 389 | x509type.o: ../../include/openssl/opensslconf.h |
399 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 390 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
400 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 391 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
401 | x509type.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 392 | x509type.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -406,12 +397,11 @@ x_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
406 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 397 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
407 | x_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 398 | x_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
408 | x_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 399 | x_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
409 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 400 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
410 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 401 | x_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
411 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 402 | x_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
412 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 403 | x_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
413 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 404 | x_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
414 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 405 | x_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
415 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 406 | x_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
416 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 407 | x_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_all.c |
417 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libcrypto/x509v3/Makefile b/src/lib/libcrypto/x509v3/Makefile index e71dc42f9f..556ef351bf 100644 --- a/src/lib/libcrypto/x509v3/Makefile +++ b/src/lib/libcrypto/x509v3/Makefile | |||
@@ -43,7 +43,7 @@ top: | |||
43 | all: lib | 43 | all: lib |
44 | 44 | ||
45 | lib: $(LIBOBJ) | 45 | lib: $(LIBOBJ) |
46 | $(ARX) $(LIB) $(LIBOBJ) | 46 | $(AR) $(LIB) $(LIBOBJ) |
47 | $(RANLIB) $(LIB) || echo Never mind. | 47 | $(RANLIB) $(LIB) || echo Never mind. |
48 | @touch lib | 48 | @touch lib |
49 | 49 | ||
@@ -90,8 +90,8 @@ pcy_cache.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
90 | pcy_cache.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 90 | pcy_cache.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
91 | pcy_cache.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 91 | pcy_cache.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
92 | pcy_cache.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 92 | pcy_cache.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
93 | pcy_cache.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 93 | pcy_cache.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
94 | pcy_cache.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 94 | pcy_cache.o: ../../include/openssl/objects.h |
95 | pcy_cache.o: ../../include/openssl/opensslconf.h | 95 | pcy_cache.o: ../../include/openssl/opensslconf.h |
96 | pcy_cache.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 96 | pcy_cache.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
97 | pcy_cache.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 97 | pcy_cache.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
@@ -105,9 +105,8 @@ pcy_data.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
105 | pcy_data.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 105 | pcy_data.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
106 | pcy_data.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 106 | pcy_data.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
107 | pcy_data.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 107 | pcy_data.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
108 | pcy_data.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 108 | pcy_data.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
109 | pcy_data.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 109 | pcy_data.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
110 | pcy_data.o: ../../include/openssl/opensslconf.h | ||
111 | pcy_data.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 110 | pcy_data.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
112 | pcy_data.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 111 | pcy_data.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
113 | pcy_data.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 112 | pcy_data.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -120,36 +119,35 @@ pcy_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
120 | pcy_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 119 | pcy_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
121 | pcy_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 120 | pcy_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
122 | pcy_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 121 | pcy_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
123 | pcy_lib.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 122 | pcy_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
124 | pcy_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 123 | pcy_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
125 | pcy_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 124 | pcy_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
126 | pcy_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 125 | pcy_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
127 | pcy_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 126 | pcy_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
128 | pcy_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 127 | pcy_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
129 | pcy_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 128 | pcy_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
130 | pcy_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h pcy_int.h pcy_lib.c | 129 | pcy_lib.o: ../cryptlib.h pcy_int.h pcy_lib.c |
131 | pcy_map.o: ../../e_os.h ../../include/openssl/asn1.h | 130 | pcy_map.o: ../../e_os.h ../../include/openssl/asn1.h |
132 | pcy_map.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 131 | pcy_map.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
133 | pcy_map.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 132 | pcy_map.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
134 | pcy_map.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 133 | pcy_map.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
135 | pcy_map.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 134 | pcy_map.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
136 | pcy_map.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 135 | pcy_map.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
137 | pcy_map.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 136 | pcy_map.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
138 | pcy_map.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 137 | pcy_map.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
139 | pcy_map.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 138 | pcy_map.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
140 | pcy_map.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 139 | pcy_map.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
141 | pcy_map.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 140 | pcy_map.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
142 | pcy_map.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 141 | pcy_map.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
143 | pcy_map.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 142 | pcy_map.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
144 | pcy_map.o: ../../include/openssl/x509v3.h ../cryptlib.h pcy_int.h pcy_map.c | 143 | pcy_map.o: ../cryptlib.h pcy_int.h pcy_map.c |
145 | pcy_node.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 144 | pcy_node.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
146 | pcy_node.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 145 | pcy_node.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
147 | pcy_node.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 146 | pcy_node.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
148 | pcy_node.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 147 | pcy_node.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
149 | pcy_node.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | 148 | pcy_node.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h |
150 | pcy_node.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 149 | pcy_node.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
151 | pcy_node.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 150 | pcy_node.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
152 | pcy_node.o: ../../include/openssl/opensslconf.h | ||
153 | pcy_node.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 151 | pcy_node.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
154 | pcy_node.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 152 | pcy_node.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
155 | pcy_node.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 153 | pcy_node.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -162,9 +160,8 @@ pcy_tree.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
162 | pcy_tree.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 160 | pcy_tree.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
163 | pcy_tree.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 161 | pcy_tree.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
164 | pcy_tree.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 162 | pcy_tree.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
165 | pcy_tree.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 163 | pcy_tree.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
166 | pcy_tree.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 164 | pcy_tree.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
167 | pcy_tree.o: ../../include/openssl/opensslconf.h | ||
168 | pcy_tree.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 165 | pcy_tree.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
169 | pcy_tree.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 166 | pcy_tree.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
170 | pcy_tree.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 167 | pcy_tree.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -177,39 +174,37 @@ v3_addr.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
177 | v3_addr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 174 | v3_addr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
178 | v3_addr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 175 | v3_addr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
179 | v3_addr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 176 | v3_addr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
180 | v3_addr.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 177 | v3_addr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
181 | v3_addr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 178 | v3_addr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
182 | v3_addr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 179 | v3_addr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
183 | v3_addr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 180 | v3_addr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
184 | v3_addr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 181 | v3_addr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
185 | v3_addr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 182 | v3_addr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
186 | v3_addr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 183 | v3_addr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
187 | v3_addr.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 184 | v3_addr.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_addr.c |
188 | v3_addr.o: ../cryptlib.h v3_addr.c | ||
189 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h | 185 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h |
190 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 186 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
191 | v3_akey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 187 | v3_akey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
192 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 188 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
193 | v3_akey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 189 | v3_akey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
194 | v3_akey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 190 | v3_akey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
195 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 191 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
196 | v3_akey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 192 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
197 | v3_akey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 193 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
198 | v3_akey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 194 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
199 | v3_akey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 195 | v3_akey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
200 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 196 | v3_akey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
201 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 197 | v3_akey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
202 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 198 | v3_akey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akey.c |
203 | v3_akey.o: ../cryptlib.h v3_akey.c | ||
204 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h | 199 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h |
205 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 200 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
206 | v3_akeya.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 201 | v3_akeya.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
207 | v3_akeya.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 202 | v3_akeya.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
208 | v3_akeya.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 203 | v3_akeya.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
209 | v3_akeya.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 204 | v3_akeya.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
210 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 205 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
211 | v3_akeya.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 206 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
212 | v3_akeya.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 207 | v3_akeya.o: ../../include/openssl/opensslconf.h |
213 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 208 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
214 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 209 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
215 | v3_akeya.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 210 | v3_akeya.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -221,15 +216,14 @@ v3_alt.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
221 | v3_alt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 216 | v3_alt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
222 | v3_alt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 217 | v3_alt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
223 | v3_alt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 218 | v3_alt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
224 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 219 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
225 | v3_alt.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 220 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
226 | v3_alt.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 221 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
227 | v3_alt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 222 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
228 | v3_alt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 223 | v3_alt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
229 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 224 | v3_alt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
230 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 225 | v3_alt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
231 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 226 | v3_alt.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_alt.c |
232 | v3_alt.o: ../cryptlib.h v3_alt.c | ||
233 | v3_asid.o: ../../e_os.h ../../include/openssl/asn1.h | 227 | v3_asid.o: ../../e_os.h ../../include/openssl/asn1.h |
234 | v3_asid.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 228 | v3_asid.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
235 | v3_asid.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 229 | v3_asid.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
@@ -237,23 +231,23 @@ v3_asid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
237 | v3_asid.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 231 | v3_asid.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
238 | v3_asid.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 232 | v3_asid.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
239 | v3_asid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 233 | v3_asid.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
240 | v3_asid.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 234 | v3_asid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
241 | v3_asid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 235 | v3_asid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
242 | v3_asid.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 236 | v3_asid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
243 | v3_asid.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 237 | v3_asid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
244 | v3_asid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 238 | v3_asid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
245 | v3_asid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 239 | v3_asid.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
246 | v3_asid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 240 | v3_asid.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
247 | v3_asid.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_asid.c | 241 | v3_asid.o: ../cryptlib.h v3_asid.c |
248 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h | 242 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h |
249 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 243 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
250 | v3_bcons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 244 | v3_bcons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
251 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 245 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
252 | v3_bcons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 246 | v3_bcons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
253 | v3_bcons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 247 | v3_bcons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
254 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 248 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
255 | v3_bcons.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 249 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
256 | v3_bcons.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 250 | v3_bcons.o: ../../include/openssl/opensslconf.h |
257 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 251 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
258 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 252 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
259 | v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 253 | v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -266,9 +260,8 @@ v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
266 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 260 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
267 | v3_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 261 | v3_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
268 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 262 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
269 | v3_bitst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 263 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
270 | v3_bitst.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 264 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
271 | v3_bitst.o: ../../include/openssl/opensslconf.h | ||
272 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 265 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
273 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 266 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
274 | v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 267 | v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -281,23 +274,23 @@ v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
281 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 274 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
282 | v3_conf.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 275 | v3_conf.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
283 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 276 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
284 | v3_conf.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 277 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
285 | v3_conf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 278 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
286 | v3_conf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 279 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
287 | v3_conf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 280 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
288 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 281 | v3_conf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
289 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 282 | v3_conf.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
290 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 283 | v3_conf.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
291 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c | 284 | v3_conf.o: ../cryptlib.h v3_conf.c |
292 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h | 285 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h |
293 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 286 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
294 | v3_cpols.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 287 | v3_cpols.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
295 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 288 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
296 | v3_cpols.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 289 | v3_cpols.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
297 | v3_cpols.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 290 | v3_cpols.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
298 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 291 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
299 | v3_cpols.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 292 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
300 | v3_cpols.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 293 | v3_cpols.o: ../../include/openssl/opensslconf.h |
301 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 294 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
302 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 295 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
303 | v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 296 | v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -310,38 +303,37 @@ v3_crld.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
310 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 303 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
311 | v3_crld.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 304 | v3_crld.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
312 | v3_crld.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 305 | v3_crld.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
313 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 306 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
314 | v3_crld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 307 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
315 | v3_crld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 308 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
316 | v3_crld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 309 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
317 | v3_crld.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 310 | v3_crld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
318 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 311 | v3_crld.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
319 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 312 | v3_crld.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
320 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 313 | v3_crld.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_crld.c |
321 | v3_crld.o: ../cryptlib.h v3_crld.c | ||
322 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h | 314 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h |
323 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 315 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
324 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 316 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
325 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 317 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
326 | v3_enum.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 318 | v3_enum.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
327 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 319 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
328 | v3_enum.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 320 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
329 | v3_enum.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 321 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
330 | v3_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 322 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
331 | v3_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 323 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
332 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 324 | v3_enum.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
333 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 325 | v3_enum.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
334 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 326 | v3_enum.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
335 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c | 327 | v3_enum.o: ../cryptlib.h v3_enum.c |
336 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h | 328 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h |
337 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 329 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
338 | v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 330 | v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
339 | v3_extku.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 331 | v3_extku.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
340 | v3_extku.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 332 | v3_extku.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
341 | v3_extku.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 333 | v3_extku.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
342 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 334 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
343 | v3_extku.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 335 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
344 | v3_extku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 336 | v3_extku.o: ../../include/openssl/opensslconf.h |
345 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 337 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
346 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 338 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
347 | v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 339 | v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -354,81 +346,76 @@ v3_genn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
354 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 346 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
355 | v3_genn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 347 | v3_genn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
356 | v3_genn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 348 | v3_genn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
357 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 349 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
358 | v3_genn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 350 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
359 | v3_genn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 351 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
360 | v3_genn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 352 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
361 | v3_genn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 353 | v3_genn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
362 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 354 | v3_genn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
363 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 355 | v3_genn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
364 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 356 | v3_genn.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_genn.c |
365 | v3_genn.o: ../cryptlib.h v3_genn.c | ||
366 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 357 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
367 | v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 358 | v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
368 | v3_ia5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 359 | v3_ia5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
369 | v3_ia5.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 360 | v3_ia5.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
370 | v3_ia5.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 361 | v3_ia5.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
371 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 362 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
372 | v3_ia5.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 363 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
373 | v3_ia5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 364 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
374 | v3_ia5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 365 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
375 | v3_ia5.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 366 | v3_ia5.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
376 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 367 | v3_ia5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
377 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 368 | v3_ia5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
378 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 369 | v3_ia5.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_ia5.c |
379 | v3_ia5.o: ../cryptlib.h v3_ia5.c | ||
380 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h | 370 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h |
381 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 371 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
382 | v3_info.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 372 | v3_info.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
383 | v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 373 | v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
384 | v3_info.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 374 | v3_info.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
385 | v3_info.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 375 | v3_info.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
386 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 376 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
387 | v3_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 377 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
388 | v3_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 378 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
389 | v3_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 379 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
390 | v3_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 380 | v3_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
391 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 381 | v3_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
392 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 382 | v3_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
393 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 383 | v3_info.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_info.c |
394 | v3_info.o: ../cryptlib.h v3_info.c | ||
395 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 384 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
396 | v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 385 | v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
397 | v3_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 386 | v3_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
398 | v3_int.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 387 | v3_int.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
399 | v3_int.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 388 | v3_int.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
400 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 389 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
401 | v3_int.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 390 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
402 | v3_int.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 391 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
403 | v3_int.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 392 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
404 | v3_int.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 393 | v3_int.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
405 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 394 | v3_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
406 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 395 | v3_int.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
407 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 396 | v3_int.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_int.c |
408 | v3_int.o: ../cryptlib.h v3_int.c | ||
409 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 397 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
410 | v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 398 | v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
411 | v3_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 399 | v3_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
412 | v3_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 400 | v3_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
413 | v3_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 401 | v3_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
414 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 402 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
415 | v3_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 403 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
416 | v3_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 404 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
417 | v3_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 405 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
418 | v3_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 406 | v3_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
419 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 407 | v3_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
420 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 408 | v3_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
421 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 409 | v3_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ext_dat.h v3_lib.c |
422 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c | ||
423 | v3_ncons.o: ../../e_os.h ../../include/openssl/asn1.h | 410 | v3_ncons.o: ../../e_os.h ../../include/openssl/asn1.h |
424 | v3_ncons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 411 | v3_ncons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
425 | v3_ncons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 412 | v3_ncons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
426 | v3_ncons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 413 | v3_ncons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
427 | v3_ncons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 414 | v3_ncons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
428 | v3_ncons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 415 | v3_ncons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
429 | v3_ncons.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 416 | v3_ncons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
430 | v3_ncons.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 417 | v3_ncons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
431 | v3_ncons.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 418 | v3_ncons.o: ../../include/openssl/opensslconf.h |
432 | v3_ncons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 419 | v3_ncons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
433 | v3_ncons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 420 | v3_ncons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
434 | v3_ncons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 421 | v3_ncons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -441,52 +428,49 @@ v3_ocsp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
441 | v3_ocsp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 428 | v3_ocsp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
442 | v3_ocsp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 429 | v3_ocsp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
443 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 430 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
444 | v3_ocsp.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 431 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
445 | v3_ocsp.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 432 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
446 | v3_ocsp.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 433 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
447 | v3_ocsp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 434 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
448 | v3_ocsp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 435 | v3_ocsp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
449 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 436 | v3_ocsp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
450 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 437 | v3_ocsp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
451 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 438 | v3_ocsp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_ocsp.c |
452 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | ||
453 | v3_pci.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 439 | v3_pci.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
454 | v3_pci.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 440 | v3_pci.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
455 | v3_pci.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 441 | v3_pci.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
456 | v3_pci.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 442 | v3_pci.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
457 | v3_pci.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 443 | v3_pci.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
458 | v3_pci.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 444 | v3_pci.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
459 | v3_pci.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 445 | v3_pci.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
460 | v3_pci.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 446 | v3_pci.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
461 | v3_pci.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 447 | v3_pci.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
462 | v3_pci.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 448 | v3_pci.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
463 | v3_pci.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 449 | v3_pci.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
464 | v3_pci.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 450 | v3_pci.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
465 | v3_pci.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 451 | v3_pci.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pci.c |
466 | v3_pci.o: ../cryptlib.h v3_pci.c | ||
467 | v3_pcia.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 452 | v3_pcia.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
468 | v3_pcia.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 453 | v3_pcia.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
469 | v3_pcia.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 454 | v3_pcia.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
470 | v3_pcia.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 455 | v3_pcia.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
471 | v3_pcia.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 456 | v3_pcia.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
472 | v3_pcia.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 457 | v3_pcia.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
473 | v3_pcia.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 458 | v3_pcia.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
474 | v3_pcia.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 459 | v3_pcia.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
475 | v3_pcia.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 460 | v3_pcia.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
476 | v3_pcia.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 461 | v3_pcia.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
477 | v3_pcia.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 462 | v3_pcia.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
478 | v3_pcia.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 463 | v3_pcia.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
479 | v3_pcia.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 464 | v3_pcia.o: ../../include/openssl/x509v3.h v3_pcia.c |
480 | v3_pcia.o: v3_pcia.c | ||
481 | v3_pcons.o: ../../e_os.h ../../include/openssl/asn1.h | 465 | v3_pcons.o: ../../e_os.h ../../include/openssl/asn1.h |
482 | v3_pcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 466 | v3_pcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
483 | v3_pcons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 467 | v3_pcons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
484 | v3_pcons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 468 | v3_pcons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
485 | v3_pcons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 469 | v3_pcons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
486 | v3_pcons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 470 | v3_pcons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
487 | v3_pcons.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 471 | v3_pcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
488 | v3_pcons.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 472 | v3_pcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
489 | v3_pcons.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 473 | v3_pcons.o: ../../include/openssl/opensslconf.h |
490 | v3_pcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 474 | v3_pcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
491 | v3_pcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 475 | v3_pcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
492 | v3_pcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 476 | v3_pcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -499,24 +483,23 @@ v3_pku.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
499 | v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 483 | v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
500 | v3_pku.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 484 | v3_pku.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
501 | v3_pku.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 485 | v3_pku.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
502 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 486 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
503 | v3_pku.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 487 | v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
504 | v3_pku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 488 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
505 | v3_pku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 489 | v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
506 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 490 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
507 | v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 491 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
508 | v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 492 | v3_pku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
509 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 493 | v3_pku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pku.c |
510 | v3_pku.o: ../cryptlib.h v3_pku.c | ||
511 | v3_pmaps.o: ../../e_os.h ../../include/openssl/asn1.h | 494 | v3_pmaps.o: ../../e_os.h ../../include/openssl/asn1.h |
512 | v3_pmaps.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 495 | v3_pmaps.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
513 | v3_pmaps.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 496 | v3_pmaps.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
514 | v3_pmaps.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 497 | v3_pmaps.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
515 | v3_pmaps.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 498 | v3_pmaps.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
516 | v3_pmaps.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 499 | v3_pmaps.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
517 | v3_pmaps.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 500 | v3_pmaps.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
518 | v3_pmaps.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 501 | v3_pmaps.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
519 | v3_pmaps.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 502 | v3_pmaps.o: ../../include/openssl/opensslconf.h |
520 | v3_pmaps.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 503 | v3_pmaps.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
521 | v3_pmaps.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 504 | v3_pmaps.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
522 | v3_pmaps.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 505 | v3_pmaps.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -528,52 +511,51 @@ v3_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | |||
528 | v3_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 511 | v3_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
529 | v3_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 512 | v3_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
530 | v3_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 513 | v3_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
531 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 514 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
532 | v3_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 515 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
533 | v3_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 516 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
534 | v3_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 517 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
535 | v3_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 518 | v3_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
536 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 519 | v3_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
537 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 520 | v3_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
538 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 521 | v3_prn.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_prn.c |
539 | v3_prn.o: ../cryptlib.h v3_prn.c | ||
540 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h | 522 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h |
541 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 523 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
542 | v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 524 | v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
543 | v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 525 | v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
544 | v3_purp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 526 | v3_purp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
545 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 527 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
546 | v3_purp.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 528 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
547 | v3_purp.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 529 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
548 | v3_purp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 530 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
549 | v3_purp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 531 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
550 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 532 | v3_purp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
551 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 533 | v3_purp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
552 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 534 | v3_purp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
553 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | 535 | v3_purp.o: ../cryptlib.h v3_purp.c |
554 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h | 536 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h |
555 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 537 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
556 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 538 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
557 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 539 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
558 | v3_skey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 540 | v3_skey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
559 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 541 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
560 | v3_skey.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 542 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
561 | v3_skey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 543 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
562 | v3_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 544 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
563 | v3_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 545 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
564 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 546 | v3_skey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
565 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 547 | v3_skey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
566 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 548 | v3_skey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
567 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c | 549 | v3_skey.o: ../cryptlib.h v3_skey.c |
568 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h | 550 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h |
569 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 551 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
570 | v3_sxnet.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 552 | v3_sxnet.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
571 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 553 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
572 | v3_sxnet.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 554 | v3_sxnet.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
573 | v3_sxnet.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 555 | v3_sxnet.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
574 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 556 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
575 | v3_sxnet.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 557 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
576 | v3_sxnet.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 558 | v3_sxnet.o: ../../include/openssl/opensslconf.h |
577 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 559 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
578 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 560 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
579 | v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 561 | v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
@@ -586,25 +568,24 @@ v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | |||
586 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 568 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
587 | v3_utl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 569 | v3_utl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
588 | v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 570 | v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
589 | v3_utl.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 571 | v3_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
590 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 572 | v3_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
591 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 573 | v3_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
592 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 574 | v3_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
593 | v3_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 575 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
594 | v3_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 576 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
595 | v3_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 577 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
596 | v3_utl.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_utl.c | 578 | v3_utl.o: ../cryptlib.h v3_utl.c |
597 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 579 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
598 | v3err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 580 | v3err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
599 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 581 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
600 | v3err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | 582 | v3err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
601 | v3err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | 583 | v3err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
602 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 584 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
603 | v3err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 585 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
604 | v3err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 586 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
605 | v3err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 587 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
606 | v3err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 588 | v3err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
607 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 589 | v3err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
608 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 590 | v3err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
609 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 591 | v3err.o: ../../include/openssl/x509v3.h v3err.c |
610 | v3err.o: v3err.c | ||