diff options
author | djm <> | 2010-10-01 22:54:19 +0000 |
---|---|---|
committer | djm <> | 2010-10-01 22:54:19 +0000 |
commit | 6ddfb710ab14b10183ff3a6a32f643554c80065e (patch) | |
tree | 03b202b49e2c6367ae5dec12d939ea99c9ca36b3 /src | |
parent | b204ac0374903f9d6a2fcc50cfd94578e357d00a (diff) | |
parent | 242690ab2a8e991b85b4735c4e0bac0ec7bd3481 (diff) | |
download | openbsd-6ddfb710ab14b10183ff3a6a32f643554c80065e.tar.gz openbsd-6ddfb710ab14b10183ff3a6a32f643554c80065e.tar.bz2 openbsd-6ddfb710ab14b10183ff3a6a32f643554c80065e.zip |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src')
121 files changed, 4684 insertions, 3204 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 | ||
diff --git a/src/lib/libssl/src/INSTALL.WCE b/src/lib/libssl/src/INSTALL.WCE index adc03f41d4..d78c61afa8 100644 --- a/src/lib/libssl/src/INSTALL.WCE +++ b/src/lib/libssl/src/INSTALL.WCE | |||
@@ -4,27 +4,36 @@ | |||
4 | 4 | ||
5 | Building OpenSSL for Windows CE requires the following external tools: | 5 | Building OpenSSL for Windows CE requires the following external tools: |
6 | 6 | ||
7 | * Microsoft eMbedded Visual C++ 3.0 | 7 | * Microsoft eMbedded Visual C++ 3.0 or later |
8 | * wcecompat compatibility library (www.essemer.com.au) | 8 | * Appropriate SDK might be required |
9 | * Optionally ceutils for running automated tests (www.essemer.com.au) | 9 | * Perl for Win32 [commonly recommended ActiveState Perl is available |
10 | 10 | from http://www.activestate.com/Products/ActivePerl/] | |
11 | You also need Perl for Win32. You will need ActiveState Perl, available | 11 | |
12 | from http://www.activestate.com/ActivePerl. | 12 | * wcecompat compatibility library available at |
13 | 13 | http://www.essemer.com.au/windowsce/ | |
14 | Windows CE support in OpenSSL relies on wcecompat and therefore it's | 14 | * Optionally ceutils for running automated tests (same location) |
15 | appropriate to check http://www.essemer.com.au/windowsce/ for updates in | 15 | |
16 | case of compilation problems. As for the moment of this writing version | 16 | _or_ |
17 | 1.1 is available and actually required for WCE 4.2 and newer platforms. | 17 | |
18 | All Windows CE specific issues should be directed to www.essemer.com.au. | 18 | * PocketConsole driver and PortSDK available at |
19 | 19 | http://www.symbolictools.de/public/pocketconsole/ | |
20 | The C Runtime Library implementation for Windows CE that is included with | 20 | * CMD command interpreter (same location) |
21 | Microsoft eMbedded Visual C++ 3.0 is incomplete and in some places | 21 | |
22 | incorrect. wcecompat plugs the holes and tries to bring the Windows CE | 22 | As Windows CE support in OpenSSL relies on 3rd party compatibility |
23 | CRT to a level that is more compatible with ANSI C. wcecompat goes further | 23 | library, it's appropriate to check corresponding URL for updates. For |
24 | and provides low-level IO and stream IO support for stdin/stdout/stderr | 24 | example if you choose wcecompat, note that as for the moment of this |
25 | (which Windows CE does not provide). This IO functionality is not needed | 25 | writing version 1.2 is available and actually required for WCE 4.2 |
26 | by the OpenSSL library itself but is used for the tests and openssl.exe. | 26 | and newer platforms. All wcecompat issues should be directed to |
27 | More information is available at www.essemer.com.au. | 27 | www.essemer.com.au. |
28 | |||
29 | Why compatibility library at all? The C Runtime Library implementation | ||
30 | for Windows CE that is included with Microsoft eMbedded Visual C++ is | ||
31 | incomplete and in some places incorrect. Compatibility library plugs | ||
32 | the holes and tries to bring the Windows CE CRT to [more] usable level. | ||
33 | Most gaping hole in CRT is support for stdin/stdout/stderr IO, which | ||
34 | proposed compatibility libraries solve in two different ways: wcecompat | ||
35 | redirects IO to active sync link, while PortSDK - to NT-like console | ||
36 | driver on the handheld itself. | ||
28 | 37 | ||
29 | Building | 38 | Building |
30 | -------- | 39 | -------- |
@@ -34,9 +43,21 @@ | |||
34 | 43 | ||
35 | > "C:\Program Files\Microsoft eMbedded Tools\EVC\WCE300\BIN\WCEARM.BAT" | 44 | > "C:\Program Files\Microsoft eMbedded Tools\EVC\WCE300\BIN\WCEARM.BAT" |
36 | 45 | ||
37 | Next indicate where wcecompat is located: | 46 | Next pick compatibility library according to your preferences. |
38 | 47 | ||
39 | > set WCECOMPAT=C:\wcecompat | 48 | 1. To choose wcecompat set up WCECOMPAT environment variable pointing |
49 | at the location of wcecompat tree "root": | ||
50 | |||
51 | > set WCECOMPAT=C:\wcecompat | ||
52 | > set PORTSDK_LIBPATH= | ||
53 | |||
54 | 2. To choose PortSDK set up PORTSDK_LIBPATH to point at hardware- | ||
55 | specific location where your portlib.lib is installed: | ||
56 | |||
57 | > set PORTSDK_LIBPATH=C:\PortSDK\lib\ARM | ||
58 | > set WCECOMPAT= | ||
59 | |||
60 | Note that you may not set both variables. | ||
40 | 61 | ||
41 | Next you should run Configure: | 62 | Next you should run Configure: |
42 | 63 | ||
@@ -52,16 +73,16 @@ | |||
52 | 73 | ||
53 | Then from the VC++ environment at a prompt do: | 74 | Then from the VC++ environment at a prompt do: |
54 | 75 | ||
55 | - to build static libraries: | 76 | > nmake -f ms\cedll.mak |
56 | 77 | ||
57 | > nmake -f ms\ce.mak | 78 | [note that static builds are not supported under CE] |
58 | 79 | ||
59 | - or to build DLLs: | 80 | If all is well it should compile and you will have some DLLs and executables |
81 | in out32dll*. | ||
60 | 82 | ||
61 | > nmake -f ms\cedll.mak | 83 | <<< everyting below needs revision in respect to wcecompat vs. PortSDK >>> |
62 | 84 | ||
63 | If all is well it should compile and you will have some static libraries and | 85 | If you want |
64 | executables in out32, or some DLLs and executables in out32dll. If you want | ||
65 | to try the tests then make sure the ceutils are in the path and do: | 86 | to try the tests then make sure the ceutils are in the path and do: |
66 | 87 | ||
67 | > cd out32 | 88 | > cd out32 |
diff --git a/src/lib/libssl/src/Netware/build.bat b/src/lib/libssl/src/Netware/build.bat index 823134bda1..3125c2a487 100644 --- a/src/lib/libssl/src/Netware/build.bat +++ b/src/lib/libssl/src/Netware/build.bat | |||
@@ -159,6 +159,8 @@ cd ..\..\.. | |||
159 | echo SHA1 | 159 | echo SHA1 |
160 | cd crypto\sha\asm | 160 | cd crypto\sha\asm |
161 | perl sha1-586.pl %ASM_MODE% > s1-nw.asm | 161 | perl sha1-586.pl %ASM_MODE% > s1-nw.asm |
162 | perl sha256-586.pl %ASM_MODE% > sha256-nw.asm | ||
163 | perl sha512-586.pl %ASM_MODE% > sha512-nw.asm | ||
162 | cd ..\..\.. | 164 | cd ..\..\.. |
163 | 165 | ||
164 | echo RIPEMD160 | 166 | echo RIPEMD160 |
@@ -171,6 +173,11 @@ cd crypto\rc5\asm | |||
171 | perl rc5-586.pl %ASM_MODE% > r5-nw.asm | 173 | perl rc5-586.pl %ASM_MODE% > r5-nw.asm |
172 | cd ..\..\.. | 174 | cd ..\..\.. |
173 | 175 | ||
176 | echo WHIRLPOOL | ||
177 | cd crypto\whrlpool\asm | ||
178 | perl wp-mmx.pl %ASM_MODE% > wp-nw.asm | ||
179 | cd ..\..\.. | ||
180 | |||
174 | echo CPUID | 181 | echo CPUID |
175 | cd crypto | 182 | cd crypto |
176 | perl x86cpuid.pl %ASM_MODE% > x86cpuid-nw.asm | 183 | perl x86cpuid.pl %ASM_MODE% > x86cpuid-nw.asm |
diff --git a/src/lib/libssl/src/apps/prime.c b/src/lib/libssl/src/apps/prime.c index af2fed15af..f1aaef8725 100644 --- a/src/lib/libssl/src/apps/prime.c +++ b/src/lib/libssl/src/apps/prime.c | |||
@@ -62,6 +62,9 @@ int MAIN(int argc, char **argv) | |||
62 | { | 62 | { |
63 | int hex=0; | 63 | int hex=0; |
64 | int checks=20; | 64 | int checks=20; |
65 | int generate=0; | ||
66 | int bits=0; | ||
67 | int safe=0; | ||
65 | BIGNUM *bn=NULL; | 68 | BIGNUM *bn=NULL; |
66 | BIO *bio_out; | 69 | BIO *bio_out; |
67 | 70 | ||
@@ -77,6 +80,15 @@ int MAIN(int argc, char **argv) | |||
77 | { | 80 | { |
78 | if(!strcmp(*argv,"-hex")) | 81 | if(!strcmp(*argv,"-hex")) |
79 | hex=1; | 82 | hex=1; |
83 | else if(!strcmp(*argv,"-generate")) | ||
84 | generate=1; | ||
85 | else if(!strcmp(*argv,"-bits")) | ||
86 | if(--argc < 1) | ||
87 | goto bad; | ||
88 | else | ||
89 | bits=atoi(*++argv); | ||
90 | else if(!strcmp(*argv,"-safe")) | ||
91 | safe=1; | ||
80 | else if(!strcmp(*argv,"-checks")) | 92 | else if(!strcmp(*argv,"-checks")) |
81 | if(--argc < 1) | 93 | if(--argc < 1) |
82 | goto bad; | 94 | goto bad; |
@@ -91,13 +103,13 @@ int MAIN(int argc, char **argv) | |||
91 | ++argv; | 103 | ++argv; |
92 | } | 104 | } |
93 | 105 | ||
94 | if (argv[0] == NULL) | 106 | if (argv[0] == NULL && !generate) |
95 | { | 107 | { |
96 | BIO_printf(bio_err,"No prime specified\n"); | 108 | BIO_printf(bio_err,"No prime specified\n"); |
97 | goto bad; | 109 | goto bad; |
98 | } | 110 | } |
99 | 111 | ||
100 | if ((bio_out=BIO_new(BIO_s_file())) != NULL) | 112 | if ((bio_out=BIO_new(BIO_s_file())) != NULL) |
101 | { | 113 | { |
102 | BIO_set_fp(bio_out,stdout,BIO_NOCLOSE); | 114 | BIO_set_fp(bio_out,stdout,BIO_NOCLOSE); |
103 | #ifdef OPENSSL_SYS_VMS | 115 | #ifdef OPENSSL_SYS_VMS |
@@ -108,14 +120,32 @@ int MAIN(int argc, char **argv) | |||
108 | #endif | 120 | #endif |
109 | } | 121 | } |
110 | 122 | ||
111 | if(hex) | 123 | if(generate) |
112 | BN_hex2bn(&bn,argv[0]); | 124 | { |
125 | char *s; | ||
126 | |||
127 | if(!bits) | ||
128 | { | ||
129 | BIO_printf(bio_err,"Specifiy the number of bits.\n"); | ||
130 | return 1; | ||
131 | } | ||
132 | bn=BN_new(); | ||
133 | BN_generate_prime_ex(bn,bits,safe,NULL,NULL,NULL); | ||
134 | s=hex ? BN_bn2hex(bn) : BN_bn2dec(bn); | ||
135 | BIO_printf(bio_out,"%s\n",s); | ||
136 | OPENSSL_free(s); | ||
137 | } | ||
113 | else | 138 | else |
114 | BN_dec2bn(&bn,argv[0]); | 139 | { |
140 | if(hex) | ||
141 | BN_hex2bn(&bn,argv[0]); | ||
142 | else | ||
143 | BN_dec2bn(&bn,argv[0]); | ||
115 | 144 | ||
116 | BN_print(bio_out,bn); | 145 | BN_print(bio_out,bn); |
117 | BIO_printf(bio_out," is %sprime\n", | 146 | BIO_printf(bio_out," is %sprime\n", |
118 | BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not "); | 147 | BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not "); |
148 | } | ||
119 | 149 | ||
120 | BN_free(bn); | 150 | BN_free(bn); |
121 | BIO_free_all(bio_out); | 151 | BIO_free_all(bio_out); |
diff --git a/src/lib/libssl/src/crypto/aes/Makefile b/src/lib/libssl/src/crypto/aes/Makefile index 9d174f4c3e..c501a43a8f 100644 --- a/src/lib/libssl/src/crypto/aes/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/asn1/Makefile b/src/lib/libssl/src/crypto/asn1/Makefile index 94a6885804..160544eede 100644 --- a/src/lib/libssl/src/crypto/asn1/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bf/Makefile b/src/lib/libssl/src/crypto/bf/Makefile index 7f4f03eb82..dd2c2c708e 100644 --- a/src/lib/libssl/src/crypto/bf/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bio/Makefile b/src/lib/libssl/src/crypto/bio/Makefile index 1cd76ce7a2..c395d80496 100644 --- a/src/lib/libssl/src/crypto/bio/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bn/asm/ppc.pl b/src/lib/libssl/src/crypto/bn/asm/ppc.pl index 08e0053473..37c65d3511 100644 --- a/src/lib/libssl/src/crypto/bn/asm/ppc.pl +++ b/src/lib/libssl/src/crypto/bn/asm/ppc.pl | |||
@@ -100,9 +100,9 @@ | |||
100 | # me a note at schari@us.ibm.com | 100 | # me a note at schari@us.ibm.com |
101 | # | 101 | # |
102 | 102 | ||
103 | $opf = shift; | 103 | $flavour = shift; |
104 | 104 | ||
105 | if ($opf =~ /32\.s/) { | 105 | if ($flavour =~ /32/) { |
106 | $BITS= 32; | 106 | $BITS= 32; |
107 | $BNSZ= $BITS/8; | 107 | $BNSZ= $BITS/8; |
108 | $ISA= "\"ppc\""; | 108 | $ISA= "\"ppc\""; |
@@ -125,7 +125,7 @@ if ($opf =~ /32\.s/) { | |||
125 | $INSR= "insrwi"; # insert right | 125 | $INSR= "insrwi"; # insert right |
126 | $ROTL= "rotlwi"; # rotate left by immediate | 126 | $ROTL= "rotlwi"; # rotate left by immediate |
127 | $TR= "tw"; # conditional trap | 127 | $TR= "tw"; # conditional trap |
128 | } elsif ($opf =~ /64\.s/) { | 128 | } elsif ($flavour =~ /64/) { |
129 | $BITS= 64; | 129 | $BITS= 64; |
130 | $BNSZ= $BITS/8; | 130 | $BNSZ= $BITS/8; |
131 | $ISA= "\"ppc64\""; | 131 | $ISA= "\"ppc64\""; |
@@ -149,93 +149,16 @@ if ($opf =~ /32\.s/) { | |||
149 | $INSR= "insrdi"; # insert right | 149 | $INSR= "insrdi"; # insert right |
150 | $ROTL= "rotldi"; # rotate left by immediate | 150 | $ROTL= "rotldi"; # rotate left by immediate |
151 | $TR= "td"; # conditional trap | 151 | $TR= "td"; # conditional trap |
152 | } else { die "nonsense $opf"; } | 152 | } else { die "nonsense $flavour"; } |
153 | 153 | ||
154 | ( defined shift || open STDOUT,">$opf" ) || die "can't open $opf: $!"; | 154 | $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; |
155 | ( $xlate="${dir}ppc-xlate.pl" and -f $xlate ) or | ||
156 | ( $xlate="${dir}../../perlasm/ppc-xlate.pl" and -f $xlate) or | ||
157 | die "can't locate ppc-xlate.pl"; | ||
155 | 158 | ||
156 | # function entry points from the AIX code | 159 | open STDOUT,"| $^X $xlate $flavour ".shift || die "can't call $xlate: $!"; |
157 | # | ||
158 | # There are other, more elegant, ways to handle this. We (IBM) chose | ||
159 | # this approach as it plays well with scripts we run to 'namespace' | ||
160 | # OpenSSL .i.e. we add a prefix to all the public symbols so we can | ||
161 | # co-exist in the same process with other implementations of OpenSSL. | ||
162 | # 'cleverer' ways of doing these substitutions tend to hide data we | ||
163 | # need to be obvious. | ||
164 | # | ||
165 | my @items = ("bn_sqr_comba4", | ||
166 | "bn_sqr_comba8", | ||
167 | "bn_mul_comba4", | ||
168 | "bn_mul_comba8", | ||
169 | "bn_sub_words", | ||
170 | "bn_add_words", | ||
171 | "bn_div_words", | ||
172 | "bn_sqr_words", | ||
173 | "bn_mul_words", | ||
174 | "bn_mul_add_words"); | ||
175 | 160 | ||
176 | if ($opf =~ /linux/) { do_linux(); } | 161 | $data=<<EOF; |
177 | elsif ($opf =~ /aix/) { do_aix(); } | ||
178 | elsif ($opf =~ /osx/) { do_osx(); } | ||
179 | else { do_bsd(); } | ||
180 | |||
181 | sub do_linux { | ||
182 | $d=&data(); | ||
183 | |||
184 | if ($BITS==64) { | ||
185 | foreach $t (@items) { | ||
186 | $d =~ s/\.$t:/\ | ||
187 | \t.section\t".opd","aw"\ | ||
188 | \t.align\t3\ | ||
189 | \t.globl\t$t\ | ||
190 | $t:\ | ||
191 | \t.quad\t.$t,.TOC.\@tocbase,0\ | ||
192 | \t.size\t$t,24\ | ||
193 | \t.previous\n\ | ||
194 | \t.type\t.$t,\@function\ | ||
195 | \t.globl\t.$t\ | ||
196 | .$t:/g; | ||
197 | } | ||
198 | } | ||
199 | else { | ||
200 | foreach $t (@items) { | ||
201 | $d=~s/\.$t/$t/g; | ||
202 | } | ||
203 | } | ||
204 | # hide internal labels to avoid pollution of name table... | ||
205 | $d=~s/Lppcasm_/.Lppcasm_/gm; | ||
206 | print $d; | ||
207 | } | ||
208 | |||
209 | sub do_aix { | ||
210 | # AIX assembler is smart enough to please the linker without | ||
211 | # making us do something special... | ||
212 | print &data(); | ||
213 | } | ||
214 | |||
215 | # MacOSX 32 bit | ||
216 | sub do_osx { | ||
217 | $d=&data(); | ||
218 | # Change the bn symbol prefix from '.' to '_' | ||
219 | foreach $t (@items) { | ||
220 | $d=~s/\.$t/_$t/g; | ||
221 | } | ||
222 | # Change .machine to something OS X asm will accept | ||
223 | $d=~s/\.machine.*/.text/g; | ||
224 | $d=~s/\#/;/g; # change comment from '#' to ';' | ||
225 | print $d; | ||
226 | } | ||
227 | |||
228 | # BSD (Untested) | ||
229 | sub do_bsd { | ||
230 | $d=&data(); | ||
231 | foreach $t (@items) { | ||
232 | $d=~s/\.$t/_$t/g; | ||
233 | } | ||
234 | print $d; | ||
235 | } | ||
236 | |||
237 | sub data { | ||
238 | local($data)=<<EOF; | ||
239 | #-------------------------------------------------------------------- | 162 | #-------------------------------------------------------------------- |
240 | # | 163 | # |
241 | # | 164 | # |
@@ -297,33 +220,20 @@ sub data { | |||
297 | # | 220 | # |
298 | # Defines to be used in the assembly code. | 221 | # Defines to be used in the assembly code. |
299 | # | 222 | # |
300 | .set r0,0 # we use it as storage for value of 0 | 223 | #.set r0,0 # we use it as storage for value of 0 |
301 | .set SP,1 # preserved | 224 | #.set SP,1 # preserved |
302 | .set RTOC,2 # preserved | 225 | #.set RTOC,2 # preserved |
303 | .set r3,3 # 1st argument/return value | 226 | #.set r3,3 # 1st argument/return value |
304 | .set r4,4 # 2nd argument/volatile register | 227 | #.set r4,4 # 2nd argument/volatile register |
305 | .set r5,5 # 3rd argument/volatile register | 228 | #.set r5,5 # 3rd argument/volatile register |
306 | .set r6,6 # ... | 229 | #.set r6,6 # ... |
307 | .set r7,7 | 230 | #.set r7,7 |
308 | .set r8,8 | 231 | #.set r8,8 |
309 | .set r9,9 | 232 | #.set r9,9 |
310 | .set r10,10 | 233 | #.set r10,10 |
311 | .set r11,11 | 234 | #.set r11,11 |
312 | .set r12,12 | 235 | #.set r12,12 |
313 | .set r13,13 # not used, nor any other "below" it... | 236 | #.set r13,13 # not used, nor any other "below" it... |
314 | |||
315 | .set BO_IF_NOT,4 | ||
316 | .set BO_IF,12 | ||
317 | .set BO_dCTR_NZERO,16 | ||
318 | .set BO_dCTR_ZERO,18 | ||
319 | .set BO_ALWAYS,20 | ||
320 | .set CR0_LT,0; | ||
321 | .set CR0_GT,1; | ||
322 | .set CR0_EQ,2 | ||
323 | .set CR1_FX,4; | ||
324 | .set CR1_FEX,5; | ||
325 | .set CR1_VX,6 | ||
326 | .set LR,8 | ||
327 | 237 | ||
328 | # Declare function names to be global | 238 | # Declare function names to be global |
329 | # NOTE: For gcc these names MUST be changed to remove | 239 | # NOTE: For gcc these names MUST be changed to remove |
@@ -344,7 +254,7 @@ sub data { | |||
344 | 254 | ||
345 | # .text section | 255 | # .text section |
346 | 256 | ||
347 | .machine $ISA | 257 | .machine "any" |
348 | 258 | ||
349 | # | 259 | # |
350 | # NOTE: The following label name should be changed to | 260 | # NOTE: The following label name should be changed to |
@@ -478,7 +388,7 @@ sub data { | |||
478 | 388 | ||
479 | $ST r9,`6*$BNSZ`(r3) #r[6]=c1 | 389 | $ST r9,`6*$BNSZ`(r3) #r[6]=c1 |
480 | $ST r10,`7*$BNSZ`(r3) #r[7]=c2 | 390 | $ST r10,`7*$BNSZ`(r3) #r[7]=c2 |
481 | bclr BO_ALWAYS,CR0_LT | 391 | blr |
482 | .long 0x00000000 | 392 | .long 0x00000000 |
483 | 393 | ||
484 | # | 394 | # |
@@ -903,7 +813,7 @@ sub data { | |||
903 | $ST r9, `15*$BNSZ`(r3) #r[15]=c1; | 813 | $ST r9, `15*$BNSZ`(r3) #r[15]=c1; |
904 | 814 | ||
905 | 815 | ||
906 | bclr BO_ALWAYS,CR0_LT | 816 | blr |
907 | 817 | ||
908 | .long 0x00000000 | 818 | .long 0x00000000 |
909 | 819 | ||
@@ -1055,7 +965,7 @@ sub data { | |||
1055 | 965 | ||
1056 | $ST r10,`6*$BNSZ`(r3) #r[6]=c1 | 966 | $ST r10,`6*$BNSZ`(r3) #r[6]=c1 |
1057 | $ST r11,`7*$BNSZ`(r3) #r[7]=c2 | 967 | $ST r11,`7*$BNSZ`(r3) #r[7]=c2 |
1058 | bclr BO_ALWAYS,CR0_LT | 968 | blr |
1059 | .long 0x00000000 | 969 | .long 0x00000000 |
1060 | 970 | ||
1061 | # | 971 | # |
@@ -1591,7 +1501,7 @@ sub data { | |||
1591 | adde r10,r10,r9 | 1501 | adde r10,r10,r9 |
1592 | $ST r12,`14*$BNSZ`(r3) #r[14]=c3; | 1502 | $ST r12,`14*$BNSZ`(r3) #r[14]=c3; |
1593 | $ST r10,`15*$BNSZ`(r3) #r[15]=c1; | 1503 | $ST r10,`15*$BNSZ`(r3) #r[15]=c1; |
1594 | bclr BO_ALWAYS,CR0_LT | 1504 | blr |
1595 | .long 0x00000000 | 1505 | .long 0x00000000 |
1596 | 1506 | ||
1597 | # | 1507 | # |
@@ -1623,7 +1533,7 @@ sub data { | |||
1623 | subfc. r7,r0,r6 # If r6 is 0 then result is 0. | 1533 | subfc. r7,r0,r6 # If r6 is 0 then result is 0. |
1624 | # if r6 > 0 then result !=0 | 1534 | # if r6 > 0 then result !=0 |
1625 | # In either case carry bit is set. | 1535 | # In either case carry bit is set. |
1626 | bc BO_IF,CR0_EQ,Lppcasm_sub_adios | 1536 | beq Lppcasm_sub_adios |
1627 | addi r4,r4,-$BNSZ | 1537 | addi r4,r4,-$BNSZ |
1628 | addi r3,r3,-$BNSZ | 1538 | addi r3,r3,-$BNSZ |
1629 | addi r5,r5,-$BNSZ | 1539 | addi r5,r5,-$BNSZ |
@@ -1635,11 +1545,11 @@ Lppcasm_sub_mainloop: | |||
1635 | # if carry = 1 this is r7-r8. Else it | 1545 | # if carry = 1 this is r7-r8. Else it |
1636 | # is r7-r8 -1 as we need. | 1546 | # is r7-r8 -1 as we need. |
1637 | $STU r6,$BNSZ(r3) | 1547 | $STU r6,$BNSZ(r3) |
1638 | bc BO_dCTR_NZERO,CR0_EQ,Lppcasm_sub_mainloop | 1548 | bdnz- Lppcasm_sub_mainloop |
1639 | Lppcasm_sub_adios: | 1549 | Lppcasm_sub_adios: |
1640 | subfze r3,r0 # if carry bit is set then r3 = 0 else -1 | 1550 | subfze r3,r0 # if carry bit is set then r3 = 0 else -1 |
1641 | andi. r3,r3,1 # keep only last bit. | 1551 | andi. r3,r3,1 # keep only last bit. |
1642 | bclr BO_ALWAYS,CR0_LT | 1552 | blr |
1643 | .long 0x00000000 | 1553 | .long 0x00000000 |
1644 | 1554 | ||
1645 | 1555 | ||
@@ -1670,7 +1580,7 @@ Lppcasm_sub_adios: | |||
1670 | # check for r6 = 0. Is this needed? | 1580 | # check for r6 = 0. Is this needed? |
1671 | # | 1581 | # |
1672 | addic. r6,r6,0 #test r6 and clear carry bit. | 1582 | addic. r6,r6,0 #test r6 and clear carry bit. |
1673 | bc BO_IF,CR0_EQ,Lppcasm_add_adios | 1583 | beq Lppcasm_add_adios |
1674 | addi r4,r4,-$BNSZ | 1584 | addi r4,r4,-$BNSZ |
1675 | addi r3,r3,-$BNSZ | 1585 | addi r3,r3,-$BNSZ |
1676 | addi r5,r5,-$BNSZ | 1586 | addi r5,r5,-$BNSZ |
@@ -1680,10 +1590,10 @@ Lppcasm_add_mainloop: | |||
1680 | $LDU r8,$BNSZ(r5) | 1590 | $LDU r8,$BNSZ(r5) |
1681 | adde r8,r7,r8 | 1591 | adde r8,r7,r8 |
1682 | $STU r8,$BNSZ(r3) | 1592 | $STU r8,$BNSZ(r3) |
1683 | bc BO_dCTR_NZERO,CR0_EQ,Lppcasm_add_mainloop | 1593 | bdnz- Lppcasm_add_mainloop |
1684 | Lppcasm_add_adios: | 1594 | Lppcasm_add_adios: |
1685 | addze r3,r0 #return carry bit. | 1595 | addze r3,r0 #return carry bit. |
1686 | bclr BO_ALWAYS,CR0_LT | 1596 | blr |
1687 | .long 0x00000000 | 1597 | .long 0x00000000 |
1688 | 1598 | ||
1689 | # | 1599 | # |
@@ -1707,24 +1617,24 @@ Lppcasm_add_adios: | |||
1707 | # r5 = d | 1617 | # r5 = d |
1708 | 1618 | ||
1709 | $UCMPI 0,r5,0 # compare r5 and 0 | 1619 | $UCMPI 0,r5,0 # compare r5 and 0 |
1710 | bc BO_IF_NOT,CR0_EQ,Lppcasm_div1 # proceed if d!=0 | 1620 | bne Lppcasm_div1 # proceed if d!=0 |
1711 | li r3,-1 # d=0 return -1 | 1621 | li r3,-1 # d=0 return -1 |
1712 | bclr BO_ALWAYS,CR0_LT | 1622 | blr |
1713 | Lppcasm_div1: | 1623 | Lppcasm_div1: |
1714 | xor r0,r0,r0 #r0=0 | 1624 | xor r0,r0,r0 #r0=0 |
1715 | li r8,$BITS | 1625 | li r8,$BITS |
1716 | $CNTLZ. r7,r5 #r7 = num leading 0s in d. | 1626 | $CNTLZ. r7,r5 #r7 = num leading 0s in d. |
1717 | bc BO_IF,CR0_EQ,Lppcasm_div2 #proceed if no leading zeros | 1627 | beq Lppcasm_div2 #proceed if no leading zeros |
1718 | subf r8,r7,r8 #r8 = BN_num_bits_word(d) | 1628 | subf r8,r7,r8 #r8 = BN_num_bits_word(d) |
1719 | $SHR. r9,r3,r8 #are there any bits above r8'th? | 1629 | $SHR. r9,r3,r8 #are there any bits above r8'th? |
1720 | $TR 16,r9,r0 #if there're, signal to dump core... | 1630 | $TR 16,r9,r0 #if there're, signal to dump core... |
1721 | Lppcasm_div2: | 1631 | Lppcasm_div2: |
1722 | $UCMP 0,r3,r5 #h>=d? | 1632 | $UCMP 0,r3,r5 #h>=d? |
1723 | bc BO_IF,CR0_LT,Lppcasm_div3 #goto Lppcasm_div3 if not | 1633 | blt Lppcasm_div3 #goto Lppcasm_div3 if not |
1724 | subf r3,r5,r3 #h-=d ; | 1634 | subf r3,r5,r3 #h-=d ; |
1725 | Lppcasm_div3: #r7 = BN_BITS2-i. so r7=i | 1635 | Lppcasm_div3: #r7 = BN_BITS2-i. so r7=i |
1726 | cmpi 0,0,r7,0 # is (i == 0)? | 1636 | cmpi 0,0,r7,0 # is (i == 0)? |
1727 | bc BO_IF,CR0_EQ,Lppcasm_div4 | 1637 | beq Lppcasm_div4 |
1728 | $SHL r3,r3,r7 # h = (h<< i) | 1638 | $SHL r3,r3,r7 # h = (h<< i) |
1729 | $SHR r8,r4,r8 # r8 = (l >> BN_BITS2 -i) | 1639 | $SHR r8,r4,r8 # r8 = (l >> BN_BITS2 -i) |
1730 | $SHL r5,r5,r7 # d<<=i | 1640 | $SHL r5,r5,r7 # d<<=i |
@@ -1741,7 +1651,7 @@ Lppcasm_divouterloop: | |||
1741 | $SHRI r11,r4,`$BITS/2` #r11= (l&BN_MASK2h)>>BN_BITS4 | 1651 | $SHRI r11,r4,`$BITS/2` #r11= (l&BN_MASK2h)>>BN_BITS4 |
1742 | # compute here for innerloop. | 1652 | # compute here for innerloop. |
1743 | $UCMP 0,r8,r9 # is (h>>BN_BITS4)==dh | 1653 | $UCMP 0,r8,r9 # is (h>>BN_BITS4)==dh |
1744 | bc BO_IF_NOT,CR0_EQ,Lppcasm_div5 # goto Lppcasm_div5 if not | 1654 | bne Lppcasm_div5 # goto Lppcasm_div5 if not |
1745 | 1655 | ||
1746 | li r8,-1 | 1656 | li r8,-1 |
1747 | $CLRU r8,r8,`$BITS/2` #q = BN_MASK2l | 1657 | $CLRU r8,r8,`$BITS/2` #q = BN_MASK2l |
@@ -1762,9 +1672,9 @@ Lppcasm_divinnerloop: | |||
1762 | # the following 2 instructions do that | 1672 | # the following 2 instructions do that |
1763 | $SHLI r7,r10,`$BITS/2` # r7 = (t<<BN_BITS4) | 1673 | $SHLI r7,r10,`$BITS/2` # r7 = (t<<BN_BITS4) |
1764 | or r7,r7,r11 # r7|=((l&BN_MASK2h)>>BN_BITS4) | 1674 | or r7,r7,r11 # r7|=((l&BN_MASK2h)>>BN_BITS4) |
1765 | $UCMP 1,r6,r7 # compare (tl <= r7) | 1675 | $UCMP cr1,r6,r7 # compare (tl <= r7) |
1766 | bc BO_IF_NOT,CR0_EQ,Lppcasm_divinnerexit | 1676 | bne Lppcasm_divinnerexit |
1767 | bc BO_IF_NOT,CR1_FEX,Lppcasm_divinnerexit | 1677 | ble cr1,Lppcasm_divinnerexit |
1768 | addi r8,r8,-1 #q-- | 1678 | addi r8,r8,-1 #q-- |
1769 | subf r12,r9,r12 #th -=dh | 1679 | subf r12,r9,r12 #th -=dh |
1770 | $CLRU r10,r5,`$BITS/2` #r10=dl. t is no longer needed in loop. | 1680 | $CLRU r10,r5,`$BITS/2` #r10=dl. t is no longer needed in loop. |
@@ -1773,14 +1683,14 @@ Lppcasm_divinnerloop: | |||
1773 | Lppcasm_divinnerexit: | 1683 | Lppcasm_divinnerexit: |
1774 | $SHRI r10,r6,`$BITS/2` #t=(tl>>BN_BITS4) | 1684 | $SHRI r10,r6,`$BITS/2` #t=(tl>>BN_BITS4) |
1775 | $SHLI r11,r6,`$BITS/2` #tl=(tl<<BN_BITS4)&BN_MASK2h; | 1685 | $SHLI r11,r6,`$BITS/2` #tl=(tl<<BN_BITS4)&BN_MASK2h; |
1776 | $UCMP 1,r4,r11 # compare l and tl | 1686 | $UCMP cr1,r4,r11 # compare l and tl |
1777 | add r12,r12,r10 # th+=t | 1687 | add r12,r12,r10 # th+=t |
1778 | bc BO_IF_NOT,CR1_FX,Lppcasm_div7 # if (l>=tl) goto Lppcasm_div7 | 1688 | bge cr1,Lppcasm_div7 # if (l>=tl) goto Lppcasm_div7 |
1779 | addi r12,r12,1 # th++ | 1689 | addi r12,r12,1 # th++ |
1780 | Lppcasm_div7: | 1690 | Lppcasm_div7: |
1781 | subf r11,r11,r4 #r11=l-tl | 1691 | subf r11,r11,r4 #r11=l-tl |
1782 | $UCMP 1,r3,r12 #compare h and th | 1692 | $UCMP cr1,r3,r12 #compare h and th |
1783 | bc BO_IF_NOT,CR1_FX,Lppcasm_div8 #if (h>=th) goto Lppcasm_div8 | 1693 | bge cr1,Lppcasm_div8 #if (h>=th) goto Lppcasm_div8 |
1784 | addi r8,r8,-1 # q-- | 1694 | addi r8,r8,-1 # q-- |
1785 | add r3,r5,r3 # h+=d | 1695 | add r3,r5,r3 # h+=d |
1786 | Lppcasm_div8: | 1696 | Lppcasm_div8: |
@@ -1791,12 +1701,12 @@ Lppcasm_div8: | |||
1791 | # the following 2 instructions will do this. | 1701 | # the following 2 instructions will do this. |
1792 | $INSR r11,r12,`$BITS/2`,`$BITS/2` # r11 is the value we want rotated $BITS/2. | 1702 | $INSR r11,r12,`$BITS/2`,`$BITS/2` # r11 is the value we want rotated $BITS/2. |
1793 | $ROTL r3,r11,`$BITS/2` # rotate by $BITS/2 and store in r3 | 1703 | $ROTL r3,r11,`$BITS/2` # rotate by $BITS/2 and store in r3 |
1794 | bc BO_dCTR_ZERO,CR0_EQ,Lppcasm_div9#if (count==0) break ; | 1704 | bdz Lppcasm_div9 #if (count==0) break ; |
1795 | $SHLI r0,r8,`$BITS/2` #ret =q<<BN_BITS4 | 1705 | $SHLI r0,r8,`$BITS/2` #ret =q<<BN_BITS4 |
1796 | b Lppcasm_divouterloop | 1706 | b Lppcasm_divouterloop |
1797 | Lppcasm_div9: | 1707 | Lppcasm_div9: |
1798 | or r3,r8,r0 | 1708 | or r3,r8,r0 |
1799 | bclr BO_ALWAYS,CR0_LT | 1709 | blr |
1800 | .long 0x00000000 | 1710 | .long 0x00000000 |
1801 | 1711 | ||
1802 | # | 1712 | # |
@@ -1822,7 +1732,7 @@ Lppcasm_div9: | |||
1822 | # No unrolling done here. Not performance critical. | 1732 | # No unrolling done here. Not performance critical. |
1823 | 1733 | ||
1824 | addic. r5,r5,0 #test r5. | 1734 | addic. r5,r5,0 #test r5. |
1825 | bc BO_IF,CR0_EQ,Lppcasm_sqr_adios | 1735 | beq Lppcasm_sqr_adios |
1826 | addi r4,r4,-$BNSZ | 1736 | addi r4,r4,-$BNSZ |
1827 | addi r3,r3,-$BNSZ | 1737 | addi r3,r3,-$BNSZ |
1828 | mtctr r5 | 1738 | mtctr r5 |
@@ -1833,9 +1743,9 @@ Lppcasm_sqr_mainloop: | |||
1833 | $UMULH r8,r6,r6 | 1743 | $UMULH r8,r6,r6 |
1834 | $STU r7,$BNSZ(r3) | 1744 | $STU r7,$BNSZ(r3) |
1835 | $STU r8,$BNSZ(r3) | 1745 | $STU r8,$BNSZ(r3) |
1836 | bc BO_dCTR_NZERO,CR0_EQ,Lppcasm_sqr_mainloop | 1746 | bdnz- Lppcasm_sqr_mainloop |
1837 | Lppcasm_sqr_adios: | 1747 | Lppcasm_sqr_adios: |
1838 | bclr BO_ALWAYS,CR0_LT | 1748 | blr |
1839 | .long 0x00000000 | 1749 | .long 0x00000000 |
1840 | 1750 | ||
1841 | 1751 | ||
@@ -1858,7 +1768,7 @@ Lppcasm_sqr_adios: | |||
1858 | xor r0,r0,r0 | 1768 | xor r0,r0,r0 |
1859 | xor r12,r12,r12 # used for carry | 1769 | xor r12,r12,r12 # used for carry |
1860 | rlwinm. r7,r5,30,2,31 # num >> 2 | 1770 | rlwinm. r7,r5,30,2,31 # num >> 2 |
1861 | bc BO_IF,CR0_EQ,Lppcasm_mw_REM | 1771 | beq Lppcasm_mw_REM |
1862 | mtctr r7 | 1772 | mtctr r7 |
1863 | Lppcasm_mw_LOOP: | 1773 | Lppcasm_mw_LOOP: |
1864 | #mul(rp[0],ap[0],w,c1); | 1774 | #mul(rp[0],ap[0],w,c1); |
@@ -1896,11 +1806,11 @@ Lppcasm_mw_LOOP: | |||
1896 | 1806 | ||
1897 | addi r3,r3,`4*$BNSZ` | 1807 | addi r3,r3,`4*$BNSZ` |
1898 | addi r4,r4,`4*$BNSZ` | 1808 | addi r4,r4,`4*$BNSZ` |
1899 | bc BO_dCTR_NZERO,CR0_EQ,Lppcasm_mw_LOOP | 1809 | bdnz- Lppcasm_mw_LOOP |
1900 | 1810 | ||
1901 | Lppcasm_mw_REM: | 1811 | Lppcasm_mw_REM: |
1902 | andi. r5,r5,0x3 | 1812 | andi. r5,r5,0x3 |
1903 | bc BO_IF,CR0_EQ,Lppcasm_mw_OVER | 1813 | beq Lppcasm_mw_OVER |
1904 | #mul(rp[0],ap[0],w,c1); | 1814 | #mul(rp[0],ap[0],w,c1); |
1905 | $LD r8,`0*$BNSZ`(r4) | 1815 | $LD r8,`0*$BNSZ`(r4) |
1906 | $UMULL r9,r6,r8 | 1816 | $UMULL r9,r6,r8 |
@@ -1912,7 +1822,7 @@ Lppcasm_mw_REM: | |||
1912 | 1822 | ||
1913 | addi r5,r5,-1 | 1823 | addi r5,r5,-1 |
1914 | cmpli 0,0,r5,0 | 1824 | cmpli 0,0,r5,0 |
1915 | bc BO_IF,CR0_EQ,Lppcasm_mw_OVER | 1825 | beq Lppcasm_mw_OVER |
1916 | 1826 | ||
1917 | 1827 | ||
1918 | #mul(rp[1],ap[1],w,c1); | 1828 | #mul(rp[1],ap[1],w,c1); |
@@ -1926,7 +1836,7 @@ Lppcasm_mw_REM: | |||
1926 | 1836 | ||
1927 | addi r5,r5,-1 | 1837 | addi r5,r5,-1 |
1928 | cmpli 0,0,r5,0 | 1838 | cmpli 0,0,r5,0 |
1929 | bc BO_IF,CR0_EQ,Lppcasm_mw_OVER | 1839 | beq Lppcasm_mw_OVER |
1930 | 1840 | ||
1931 | #mul_add(rp[2],ap[2],w,c1); | 1841 | #mul_add(rp[2],ap[2],w,c1); |
1932 | $LD r8,`2*$BNSZ`(r4) | 1842 | $LD r8,`2*$BNSZ`(r4) |
@@ -1939,7 +1849,7 @@ Lppcasm_mw_REM: | |||
1939 | 1849 | ||
1940 | Lppcasm_mw_OVER: | 1850 | Lppcasm_mw_OVER: |
1941 | addi r3,r12,0 | 1851 | addi r3,r12,0 |
1942 | bclr BO_ALWAYS,CR0_LT | 1852 | blr |
1943 | .long 0x00000000 | 1853 | .long 0x00000000 |
1944 | 1854 | ||
1945 | # | 1855 | # |
@@ -1964,7 +1874,7 @@ Lppcasm_mw_OVER: | |||
1964 | xor r0,r0,r0 #r0 = 0 | 1874 | xor r0,r0,r0 #r0 = 0 |
1965 | xor r12,r12,r12 #r12 = 0 . used for carry | 1875 | xor r12,r12,r12 #r12 = 0 . used for carry |
1966 | rlwinm. r7,r5,30,2,31 # num >> 2 | 1876 | rlwinm. r7,r5,30,2,31 # num >> 2 |
1967 | bc BO_IF,CR0_EQ,Lppcasm_maw_leftover # if (num < 4) go LPPCASM_maw_leftover | 1877 | beq Lppcasm_maw_leftover # if (num < 4) go LPPCASM_maw_leftover |
1968 | mtctr r7 | 1878 | mtctr r7 |
1969 | Lppcasm_maw_mainloop: | 1879 | Lppcasm_maw_mainloop: |
1970 | #mul_add(rp[0],ap[0],w,c1); | 1880 | #mul_add(rp[0],ap[0],w,c1); |
@@ -2017,11 +1927,11 @@ Lppcasm_maw_mainloop: | |||
2017 | $ST r11,`3*$BNSZ`(r3) | 1927 | $ST r11,`3*$BNSZ`(r3) |
2018 | addi r3,r3,`4*$BNSZ` | 1928 | addi r3,r3,`4*$BNSZ` |
2019 | addi r4,r4,`4*$BNSZ` | 1929 | addi r4,r4,`4*$BNSZ` |
2020 | bc BO_dCTR_NZERO,CR0_EQ,Lppcasm_maw_mainloop | 1930 | bdnz- Lppcasm_maw_mainloop |
2021 | 1931 | ||
2022 | Lppcasm_maw_leftover: | 1932 | Lppcasm_maw_leftover: |
2023 | andi. r5,r5,0x3 | 1933 | andi. r5,r5,0x3 |
2024 | bc BO_IF,CR0_EQ,Lppcasm_maw_adios | 1934 | beq Lppcasm_maw_adios |
2025 | addi r3,r3,-$BNSZ | 1935 | addi r3,r3,-$BNSZ |
2026 | addi r4,r4,-$BNSZ | 1936 | addi r4,r4,-$BNSZ |
2027 | #mul_add(rp[0],ap[0],w,c1); | 1937 | #mul_add(rp[0],ap[0],w,c1); |
@@ -2036,7 +1946,7 @@ Lppcasm_maw_leftover: | |||
2036 | addze r12,r10 | 1946 | addze r12,r10 |
2037 | $ST r9,0(r3) | 1947 | $ST r9,0(r3) |
2038 | 1948 | ||
2039 | bc BO_dCTR_ZERO,CR0_EQ,Lppcasm_maw_adios | 1949 | bdz Lppcasm_maw_adios |
2040 | #mul_add(rp[1],ap[1],w,c1); | 1950 | #mul_add(rp[1],ap[1],w,c1); |
2041 | $LDU r8,$BNSZ(r4) | 1951 | $LDU r8,$BNSZ(r4) |
2042 | $UMULL r9,r6,r8 | 1952 | $UMULL r9,r6,r8 |
@@ -2048,7 +1958,7 @@ Lppcasm_maw_leftover: | |||
2048 | addze r12,r10 | 1958 | addze r12,r10 |
2049 | $ST r9,0(r3) | 1959 | $ST r9,0(r3) |
2050 | 1960 | ||
2051 | bc BO_dCTR_ZERO,CR0_EQ,Lppcasm_maw_adios | 1961 | bdz Lppcasm_maw_adios |
2052 | #mul_add(rp[2],ap[2],w,c1); | 1962 | #mul_add(rp[2],ap[2],w,c1); |
2053 | $LDU r8,$BNSZ(r4) | 1963 | $LDU r8,$BNSZ(r4) |
2054 | $UMULL r9,r6,r8 | 1964 | $UMULL r9,r6,r8 |
@@ -2062,17 +1972,10 @@ Lppcasm_maw_leftover: | |||
2062 | 1972 | ||
2063 | Lppcasm_maw_adios: | 1973 | Lppcasm_maw_adios: |
2064 | addi r3,r12,0 | 1974 | addi r3,r12,0 |
2065 | bclr BO_ALWAYS,CR0_LT | 1975 | blr |
2066 | .long 0x00000000 | 1976 | .long 0x00000000 |
2067 | .align 4 | 1977 | .align 4 |
2068 | EOF | 1978 | EOF |
2069 | $data =~ s/\`([^\`]*)\`/eval $1/gem; | 1979 | $data =~ s/\`([^\`]*)\`/eval $1/gem; |
2070 | 1980 | print $data; | |
2071 | # if some assembler chokes on some simplified mnemonic, | 1981 | close STDOUT; |
2072 | # this is the spot to fix it up, e.g.: | ||
2073 | # GNU as doesn't seem to accept cmplw, 32-bit unsigned compare | ||
2074 | $data =~ s/^(\s*)cmplw(\s+)([^,]+),(.*)/$1cmpl$2$3,0,$4/gm; | ||
2075 | # assembler X doesn't accept li, load immediate value | ||
2076 | #$data =~ s/^(\s*)li(\s+)([^,]+),(.*)/$1addi$2$3,0,$4/gm; | ||
2077 | return($data); | ||
2078 | } | ||
diff --git a/src/lib/libssl/src/crypto/bn/asm/x86_64-gcc.c b/src/lib/libssl/src/crypto/bn/asm/x86_64-gcc.c index f13f52dd85..acb0b40118 100644 --- a/src/lib/libssl/src/crypto/bn/asm/x86_64-gcc.c +++ b/src/lib/libssl/src/crypto/bn/asm/x86_64-gcc.c | |||
@@ -1,4 +1,5 @@ | |||
1 | #ifdef __SUNPRO_C | 1 | #include "../bn_lcl.h" |
2 | #if !(defined(__GNUC__) && __GNUC__>=2) | ||
2 | # include "../bn_asm.c" /* kind of dirty hack for Sun Studio */ | 3 | # include "../bn_asm.c" /* kind of dirty hack for Sun Studio */ |
3 | #else | 4 | #else |
4 | /* | 5 | /* |
@@ -54,7 +55,15 @@ | |||
54 | * machine. | 55 | * machine. |
55 | */ | 56 | */ |
56 | 57 | ||
58 | #ifdef _WIN64 | ||
59 | #define BN_ULONG unsigned long long | ||
60 | #else | ||
57 | #define BN_ULONG unsigned long | 61 | #define BN_ULONG unsigned long |
62 | #endif | ||
63 | |||
64 | #undef mul | ||
65 | #undef mul_add | ||
66 | #undef sqr | ||
58 | 67 | ||
59 | /* | 68 | /* |
60 | * "m"(a), "+m"(r) is the way to favor DirectPath µ-code; | 69 | * "m"(a), "+m"(r) is the way to favor DirectPath µ-code; |
@@ -97,7 +106,7 @@ | |||
97 | : "a"(a) \ | 106 | : "a"(a) \ |
98 | : "cc"); | 107 | : "cc"); |
99 | 108 | ||
100 | BN_ULONG bn_mul_add_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w) | 109 | BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) |
101 | { | 110 | { |
102 | BN_ULONG c1=0; | 111 | BN_ULONG c1=0; |
103 | 112 | ||
@@ -121,7 +130,7 @@ BN_ULONG bn_mul_add_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w) | |||
121 | return(c1); | 130 | return(c1); |
122 | } | 131 | } |
123 | 132 | ||
124 | BN_ULONG bn_mul_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w) | 133 | BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) |
125 | { | 134 | { |
126 | BN_ULONG c1=0; | 135 | BN_ULONG c1=0; |
127 | 136 | ||
@@ -144,7 +153,7 @@ BN_ULONG bn_mul_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w) | |||
144 | return(c1); | 153 | return(c1); |
145 | } | 154 | } |
146 | 155 | ||
147 | void bn_sqr_words(BN_ULONG *r, BN_ULONG *a, int n) | 156 | void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) |
148 | { | 157 | { |
149 | if (n <= 0) return; | 158 | if (n <= 0) return; |
150 | 159 | ||
@@ -175,14 +184,14 @@ BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d) | |||
175 | return ret; | 184 | return ret; |
176 | } | 185 | } |
177 | 186 | ||
178 | BN_ULONG bn_add_words (BN_ULONG *rp, BN_ULONG *ap, BN_ULONG *bp,int n) | 187 | BN_ULONG bn_add_words (BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int n) |
179 | { BN_ULONG ret=0,i=0; | 188 | { BN_ULONG ret=0,i=0; |
180 | 189 | ||
181 | if (n <= 0) return 0; | 190 | if (n <= 0) return 0; |
182 | 191 | ||
183 | asm ( | 192 | asm ( |
184 | " subq %2,%2 \n" | 193 | " subq %2,%2 \n" |
185 | ".align 16 \n" | 194 | ".p2align 4 \n" |
186 | "1: movq (%4,%2,8),%0 \n" | 195 | "1: movq (%4,%2,8),%0 \n" |
187 | " adcq (%5,%2,8),%0 \n" | 196 | " adcq (%5,%2,8),%0 \n" |
188 | " movq %0,(%3,%2,8) \n" | 197 | " movq %0,(%3,%2,8) \n" |
@@ -198,14 +207,14 @@ BN_ULONG bn_add_words (BN_ULONG *rp, BN_ULONG *ap, BN_ULONG *bp,int n) | |||
198 | } | 207 | } |
199 | 208 | ||
200 | #ifndef SIMICS | 209 | #ifndef SIMICS |
201 | BN_ULONG bn_sub_words (BN_ULONG *rp, BN_ULONG *ap, BN_ULONG *bp,int n) | 210 | BN_ULONG bn_sub_words (BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int n) |
202 | { BN_ULONG ret=0,i=0; | 211 | { BN_ULONG ret=0,i=0; |
203 | 212 | ||
204 | if (n <= 0) return 0; | 213 | if (n <= 0) return 0; |
205 | 214 | ||
206 | asm ( | 215 | asm ( |
207 | " subq %2,%2 \n" | 216 | " subq %2,%2 \n" |
208 | ".align 16 \n" | 217 | ".p2align 4 \n" |
209 | "1: movq (%4,%2,8),%0 \n" | 218 | "1: movq (%4,%2,8),%0 \n" |
210 | " sbbq (%5,%2,8),%0 \n" | 219 | " sbbq (%5,%2,8),%0 \n" |
211 | " movq %0,(%3,%2,8) \n" | 220 | " movq %0,(%3,%2,8) \n" |
@@ -485,7 +494,7 @@ void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) | |||
485 | r[7]=c2; | 494 | r[7]=c2; |
486 | } | 495 | } |
487 | 496 | ||
488 | void bn_sqr_comba8(BN_ULONG *r, BN_ULONG *a) | 497 | void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) |
489 | { | 498 | { |
490 | BN_ULONG t1,t2; | 499 | BN_ULONG t1,t2; |
491 | BN_ULONG c1,c2,c3; | 500 | BN_ULONG c1,c2,c3; |
@@ -561,7 +570,7 @@ void bn_sqr_comba8(BN_ULONG *r, BN_ULONG *a) | |||
561 | r[15]=c1; | 570 | r[15]=c1; |
562 | } | 571 | } |
563 | 572 | ||
564 | void bn_sqr_comba4(BN_ULONG *r, BN_ULONG *a) | 573 | void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a) |
565 | { | 574 | { |
566 | BN_ULONG t1,t2; | 575 | BN_ULONG t1,t2; |
567 | BN_ULONG c1,c2,c3; | 576 | BN_ULONG c1,c2,c3; |
diff --git a/src/lib/libssl/src/crypto/buffer/Makefile b/src/lib/libssl/src/crypto/buffer/Makefile index 9e0f46e19a..9f3a88d2d6 100644 --- a/src/lib/libssl/src/crypto/buffer/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/cast/Makefile b/src/lib/libssl/src/crypto/cast/Makefile index 2e026dbe0d..0acc38f28d 100644 --- a/src/lib/libssl/src/crypto/cast/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/comp/Makefile b/src/lib/libssl/src/crypto/comp/Makefile index 5d364b8513..efda832dce 100644 --- a/src/lib/libssl/src/crypto/comp/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/conf/Makefile b/src/lib/libssl/src/crypto/conf/Makefile index ccd0721332..78bb324106 100644 --- a/src/lib/libssl/src/crypto/conf/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/des/Makefile b/src/lib/libssl/src/crypto/des/Makefile index 786e68802e..ae982265fd 100644 --- a/src/lib/libssl/src/crypto/des/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/dso/Makefile b/src/lib/libssl/src/crypto/dso/Makefile index 52f152888c..fb2709ed63 100644 --- a/src/lib/libssl/src/crypto/dso/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ec/Makefile b/src/lib/libssl/src/crypto/ec/Makefile index b5bbc9faa1..db380ed16f 100644 --- a/src/lib/libssl/src/crypto/ec/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/engine/eng_cryptodev.c b/src/lib/libssl/src/crypto/engine/eng_cryptodev.c index ab38cd52f0..52f4ca3901 100644 --- a/src/lib/libssl/src/crypto/engine/eng_cryptodev.c +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/err/Makefile b/src/lib/libssl/src/crypto/err/Makefile index 91d1379d41..862b23ba17 100644 --- a/src/lib/libssl/src/crypto/err/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/hmac/Makefile b/src/lib/libssl/src/crypto/hmac/Makefile index 5cfa37d99c..0e91709f64 100644 --- a/src/lib/libssl/src/crypto/hmac/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/idea/Makefile b/src/lib/libssl/src/crypto/idea/Makefile index 55c0d4dbff..b2e7add666 100644 --- a/src/lib/libssl/src/crypto/idea/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/krb5/Makefile b/src/lib/libssl/src/crypto/krb5/Makefile index 8efb9e8910..14077390d6 100644 --- a/src/lib/libssl/src/crypto/krb5/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/lhash/Makefile b/src/lib/libssl/src/crypto/lhash/Makefile index 35f0932971..82bddac474 100644 --- a/src/lib/libssl/src/crypto/lhash/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/md2/Makefile b/src/lib/libssl/src/crypto/md2/Makefile index 7f43321ab2..17f878aeb7 100644 --- a/src/lib/libssl/src/crypto/md2/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/md4/Makefile b/src/lib/libssl/src/crypto/md4/Makefile index 0bc4896585..c94a1398ed 100644 --- a/src/lib/libssl/src/crypto/md4/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/md5/Makefile b/src/lib/libssl/src/crypto/md5/Makefile index 3c450fcfc0..9858d53d31 100644 --- a/src/lib/libssl/src/crypto/md5/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/o_str.c b/src/lib/libssl/src/crypto/o_str.c index 59cc25094b..56104a6c34 100644 --- a/src/lib/libssl/src/crypto/o_str.c +++ b/src/lib/libssl/src/crypto/o_str.c | |||
@@ -60,7 +60,9 @@ | |||
60 | #include <e_os.h> | 60 | #include <e_os.h> |
61 | #include "o_str.h" | 61 | #include "o_str.h" |
62 | 62 | ||
63 | #if !defined(OPENSSL_IMPLEMENTS_strncasecmp) && !defined(OPENSSL_SYSNAME_WIN32) | 63 | #if !defined(OPENSSL_IMPLEMENTS_strncasecmp) && \ |
64 | !defined(OPENSSL_SYSNAME_WIN32) && \ | ||
65 | !defined(NETWARE_CLIB) | ||
64 | # include <strings.h> | 66 | # include <strings.h> |
65 | #endif | 67 | #endif |
66 | 68 | ||
diff --git a/src/lib/libssl/src/crypto/objects/Makefile b/src/lib/libssl/src/crypto/objects/Makefile index 25e8b23b5d..a8aedbd422 100644 --- a/src/lib/libssl/src/crypto/objects/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ocsp/Makefile b/src/lib/libssl/src/crypto/ocsp/Makefile index 30a00b3372..60c414cf4d 100644 --- a/src/lib/libssl/src/crypto/ocsp/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/pem/Makefile b/src/lib/libssl/src/crypto/pem/Makefile index 669f36612c..2cc7801529 100644 --- a/src/lib/libssl/src/crypto/pem/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/pkcs12/Makefile b/src/lib/libssl/src/crypto/pkcs12/Makefile index eed226b30d..3a7498fe7a 100644 --- a/src/lib/libssl/src/crypto/pkcs12/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/pkcs7/Makefile b/src/lib/libssl/src/crypto/pkcs7/Makefile index 790d8edf36..56dc6823d1 100644 --- a/src/lib/libssl/src/crypto/pkcs7/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc2/Makefile b/src/lib/libssl/src/crypto/rc2/Makefile index 4b6292b65f..73eac347e7 100644 --- a/src/lib/libssl/src/crypto/rc2/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc4/Makefile b/src/lib/libssl/src/crypto/rc4/Makefile index f0bd7678fc..264451a213 100644 --- a/src/lib/libssl/src/crypto/rc4/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc5/Makefile b/src/lib/libssl/src/crypto/rc5/Makefile index b4e21c9bb2..8a8b00eb89 100644 --- a/src/lib/libssl/src/crypto/rc5/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ripemd/Makefile b/src/lib/libssl/src/crypto/ripemd/Makefile index 6145f13699..d5b1067dbe 100644 --- a/src/lib/libssl/src/crypto/ripemd/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/sha/Makefile b/src/lib/libssl/src/crypto/sha/Makefile index f4741b9ee6..e6eccb05f9 100644 --- a/src/lib/libssl/src/crypto/sha/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/stack/Makefile b/src/lib/libssl/src/crypto/stack/Makefile index 489a77b93c..5327692ac8 100644 --- a/src/lib/libssl/src/crypto/stack/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/txt_db/Makefile b/src/lib/libssl/src/crypto/txt_db/Makefile index 87e57b49f6..e6f30331d8 100644 --- a/src/lib/libssl/src/crypto/txt_db/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ui/Makefile b/src/lib/libssl/src/crypto/ui/Makefile index 4755e206f6..a685659fb4 100644 --- a/src/lib/libssl/src/crypto/ui/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/x509/Makefile b/src/lib/libssl/src/crypto/x509/Makefile index 464752b159..72c82278f4 100644 --- a/src/lib/libssl/src/crypto/x509/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/x509v3/Makefile b/src/lib/libssl/src/crypto/x509v3/Makefile index e71dc42f9f..556ef351bf 100644 --- a/src/lib/libssl/src/crypto/x509v3/Makefile +++ b/src/lib/libssl/src/crypto/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 | ||
diff --git a/src/lib/libssl/src/crypto/x509v3/v3_pci.c b/src/lib/libssl/src/crypto/x509v3/v3_pci.c index 601211f416..0dcfa004fe 100644 --- a/src/lib/libssl/src/crypto/x509v3/v3_pci.c +++ b/src/lib/libssl/src/crypto/x509v3/v3_pci.c | |||
@@ -82,7 +82,7 @@ static int process_pci_value(CONF_VALUE *val, | |||
82 | { | 82 | { |
83 | if (*language) | 83 | if (*language) |
84 | { | 84 | { |
85 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_POLICY_LANGUAGE_ALREADTY_DEFINED); | 85 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_POLICY_LANGUAGE_ALREADY_DEFINED); |
86 | X509V3_conf_err(val); | 86 | X509V3_conf_err(val); |
87 | return 0; | 87 | return 0; |
88 | } | 88 | } |
@@ -97,7 +97,7 @@ static int process_pci_value(CONF_VALUE *val, | |||
97 | { | 97 | { |
98 | if (*pathlen) | 98 | if (*pathlen) |
99 | { | 99 | { |
100 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_POLICY_PATH_LENGTH_ALREADTY_DEFINED); | 100 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_POLICY_PATH_LENGTH_ALREADY_DEFINED); |
101 | X509V3_conf_err(val); | 101 | X509V3_conf_err(val); |
102 | return 0; | 102 | return 0; |
103 | } | 103 | } |
@@ -128,7 +128,12 @@ static int process_pci_value(CONF_VALUE *val, | |||
128 | unsigned char *tmp_data2 = | 128 | unsigned char *tmp_data2 = |
129 | string_to_hex(val->value + 4, &val_len); | 129 | string_to_hex(val->value + 4, &val_len); |
130 | 130 | ||
131 | if (!tmp_data2) goto err; | 131 | if (!tmp_data2) |
132 | { | ||
133 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_ILLEGAL_HEX_DIGIT); | ||
134 | X509V3_conf_err(val); | ||
135 | goto err; | ||
136 | } | ||
132 | 137 | ||
133 | tmp_data = OPENSSL_realloc((*policy)->data, | 138 | tmp_data = OPENSSL_realloc((*policy)->data, |
134 | (*policy)->length + val_len + 1); | 139 | (*policy)->length + val_len + 1); |
@@ -140,6 +145,17 @@ static int process_pci_value(CONF_VALUE *val, | |||
140 | (*policy)->length += val_len; | 145 | (*policy)->length += val_len; |
141 | (*policy)->data[(*policy)->length] = '\0'; | 146 | (*policy)->data[(*policy)->length] = '\0'; |
142 | } | 147 | } |
148 | else | ||
149 | { | ||
150 | OPENSSL_free(tmp_data2); | ||
151 | /* realloc failure implies the original data space is b0rked too! */ | ||
152 | (*policy)->data = NULL; | ||
153 | (*policy)->length = 0; | ||
154 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,ERR_R_MALLOC_FAILURE); | ||
155 | X509V3_conf_err(val); | ||
156 | goto err; | ||
157 | } | ||
158 | OPENSSL_free(tmp_data2); | ||
143 | } | 159 | } |
144 | else if (strncmp(val->value, "file:", 5) == 0) | 160 | else if (strncmp(val->value, "file:", 5) == 0) |
145 | { | 161 | { |
@@ -169,6 +185,7 @@ static int process_pci_value(CONF_VALUE *val, | |||
169 | (*policy)->length += n; | 185 | (*policy)->length += n; |
170 | (*policy)->data[(*policy)->length] = '\0'; | 186 | (*policy)->data[(*policy)->length] = '\0'; |
171 | } | 187 | } |
188 | BIO_free_all(b); | ||
172 | 189 | ||
173 | if (n < 0) | 190 | if (n < 0) |
174 | { | 191 | { |
@@ -190,6 +207,15 @@ static int process_pci_value(CONF_VALUE *val, | |||
190 | (*policy)->length += val_len; | 207 | (*policy)->length += val_len; |
191 | (*policy)->data[(*policy)->length] = '\0'; | 208 | (*policy)->data[(*policy)->length] = '\0'; |
192 | } | 209 | } |
210 | else | ||
211 | { | ||
212 | /* realloc failure implies the original data space is b0rked too! */ | ||
213 | (*policy)->data = NULL; | ||
214 | (*policy)->length = 0; | ||
215 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,ERR_R_MALLOC_FAILURE); | ||
216 | X509V3_conf_err(val); | ||
217 | goto err; | ||
218 | } | ||
193 | } | 219 | } |
194 | else | 220 | else |
195 | { | 221 | { |
diff --git a/src/lib/libssl/src/demos/engines/rsaref/build.com b/src/lib/libssl/src/demos/engines/rsaref/build.com index b956912916..72b013d45e 100644 --- a/src/lib/libssl/src/demos/engines/rsaref/build.com +++ b/src/lib/libssl/src/demos/engines/rsaref/build.com | |||
@@ -7,6 +7,14 @@ $ write sys$error "RSAref 2.0 hasn't been properly extracted." | |||
7 | $ exit | 7 | $ exit |
8 | $ endif | 8 | $ endif |
9 | $ | 9 | $ |
10 | $ if (f$getsyi("cpu").lt.128) | ||
11 | $ then | ||
12 | $ arch := vax | ||
13 | $ else | ||
14 | $ arch = f$edit( f$getsyi( "ARCH_NAME"), "UPCASE") | ||
15 | $ if (arch .eqs. "") then arch = "UNK" | ||
16 | $ endif | ||
17 | $ | ||
10 | $ _save_default = f$environment("default") | 18 | $ _save_default = f$environment("default") |
11 | $ set default [.install] | 19 | $ set default [.install] |
12 | $ files := desc,digit,md2c,md5c,nn,prime,- | 20 | $ files := desc,digit,md2c,md5c,nn,prime,- |
@@ -29,14 +37,8 @@ $ set default [-] | |||
29 | $ define/user openssl [---.include.openssl] | 37 | $ define/user openssl [---.include.openssl] |
30 | $ cc/define=ENGINE_DYNAMIC_SUPPORT rsaref.c | 38 | $ cc/define=ENGINE_DYNAMIC_SUPPORT rsaref.c |
31 | $ | 39 | $ |
32 | $ if f$getsyi("CPU") .ge. 128 | 40 | $ if arch .eqs. "VAX" |
33 | $ then | 41 | $ then |
34 | $ link/share=librsaref.exe sys$input:/option | ||
35 | []rsaref.obj | ||
36 | [.install]rsaref.olb/lib | ||
37 | [---.axp.exe.crypto]libcrypto.olb/lib | ||
38 | symbol_vector=(bind_engine=procedure,v_check=procedure) | ||
39 | $ else | ||
40 | $ macro/object=rsaref_vec.obj sys$input: | 42 | $ macro/object=rsaref_vec.obj sys$input: |
41 | ; | 43 | ; |
42 | ; Transfer vector for VAX shareable image | 44 | ; Transfer vector for VAX shareable image |
@@ -80,6 +82,24 @@ PSECT_ATTR=$CHAR_STRING_CONSTANTS,NOWRT | |||
80 | []rsaref.obj | 82 | []rsaref.obj |
81 | [.install]rsaref.olb/lib | 83 | [.install]rsaref.olb/lib |
82 | [---.vax.exe.crypto]libcrypto.olb/lib | 84 | [---.vax.exe.crypto]libcrypto.olb/lib |
85 | $ else | ||
86 | $ if arch_name .eqs. "ALPHA" | ||
87 | $ then | ||
88 | $ link/share=librsaref.exe sys$input:/option | ||
89 | []rsaref.obj | ||
90 | [.install]rsaref.olb/lib | ||
91 | [---.alpha.exe.crypto]libcrypto.olb/lib | ||
92 | symbol_vector=(bind_engine=procedure,v_check=procedure) | ||
93 | $ else | ||
94 | $ if arch_name .eqs. "IA64" | ||
95 | $ then | ||
96 | $ link /shareable=librsaref.exe sys$input: /options | ||
97 | []rsaref.obj | ||
98 | [.install]rsaref.olb/lib | ||
99 | [---.ia64.exe.crypto]libcrypto.olb/lib | ||
100 | symbol_vector=(bind_engine=procedure,v_check=procedure) | ||
101 | $ endif | ||
102 | $ endif | ||
83 | $ endif | 103 | $ endif |
84 | $ | 104 | $ |
85 | $ set default '_save_default' | 105 | $ set default '_save_default' |
diff --git a/src/lib/libssl/src/doc/crypto/ASN1_OBJECT_new.pod b/src/lib/libssl/src/doc/crypto/ASN1_OBJECT_new.pod index 51679bfcd9..9bae40fccf 100644 --- a/src/lib/libssl/src/doc/crypto/ASN1_OBJECT_new.pod +++ b/src/lib/libssl/src/doc/crypto/ASN1_OBJECT_new.pod | |||
@@ -6,6 +6,8 @@ ASN1_OBJECT_new, ASN1_OBJECT_free, - object allocation functions | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | #include <openssl/asn1.h> | ||
10 | |||
9 | ASN1_OBJECT *ASN1_OBJECT_new(void); | 11 | ASN1_OBJECT *ASN1_OBJECT_new(void); |
10 | void ASN1_OBJECT_free(ASN1_OBJECT *a); | 12 | void ASN1_OBJECT_free(ASN1_OBJECT *a); |
11 | 13 | ||
diff --git a/src/lib/libssl/src/doc/crypto/ASN1_STRING_length.pod b/src/lib/libssl/src/doc/crypto/ASN1_STRING_length.pod index c4ec693f17..a08e9a0fa4 100644 --- a/src/lib/libssl/src/doc/crypto/ASN1_STRING_length.pod +++ b/src/lib/libssl/src/doc/crypto/ASN1_STRING_length.pod | |||
@@ -8,6 +8,8 @@ ASN1_STRING utility functions | |||
8 | 8 | ||
9 | =head1 SYNOPSIS | 9 | =head1 SYNOPSIS |
10 | 10 | ||
11 | #include <openssl/asn1.h> | ||
12 | |||
11 | int ASN1_STRING_length(ASN1_STRING *x); | 13 | int ASN1_STRING_length(ASN1_STRING *x); |
12 | unsigned char * ASN1_STRING_data(ASN1_STRING *x); | 14 | unsigned char * ASN1_STRING_data(ASN1_STRING *x); |
13 | 15 | ||
diff --git a/src/lib/libssl/src/doc/crypto/ASN1_STRING_new.pod b/src/lib/libssl/src/doc/crypto/ASN1_STRING_new.pod index 5b1bbb7eb2..8ac2a03ae2 100644 --- a/src/lib/libssl/src/doc/crypto/ASN1_STRING_new.pod +++ b/src/lib/libssl/src/doc/crypto/ASN1_STRING_new.pod | |||
@@ -7,6 +7,8 @@ ASN1_STRING allocation functions | |||
7 | 7 | ||
8 | =head1 SYNOPSIS | 8 | =head1 SYNOPSIS |
9 | 9 | ||
10 | #include <openssl/asn1.h> | ||
11 | |||
10 | ASN1_STRING * ASN1_STRING_new(void); | 12 | ASN1_STRING * ASN1_STRING_new(void); |
11 | ASN1_STRING * ASN1_STRING_type_new(int type); | 13 | ASN1_STRING * ASN1_STRING_type_new(int type); |
12 | void ASN1_STRING_free(ASN1_STRING *a); | 14 | void ASN1_STRING_free(ASN1_STRING *a); |
diff --git a/src/lib/libssl/src/doc/crypto/EVP_PKEY_verifyrecover.pod b/src/lib/libssl/src/doc/crypto/EVP_PKEY_verifyrecover.pod new file mode 100644 index 0000000000..e2a2a8c6f8 --- /dev/null +++ b/src/lib/libssl/src/doc/crypto/EVP_PKEY_verifyrecover.pod | |||
@@ -0,0 +1,103 @@ | |||
1 | =pod | ||
2 | |||
3 | =head1 NAME | ||
4 | |||
5 | EVP_PKEY_verifyrecover_init, EVP_PKEY_verifyrecover - recover signature using a public key algorithm | ||
6 | |||
7 | =head1 SYNOPSIS | ||
8 | |||
9 | #include <openssl/evp.h> | ||
10 | |||
11 | int EVP_PKEY_verifyrecover_init(EVP_PKEY_CTX *ctx); | ||
12 | int EVP_PKEY_verifyrecover(EVP_PKEY_CTX *ctx, | ||
13 | unsigned char *rout, size_t *routlen, | ||
14 | const unsigned char *sig, size_t siglen); | ||
15 | |||
16 | =head1 DESCRIPTION | ||
17 | |||
18 | The EVP_PKEY_verifyrecover_init() function initializes a public key algorithm | ||
19 | context using key B<pkey> for a verify recover operation. | ||
20 | |||
21 | The EVP_PKEY_verifyrecover() function recovers signed data | ||
22 | using B<ctx>. The signature is specified using the B<sig> and | ||
23 | B<siglen> parameters. If B<rout> is B<NULL> then the maximum size of the output | ||
24 | buffer is written to the B<routlen> parameter. If B<rout> is not B<NULL> then | ||
25 | before the call the B<routlen> parameter should contain the length of the | ||
26 | B<rout> buffer, if the call is successful recovered data is written to | ||
27 | B<rout> and the amount of data written to B<routlen>. | ||
28 | |||
29 | =head1 NOTES | ||
30 | |||
31 | Normally an application is only interested in whether a signature verification | ||
32 | operation is successful in those cases the EVP_verify() function should be | ||
33 | used. | ||
34 | |||
35 | Sometimes however it is useful to obtain the data originally signed using a | ||
36 | signing operation. Only certain public key algorithms can recover a signature | ||
37 | in this way (for example RSA in PKCS padding mode). | ||
38 | |||
39 | After the call to EVP_PKEY_verifyrecover_init() algorithm specific control | ||
40 | operations can be performed to set any appropriate parameters for the | ||
41 | operation. | ||
42 | |||
43 | The function EVP_PKEY_verifyrecover() can be called more than once on the same | ||
44 | context if several operations are performed using the same parameters. | ||
45 | |||
46 | =head1 RETURN VALUES | ||
47 | |||
48 | EVP_PKEY_verifyrecover_init() and EVP_PKEY_verifyrecover() return 1 for success | ||
49 | and 0 or a negative value for failure. In particular a return value of -2 | ||
50 | indicates the operation is not supported by the public key algorithm. | ||
51 | |||
52 | =head1 EXAMPLE | ||
53 | |||
54 | Recover digest originally signed using PKCS#1 and SHA256 digest: | ||
55 | |||
56 | #include <openssl/evp.h> | ||
57 | #include <openssl/rsa.h> | ||
58 | |||
59 | EVP_PKEY_CTX *ctx; | ||
60 | unsigned char *rout, *sig; | ||
61 | size_t routlen, siglen; | ||
62 | EVP_PKEY *verify_key; | ||
63 | /* NB: assumes verify_key, sig and siglen are already set up | ||
64 | * and that verify_key is an RSA public key | ||
65 | */ | ||
66 | ctx = EVP_PKEY_CTX_new(verify_key); | ||
67 | if (!ctx) | ||
68 | /* Error occurred */ | ||
69 | if (EVP_PKEY_verifyrecover_init(ctx) <= 0) | ||
70 | /* Error */ | ||
71 | if (EVP_PKEY_CTX_set_rsa_padding(ctx, RSA_PKCS1_PADDING) <= 0) | ||
72 | /* Error */ | ||
73 | if (EVP_PKEY_CTX_set_signature_md(ctx, EVP_sha256()) <= 0) | ||
74 | /* Error */ | ||
75 | |||
76 | /* Determine buffer length */ | ||
77 | if (EVP_PKEY_verifyrecover(ctx, rout, &routlen, sig, siglen) <= 0) | ||
78 | /* Error */ | ||
79 | |||
80 | rout = OPENSSL_malloc(routlen); | ||
81 | |||
82 | if (!rout) | ||
83 | /* malloc failure */ | ||
84 | |||
85 | if (EVP_PKEY_verifyrecover(ctx, rout, &routlen, sig, siglen) <= 0) | ||
86 | /* Error */ | ||
87 | |||
88 | /* Recovered data is routlen bytes written to buffer rout */ | ||
89 | |||
90 | =head1 SEE ALSO | ||
91 | |||
92 | L<EVP_PKEY_CTX_new(3)|EVP_PKEY_CTX_new(3)>, | ||
93 | L<EVP_PKEY_encrypt(3)|EVP_PKEY_encrypt(3)>, | ||
94 | L<EVP_PKEY_decrypt(3)|EVP_PKEY_decrypt(3)>, | ||
95 | L<EVP_PKEY_sign(3)|EVP_PKEY_sign(3)>, | ||
96 | L<EVP_PKEY_verify(3)|EVP_PKEY_verify(3)>, | ||
97 | L<EVP_PKEY_derive(3)|EVP_PKEY_derive(3)> | ||
98 | |||
99 | =head1 HISTORY | ||
100 | |||
101 | These functions were first added to OpenSSL 1.0.0. | ||
102 | |||
103 | =cut | ||
diff --git a/src/lib/libssl/src/doc/crypto/OBJ_nid2obj.pod b/src/lib/libssl/src/doc/crypto/OBJ_nid2obj.pod index 7dcc07923f..1e45dd40f6 100644 --- a/src/lib/libssl/src/doc/crypto/OBJ_nid2obj.pod +++ b/src/lib/libssl/src/doc/crypto/OBJ_nid2obj.pod | |||
@@ -8,6 +8,8 @@ functions | |||
8 | 8 | ||
9 | =head1 SYNOPSIS | 9 | =head1 SYNOPSIS |
10 | 10 | ||
11 | #include <openssl/objects.h> | ||
12 | |||
11 | ASN1_OBJECT * OBJ_nid2obj(int n); | 13 | ASN1_OBJECT * OBJ_nid2obj(int n); |
12 | const char * OBJ_nid2ln(int n); | 14 | const char * OBJ_nid2ln(int n); |
13 | const char * OBJ_nid2sn(int n); | 15 | const char * OBJ_nid2sn(int n); |
diff --git a/src/lib/libssl/src/doc/crypto/PKCS12_parse.pod b/src/lib/libssl/src/doc/crypto/PKCS12_parse.pod index 51344f883a..c54cf2ad61 100644 --- a/src/lib/libssl/src/doc/crypto/PKCS12_parse.pod +++ b/src/lib/libssl/src/doc/crypto/PKCS12_parse.pod | |||
@@ -20,24 +20,31 @@ certificate to B<*cert> and any additional certificates to B<*ca>. | |||
20 | 20 | ||
21 | =head1 NOTES | 21 | =head1 NOTES |
22 | 22 | ||
23 | The parameters B<pkey> and B<cert> cannot be B<NULL>. B<ca> can be <NULL> | 23 | The parameters B<pkey> and B<cert> cannot be B<NULL>. B<ca> can be <NULL> in |
24 | in which case additional certificates will be discarded. B<*ca> can also | 24 | which case additional certificates will be discarded. B<*ca> can also be a |
25 | be a valid STACK in which case additional certificates are appended to | 25 | valid STACK in which case additional certificates are appended to B<*ca>. If |
26 | B<*ca>. If B<*ca> is B<NULL> a new STACK will be allocated. | 26 | B<*ca> is B<NULL> a new STACK will be allocated. |
27 | 27 | ||
28 | The B<friendlyName> and B<localKeyID> attributes (if present) on each certificate | 28 | The B<friendlyName> and B<localKeyID> attributes (if present) on each |
29 | will be stored in the B<alias> and B<keyid> attributes of the B<X509> structure. | 29 | certificate will be stored in the B<alias> and B<keyid> attributes of the |
30 | B<X509> structure. | ||
31 | |||
32 | =head1 RETURN VALUES | ||
33 | |||
34 | PKCS12_parse() returns 1 for success and zero if an error occurred. | ||
35 | |||
36 | The error can be obtained from L<ERR_get_error(3)|ERR_get_error(3)> | ||
30 | 37 | ||
31 | =head1 BUGS | 38 | =head1 BUGS |
32 | 39 | ||
33 | Only a single private key and corresponding certificate is returned by this function. | 40 | Only a single private key and corresponding certificate is returned by this |
34 | More complex PKCS#12 files with multiple private keys will only return the first | 41 | function. More complex PKCS#12 files with multiple private keys will only |
35 | match. | 42 | return the first match. |
36 | 43 | ||
37 | Only B<friendlyName> and B<localKeyID> attributes are currently stored in certificates. | 44 | Only B<friendlyName> and B<localKeyID> attributes are currently stored in |
38 | Other attributes are discarded. | 45 | certificates. Other attributes are discarded. |
39 | 46 | ||
40 | Attributes currently cannot be store in the private key B<EVP_PKEY> structure. | 47 | Attributes currently cannot be stored in the private key B<EVP_PKEY> structure. |
41 | 48 | ||
42 | =head1 SEE ALSO | 49 | =head1 SEE ALSO |
43 | 50 | ||
diff --git a/src/lib/libssl/src/doc/crypto/PKCS7_decrypt.pod b/src/lib/libssl/src/doc/crypto/PKCS7_decrypt.pod index b0ca067b89..325699d0b6 100644 --- a/src/lib/libssl/src/doc/crypto/PKCS7_decrypt.pod +++ b/src/lib/libssl/src/doc/crypto/PKCS7_decrypt.pod | |||
@@ -6,7 +6,9 @@ PKCS7_decrypt - decrypt content from a PKCS#7 envelopedData structure | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags); | 9 | #include <openssl/pkcs7.h> |
10 | |||
11 | int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags); | ||
10 | 12 | ||
11 | =head1 DESCRIPTION | 13 | =head1 DESCRIPTION |
12 | 14 | ||
diff --git a/src/lib/libssl/src/doc/crypto/PKCS7_encrypt.pod b/src/lib/libssl/src/doc/crypto/PKCS7_encrypt.pod index 1a507b22a2..2cd925a7e0 100644 --- a/src/lib/libssl/src/doc/crypto/PKCS7_encrypt.pod +++ b/src/lib/libssl/src/doc/crypto/PKCS7_encrypt.pod | |||
@@ -6,7 +6,9 @@ PKCS7_encrypt - create a PKCS#7 envelopedData structure | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher, int flags); | 9 | #include <openssl/pkcs7.h> |
10 | |||
11 | PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher, int flags); | ||
10 | 12 | ||
11 | =head1 DESCRIPTION | 13 | =head1 DESCRIPTION |
12 | 14 | ||
@@ -16,43 +18,55 @@ B<cipher> is the symmetric cipher to use. B<flags> is an optional set of flags. | |||
16 | 18 | ||
17 | =head1 NOTES | 19 | =head1 NOTES |
18 | 20 | ||
19 | Only RSA keys are supported in PKCS#7 and envelopedData so the recipient certificates | 21 | Only RSA keys are supported in PKCS#7 and envelopedData so the recipient |
20 | supplied to this function must all contain RSA public keys, though they do not have to | 22 | certificates supplied to this function must all contain RSA public keys, though |
21 | be signed using the RSA algorithm. | 23 | they do not have to be signed using the RSA algorithm. |
22 | 24 | ||
23 | EVP_des_ede3_cbc() (triple DES) is the algorithm of choice for S/MIME use because | 25 | EVP_des_ede3_cbc() (triple DES) is the algorithm of choice for S/MIME use |
24 | most clients will support it. | 26 | because most clients will support it. |
25 | 27 | ||
26 | Some old "export grade" clients may only support weak encryption using 40 or 64 bit | 28 | Some old "export grade" clients may only support weak encryption using 40 or 64 |
27 | RC2. These can be used by passing EVP_rc2_40_cbc() and EVP_rc2_64_cbc() respectively. | 29 | bit RC2. These can be used by passing EVP_rc2_40_cbc() and EVP_rc2_64_cbc() |
30 | respectively. | ||
28 | 31 | ||
29 | The algorithm passed in the B<cipher> parameter must support ASN1 encoding of its | 32 | The algorithm passed in the B<cipher> parameter must support ASN1 encoding of |
30 | parameters. | 33 | its parameters. |
31 | 34 | ||
32 | Many browsers implement a "sign and encrypt" option which is simply an S/MIME | 35 | Many browsers implement a "sign and encrypt" option which is simply an S/MIME |
33 | envelopedData containing an S/MIME signed message. This can be readily produced | 36 | envelopedData containing an S/MIME signed message. This can be readily produced |
34 | by storing the S/MIME signed message in a memory BIO and passing it to | 37 | by storing the S/MIME signed message in a memory BIO and passing it to |
35 | PKCS7_encrypt(). | 38 | PKCS7_encrypt(). |
36 | 39 | ||
37 | The following flags can be passed in the B<flags> parameter. | 40 | The following flags can be passed in the B<flags> parameter. |
38 | 41 | ||
39 | If the B<PKCS7_TEXT> flag is set MIME headers for type B<text/plain> are prepended | 42 | If the B<PKCS7_TEXT> flag is set MIME headers for type B<text/plain> are |
40 | to the data. | 43 | prepended to the data. |
41 | 44 | ||
42 | Normally the supplied content is translated into MIME canonical format (as required | 45 | Normally the supplied content is translated into MIME canonical format (as |
43 | by the S/MIME specifications) if B<PKCS7_BINARY> is set no translation occurs. This | 46 | required by the S/MIME specifications) if B<PKCS7_BINARY> is set no translation |
44 | option should be used if the supplied data is in binary format otherwise the translation | 47 | occurs. This option should be used if the supplied data is in binary format |
45 | will corrupt it. If B<PKCS7_BINARY> is set then B<PKCS7_TEXT> is ignored. | 48 | otherwise the translation will corrupt it. If B<PKCS7_BINARY> is set then |
49 | B<PKCS7_TEXT> is ignored. | ||
46 | 50 | ||
47 | =head1 RETURN VALUES | 51 | If the B<PKCS7_STREAM> flag is set a partial B<PKCS7> structure is output |
52 | suitable for streaming I/O: no data is read from the BIO B<in>. | ||
48 | 53 | ||
49 | PKCS7_encrypt() returns either a valid PKCS7 structure or NULL if an error occurred. | 54 | =head1 NOTES |
50 | The error can be obtained from ERR_get_error(3). | ||
51 | 55 | ||
52 | =head1 BUGS | 56 | If the flag B<PKCS7_STREAM> is set the returned B<PKCS7> structure is B<not> |
57 | complete and outputting its contents via a function that does not | ||
58 | properly finalize the B<PKCS7> structure will give unpredictable | ||
59 | results. | ||
53 | 60 | ||
54 | The lack of single pass processing and need to hold all data in memory as | 61 | Several functions including SMIME_write_PKCS7(), i2d_PKCS7_bio_stream(), |
55 | mentioned in PKCS7_sign() also applies to PKCS7_verify(). | 62 | PEM_write_bio_PKCS7_stream() finalize the structure. Alternatively finalization |
63 | can be performed by obtaining the streaming ASN1 B<BIO> directly using | ||
64 | BIO_new_PKCS7(). | ||
65 | |||
66 | =head1 RETURN VALUES | ||
67 | |||
68 | PKCS7_encrypt() returns either a PKCS7 structure or NULL if an error occurred. | ||
69 | The error can be obtained from ERR_get_error(3). | ||
56 | 70 | ||
57 | =head1 SEE ALSO | 71 | =head1 SEE ALSO |
58 | 72 | ||
@@ -61,5 +75,6 @@ L<ERR_get_error(3)|ERR_get_error(3)>, L<PKCS7_decrypt(3)|PKCS7_decrypt(3)> | |||
61 | =head1 HISTORY | 75 | =head1 HISTORY |
62 | 76 | ||
63 | PKCS7_decrypt() was added to OpenSSL 0.9.5 | 77 | PKCS7_decrypt() was added to OpenSSL 0.9.5 |
78 | The B<PKCS7_STREAM> flag was first supported in OpenSSL 1.0.0. | ||
64 | 79 | ||
65 | =cut | 80 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod b/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod index ffd0c734b0..64a35144f8 100644 --- a/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod +++ b/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod | |||
@@ -6,14 +6,16 @@ PKCS7_sign - create a PKCS#7 signedData structure | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, BIO *data, int flags); | 9 | #include <openssl/pkcs7.h> |
10 | |||
11 | PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, BIO *data, int flags); | ||
10 | 12 | ||
11 | =head1 DESCRIPTION | 13 | =head1 DESCRIPTION |
12 | 14 | ||
13 | PKCS7_sign() creates and returns a PKCS#7 signedData structure. B<signcert> | 15 | PKCS7_sign() creates and returns a PKCS#7 signedData structure. B<signcert> is |
14 | is the certificate to sign with, B<pkey> is the corresponsding private key. | 16 | the certificate to sign with, B<pkey> is the corresponsding private key. |
15 | B<certs> is an optional additional set of certificates to include in the | 17 | B<certs> is an optional additional set of certificates to include in the PKCS#7 |
16 | PKCS#7 structure (for example any intermediate CAs in the chain). | 18 | structure (for example any intermediate CAs in the chain). |
17 | 19 | ||
18 | The data to be signed is read from BIO B<data>. | 20 | The data to be signed is read from BIO B<data>. |
19 | 21 | ||
@@ -21,72 +23,83 @@ B<flags> is an optional set of flags. | |||
21 | 23 | ||
22 | =head1 NOTES | 24 | =head1 NOTES |
23 | 25 | ||
24 | Any of the following flags (ored together) can be passed in the B<flags> parameter. | 26 | Any of the following flags (ored together) can be passed in the B<flags> |
27 | parameter. | ||
25 | 28 | ||
26 | Many S/MIME clients expect the signed content to include valid MIME headers. If | 29 | Many S/MIME clients expect the signed content to include valid MIME headers. If |
27 | the B<PKCS7_TEXT> flag is set MIME headers for type B<text/plain> are prepended | 30 | the B<PKCS7_TEXT> flag is set MIME headers for type B<text/plain> are prepended |
28 | to the data. | 31 | to the data. |
29 | 32 | ||
30 | If B<PKCS7_NOCERTS> is set the signer's certificate will not be included in the | 33 | If B<PKCS7_NOCERTS> is set the signer's certificate will not be included in the |
31 | PKCS7 structure, the signer's certificate must still be supplied in the B<signcert> | 34 | PKCS7 structure, the signer's certificate must still be supplied in the |
32 | parameter though. This can reduce the size of the signature if the signers certificate | 35 | B<signcert> parameter though. This can reduce the size of the signature if the |
33 | can be obtained by other means: for example a previously signed message. | 36 | signers certificate can be obtained by other means: for example a previously |
34 | 37 | signed message. | |
35 | The data being signed is included in the PKCS7 structure, unless B<PKCS7_DETACHED> | 38 | |
36 | is set in which case it is omitted. This is used for PKCS7 detached signatures | 39 | The data being signed is included in the PKCS7 structure, unless |
37 | which are used in S/MIME plaintext signed messages for example. | 40 | B<PKCS7_DETACHED> is set in which case it is omitted. This is used for PKCS7 |
41 | detached signatures which are used in S/MIME plaintext signed messages for | ||
42 | example. | ||
43 | |||
44 | Normally the supplied content is translated into MIME canonical format (as | ||
45 | required by the S/MIME specifications) if B<PKCS7_BINARY> is set no translation | ||
46 | occurs. This option should be used if the supplied data is in binary format | ||
47 | otherwise the translation will corrupt it. | ||
48 | |||
49 | The signedData structure includes several PKCS#7 autenticatedAttributes | ||
50 | including the signing time, the PKCS#7 content type and the supported list of | ||
51 | ciphers in an SMIMECapabilities attribute. If B<PKCS7_NOATTR> is set then no | ||
52 | authenticatedAttributes will be used. If B<PKCS7_NOSMIMECAP> is set then just | ||
53 | the SMIMECapabilities are omitted. | ||
38 | 54 | ||
39 | Normally the supplied content is translated into MIME canonical format (as required | 55 | If present the SMIMECapabilities attribute indicates support for the following |
40 | by the S/MIME specifications) if B<PKCS7_BINARY> is set no translation occurs. This | 56 | algorithms: triple DES, 128 bit RC2, 64 bit RC2, DES and 40 bit RC2. If any of |
41 | option should be used if the supplied data is in binary format otherwise the translation | 57 | these algorithms is disabled then it will not be included. |
42 | will corrupt it. | ||
43 | 58 | ||
44 | The signedData structure includes several PKCS#7 autenticatedAttributes including | 59 | If the flags B<PKCS7_STREAM> is set then the returned B<PKCS7> structure is |
45 | the signing time, the PKCS#7 content type and the supported list of ciphers in | 60 | just initialized ready to perform the signing operation. The signing is however |
46 | an SMIMECapabilities attribute. If B<PKCS7_NOATTR> is set then no authenticatedAttributes | 61 | B<not> performed and the data to be signed is not read from the B<data> |
47 | will be used. If B<PKCS7_NOSMIMECAP> is set then just the SMIMECapabilities are | 62 | parameter. Signing is deferred until after the data has been written. In this |
48 | omitted. | 63 | way data can be signed in a single pass. |
49 | 64 | ||
50 | If present the SMIMECapabilities attribute indicates support for the following | 65 | If the B<PKCS7_PARTIAL> flag is set a partial B<PKCS7> structure is output to |
51 | algorithms: triple DES, 128 bit RC2, 64 bit RC2, DES and 40 bit RC2. If any | 66 | which additional signers and capabilities can be added before finalization. |
52 | of these algorithms is disabled then it will not be included. | ||
53 | 67 | ||
54 | If the flags B<PKCS7_PARTSIGN> is set then the returned B<PKCS7> structure | ||
55 | is just initialized ready to perform the signing operation. The signing | ||
56 | is however B<not> performed and the data to be signed is not read from | ||
57 | the B<data> parameter. Signing is deferred until after the data has been | ||
58 | written. In this way data can be signed in a single pass. Currently the | ||
59 | flag B<PKCS7_DETACHED> B<must> also be set. | ||
60 | 68 | ||
61 | =head1 NOTES | 69 | =head1 NOTES |
62 | 70 | ||
63 | Currently the flag B<PKCS7_PARTSIGN> is only supported for detached | 71 | If the flag B<PKCS7_STREAM> is set the returned B<PKCS7> structure is B<not> |
64 | data. If this flag is set the returned B<PKCS7> structure is B<not> | 72 | complete and outputting its contents via a function that does not properly |
65 | complete and outputting its contents via a function that does not | 73 | finalize the B<PKCS7> structure will give unpredictable results. |
66 | properly finalize the B<PKCS7> structure will give unpredictable | ||
67 | results. | ||
68 | 74 | ||
69 | At present only the SMIME_write_PKCS7() function properly finalizes the | 75 | Several functions including SMIME_write_PKCS7(), i2d_PKCS7_bio_stream(), |
70 | structure. | 76 | PEM_write_bio_PKCS7_stream() finalize the structure. Alternatively finalization |
77 | can be performed by obtaining the streaming ASN1 B<BIO> directly using | ||
78 | BIO_new_PKCS7(). | ||
71 | 79 | ||
72 | =head1 BUGS | 80 | If a signer is specified it will use the default digest for the signing |
81 | algorithm. This is B<SHA1> for both RSA and DSA keys. | ||
82 | |||
83 | In OpenSSL 1.0.0 the B<certs>, B<signcert> and B<pkey> parameters can all be | ||
84 | B<NULL> if the B<PKCS7_PARTIAL> flag is set. One or more signers can be added | ||
85 | using the function B<PKCS7_sign_add_signer()>. B<PKCS7_final()> must also be | ||
86 | called to finalize the structure if streaming is not enabled. Alternative | ||
87 | signing digests can also be specified using this method. | ||
73 | 88 | ||
74 | PKCS7_sign() is somewhat limited. It does not support multiple signers, some | 89 | In OpenSSL 1.0.0 if B<signcert> and B<pkey> are NULL then a certificates only |
75 | advanced attributes such as counter signatures are not supported. | 90 | PKCS#7 structure is output. |
76 | 91 | ||
77 | The SHA1 digest algorithm is currently always used. | 92 | In versions of OpenSSL before 1.0.0 the B<signcert> and B<pkey> parameters must |
93 | B<NOT> be NULL. | ||
78 | 94 | ||
79 | When the signed data is not detached it will be stored in memory within the | 95 | =head1 BUGS |
80 | B<PKCS7> structure. This effectively limits the size of messages which can be | ||
81 | signed due to memory restraints. There should be a way to sign data without | ||
82 | having to hold it all in memory, this would however require fairly major | ||
83 | revisions of the OpenSSL ASN1 code. | ||
84 | 96 | ||
97 | Some advanced attributes such as counter signatures are not supported. | ||
85 | 98 | ||
86 | =head1 RETURN VALUES | 99 | =head1 RETURN VALUES |
87 | 100 | ||
88 | PKCS7_sign() returns either a valid PKCS7 structure or NULL if an error occurred. | 101 | PKCS7_sign() returns either a valid PKCS7 structure or NULL if an error |
89 | The error can be obtained from ERR_get_error(3). | 102 | occurred. The error can be obtained from ERR_get_error(3). |
90 | 103 | ||
91 | =head1 SEE ALSO | 104 | =head1 SEE ALSO |
92 | 105 | ||
@@ -96,6 +109,8 @@ L<ERR_get_error(3)|ERR_get_error(3)>, L<PKCS7_verify(3)|PKCS7_verify(3)> | |||
96 | 109 | ||
97 | PKCS7_sign() was added to OpenSSL 0.9.5 | 110 | PKCS7_sign() was added to OpenSSL 0.9.5 |
98 | 111 | ||
99 | The B<PKCS7_PARTSIGN> flag was added in OpenSSL 0.9.8 | 112 | The B<PKCS7_PARTIAL> flag was added in OpenSSL 1.0.0 |
113 | |||
114 | The B<PKCS7_STREAM> flag was added in OpenSSL 1.0.0 | ||
100 | 115 | ||
101 | =cut | 116 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/PKCS7_verify.pod b/src/lib/libssl/src/doc/crypto/PKCS7_verify.pod index 3490b5dc82..7c10a4cc3c 100644 --- a/src/lib/libssl/src/doc/crypto/PKCS7_verify.pod +++ b/src/lib/libssl/src/doc/crypto/PKCS7_verify.pod | |||
@@ -6,9 +6,11 @@ PKCS7_verify - verify a PKCS#7 signedData structure | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags); | 9 | #include <openssl/pkcs7.h> |
10 | 10 | ||
11 | STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags); | 11 | int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags); |
12 | |||
13 | STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags); | ||
12 | 14 | ||
13 | =head1 DESCRIPTION | 15 | =head1 DESCRIPTION |
14 | 16 | ||
diff --git a/src/lib/libssl/src/doc/crypto/SMIME_read_PKCS7.pod b/src/lib/libssl/src/doc/crypto/SMIME_read_PKCS7.pod index ffafa37887..9d46715941 100644 --- a/src/lib/libssl/src/doc/crypto/SMIME_read_PKCS7.pod +++ b/src/lib/libssl/src/doc/crypto/SMIME_read_PKCS7.pod | |||
@@ -6,7 +6,9 @@ SMIME_read_PKCS7 - parse S/MIME message. | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | PKCS7 *SMIME_read_PKCS7(BIO *in, BIO **bcont); | 9 | #include <openssl/pkcs7.h> |
10 | |||
11 | PKCS7 *SMIME_read_PKCS7(BIO *in, BIO **bcont); | ||
10 | 12 | ||
11 | =head1 DESCRIPTION | 13 | =head1 DESCRIPTION |
12 | 14 | ||
diff --git a/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod b/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod index 61945b3887..ca6bd02763 100644 --- a/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod +++ b/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod | |||
@@ -6,17 +6,18 @@ SMIME_write_PKCS7 - convert PKCS#7 structure to S/MIME format. | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | int SMIME_write_PKCS7(BIO *out, PKCS7 *p7, BIO *data, int flags); | 9 | #include <openssl/pkcs7.h> |
10 | |||
11 | int SMIME_write_PKCS7(BIO *out, PKCS7 *p7, BIO *data, int flags); | ||
10 | 12 | ||
11 | =head1 DESCRIPTION | 13 | =head1 DESCRIPTION |
12 | 14 | ||
13 | SMIME_write_PKCS7() adds the appropriate MIME headers to a PKCS#7 | 15 | SMIME_write_PKCS7() adds the appropriate MIME headers to a PKCS#7 |
14 | structure to produce an S/MIME message. | 16 | structure to produce an S/MIME message. |
15 | 17 | ||
16 | B<out> is the BIO to write the data to. B<p7> is the appropriate | 18 | B<out> is the BIO to write the data to. B<p7> is the appropriate B<PKCS7> |
17 | B<PKCS7> structure. If cleartext signing (B<multipart/signed>) is | 19 | structure. If streaming is enabled then the content must be supplied in the |
18 | being used then the signed data must be supplied in the B<data> | 20 | B<data> argument. B<flags> is an optional set of flags. |
19 | argument. B<flags> is an optional set of flags. | ||
20 | 21 | ||
21 | =head1 NOTES | 22 | =head1 NOTES |
22 | 23 | ||
@@ -30,15 +31,18 @@ If the B<PKCS7_TEXT> flag is set MIME headers for type B<text/plain> | |||
30 | are added to the content, this only makes sense if B<PKCS7_DETACHED> | 31 | are added to the content, this only makes sense if B<PKCS7_DETACHED> |
31 | is also set. | 32 | is also set. |
32 | 33 | ||
33 | If the B<PKCS7_PARTSIGN> flag is set the signed data is finalized | 34 | If the B<PKCS7_STREAM> flag is set streaming is performed. This flag should |
34 | and output along with the content. This flag should only be set | 35 | only be set if B<PKCS7_STREAM> was also set in the previous call to |
35 | if B<PKCS7_DETACHED> is also set and the previous call to PKCS7_sign() | 36 | PKCS7_sign() or B<PKCS7_encrypt()>. |
36 | also set these flags. | ||
37 | 37 | ||
38 | If cleartext signing is being used and B<PKCS7_PARTSIGN> not set then | 38 | If cleartext signing is being used and B<PKCS7_STREAM> not set then |
39 | the data must be read twice: once to compute the signature in PKCS7_sign() | 39 | the data must be read twice: once to compute the signature in PKCS7_sign() |
40 | and once to output the S/MIME message. | 40 | and once to output the S/MIME message. |
41 | 41 | ||
42 | If streaming is performed the content is output in BER format using indefinite | ||
43 | length constructuted encoding except in the case of signed data with detached | ||
44 | content where the content is absent and DER format is used. | ||
45 | |||
42 | =head1 BUGS | 46 | =head1 BUGS |
43 | 47 | ||
44 | SMIME_write_PKCS7() always base64 encodes PKCS#7 structures, there | 48 | SMIME_write_PKCS7() always base64 encodes PKCS#7 structures, there |
diff --git a/src/lib/libssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod b/src/lib/libssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod index 11b35f6fd3..41902c0d45 100644 --- a/src/lib/libssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod +++ b/src/lib/libssl/src/doc/crypto/X509_NAME_ENTRY_get_object.pod | |||
@@ -9,15 +9,17 @@ X509_NAME_ENTRY_create_by_OBJ - X509_NAME_ENTRY utility functions | |||
9 | 9 | ||
10 | =head1 SYNOPSIS | 10 | =head1 SYNOPSIS |
11 | 11 | ||
12 | ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); | 12 | #include <openssl/x509.h> |
13 | ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); | ||
14 | 13 | ||
15 | int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj); | 14 | ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne); |
16 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, const unsigned char *bytes, int len); | 15 | ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne); |
17 | 16 | ||
18 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len); | 17 | int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj); |
19 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, int type,unsigned char *bytes, int len); | 18 | int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, const unsigned char *bytes, int len); |
20 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len); | 19 | |
20 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len); | ||
21 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, int type,unsigned char *bytes, int len); | ||
22 | X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len); | ||
21 | 23 | ||
22 | =head1 DESCRIPTION | 24 | =head1 DESCRIPTION |
23 | 25 | ||
diff --git a/src/lib/libssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod b/src/lib/libssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod index e2ab4b0d2b..1afd008cb3 100644 --- a/src/lib/libssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod +++ b/src/lib/libssl/src/doc/crypto/X509_NAME_add_entry_by_txt.pod | |||
@@ -7,15 +7,17 @@ X509_NAME_add_entry, X509_NAME_delete_entry - X509_NAME modification functions | |||
7 | 7 | ||
8 | =head1 SYNOPSIS | 8 | =head1 SYNOPSIS |
9 | 9 | ||
10 | int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set); | 10 | #include <openssl/x509.h> |
11 | 11 | ||
12 | int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set); | 12 | int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set); |
13 | 13 | ||
14 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set); | 14 | int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set); |
15 | 15 | ||
16 | int X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne, int loc, int set); | 16 | int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set); |
17 | 17 | ||
18 | X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc); | 18 | int X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne, int loc, int set); |
19 | |||
20 | X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc); | ||
19 | 21 | ||
20 | =head1 DESCRIPTION | 22 | =head1 DESCRIPTION |
21 | 23 | ||
diff --git a/src/lib/libssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod b/src/lib/libssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod index 333323d734..3b1f9ff43b 100644 --- a/src/lib/libssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod +++ b/src/lib/libssl/src/doc/crypto/X509_NAME_get_index_by_NID.pod | |||
@@ -8,14 +8,16 @@ X509_NAME lookup and enumeration functions | |||
8 | 8 | ||
9 | =head1 SYNOPSIS | 9 | =head1 SYNOPSIS |
10 | 10 | ||
11 | int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos); | 11 | #include <openssl/x509.h> |
12 | int X509_NAME_get_index_by_OBJ(X509_NAME *name,ASN1_OBJECT *obj, int lastpos); | ||
13 | 12 | ||
14 | int X509_NAME_entry_count(X509_NAME *name); | 13 | int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos); |
15 | X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc); | 14 | int X509_NAME_get_index_by_OBJ(X509_NAME *name,ASN1_OBJECT *obj, int lastpos); |
16 | 15 | ||
17 | int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf,int len); | 16 | int X509_NAME_entry_count(X509_NAME *name); |
18 | int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf,int len); | 17 | X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc); |
18 | |||
19 | int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf,int len); | ||
20 | int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf,int len); | ||
19 | 21 | ||
20 | =head1 DESCRIPTION | 22 | =head1 DESCRIPTION |
21 | 23 | ||
diff --git a/src/lib/libssl/src/doc/crypto/X509_new.pod b/src/lib/libssl/src/doc/crypto/X509_new.pod index fd5fc65ce1..d38872335f 100644 --- a/src/lib/libssl/src/doc/crypto/X509_new.pod +++ b/src/lib/libssl/src/doc/crypto/X509_new.pod | |||
@@ -6,6 +6,8 @@ X509_new, X509_free - X509 certificate ASN1 allocation functions | |||
6 | 6 | ||
7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
8 | 8 | ||
9 | #include <openssl/x509.h> | ||
10 | |||
9 | X509 *X509_new(void); | 11 | X509 *X509_new(void); |
10 | void X509_free(X509 *a); | 12 | void X509_free(X509 *a); |
11 | 13 | ||
diff --git a/src/lib/libssl/src/doc/crypto/d2i_X509.pod b/src/lib/libssl/src/doc/crypto/d2i_X509.pod index 5bfa18afbb..298ec54a4c 100644 --- a/src/lib/libssl/src/doc/crypto/d2i_X509.pod +++ b/src/lib/libssl/src/doc/crypto/d2i_X509.pod | |||
@@ -15,8 +15,8 @@ i2d_X509_fp - X509 encode and decode functions | |||
15 | X509 *d2i_X509_bio(BIO *bp, X509 **x); | 15 | X509 *d2i_X509_bio(BIO *bp, X509 **x); |
16 | X509 *d2i_X509_fp(FILE *fp, X509 **x); | 16 | X509 *d2i_X509_fp(FILE *fp, X509 **x); |
17 | 17 | ||
18 | int i2d_X509_bio(X509 *x, BIO *bp); | 18 | int i2d_X509_bio(BIO *bp, X509 *x); |
19 | int i2d_X509_fp(X509 *x, FILE *fp); | 19 | int i2d_X509_fp(FILE *fp, X509 *x); |
20 | 20 | ||
21 | =head1 DESCRIPTION | 21 | =head1 DESCRIPTION |
22 | 22 | ||
@@ -212,11 +212,11 @@ d2i_X509(), d2i_X509_bio() and d2i_X509_fp() return a valid B<X509> structure | |||
212 | or B<NULL> if an error occurs. The error code that can be obtained by | 212 | or B<NULL> if an error occurs. The error code that can be obtained by |
213 | L<ERR_get_error(3)|ERR_get_error(3)>. | 213 | L<ERR_get_error(3)|ERR_get_error(3)>. |
214 | 214 | ||
215 | i2d_X509(), i2d_X509_bio() and i2d_X509_fp() return a the number of bytes | 215 | i2d_X509() returns the number of bytes successfully encoded or a negative |
216 | successfully encoded or a negative value if an error occurs. The error code | 216 | value if an error occurs. The error code can be obtained by |
217 | can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>. | 217 | L<ERR_get_error(3)|ERR_get_error(3)>. |
218 | 218 | ||
219 | i2d_X509_bio() and i2d_X509_fp() returns 1 for success and 0 if an error | 219 | i2d_X509_bio() and i2d_X509_fp() return 1 for success and 0 if an error |
220 | occurs The error code can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>. | 220 | occurs The error code can be obtained by L<ERR_get_error(3)|ERR_get_error(3)>. |
221 | 221 | ||
222 | =head1 SEE ALSO | 222 | =head1 SEE ALSO |
diff --git a/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod b/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod index e7295a5d61..224f9e082b 100644 --- a/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod +++ b/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod | |||
@@ -15,8 +15,8 @@ i2d_X509_CRL_bio, i2d_X509_CRL_fp - PKCS#10 certificate request functions. | |||
15 | X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **x); | 15 | X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **x); |
16 | X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **x); | 16 | X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **x); |
17 | 17 | ||
18 | int i2d_X509_CRL_bio(X509_CRL *x, BIO *bp); | 18 | int i2d_X509_CRL_bio(BIO *bp, X509_CRL *x); |
19 | int i2d_X509_CRL_fp(X509_CRL *x, FILE *fp); | 19 | int i2d_X509_CRL_fp(FILE *fp, X509_CRL *x); |
20 | 20 | ||
21 | =head1 DESCRIPTION | 21 | =head1 DESCRIPTION |
22 | 22 | ||
diff --git a/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod b/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod index ae32a3891d..91c0c1974b 100644 --- a/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod +++ b/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod | |||
@@ -15,8 +15,8 @@ i2d_X509_REQ_bio, i2d_X509_REQ_fp - PKCS#10 certificate request functions. | |||
15 | X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x); | 15 | X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x); |
16 | X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **x); | 16 | X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **x); |
17 | 17 | ||
18 | int i2d_X509_REQ_bio(X509_REQ *x, BIO *bp); | 18 | int i2d_X509_REQ_bio(BIO *bp, X509_REQ *x); |
19 | int i2d_X509_REQ_fp(X509_REQ *x, FILE *fp); | 19 | int i2d_X509_REQ_fp(FILE *fp, X509_REQ *x); |
20 | 20 | ||
21 | =head1 DESCRIPTION | 21 | =head1 DESCRIPTION |
22 | 22 | ||
diff --git a/src/lib/libssl/src/engines/makeengines.com b/src/lib/libssl/src/engines/makeengines.com index 840864f7cf..6cf4236077 100644 --- a/src/lib/libssl/src/engines/makeengines.com +++ b/src/lib/libssl/src/engines/makeengines.com | |||
@@ -1,11 +1,11 @@ | |||
1 | $! | 1 | $! |
2 | $! MAKEAPPS.COM | 2 | $! MAKEENGINES.COM |
3 | $! Written By: Richard Levitte | 3 | $! Written By: Richard Levitte |
4 | $! richard@levitte.org | 4 | $! richard@levitte.org |
5 | $! | 5 | $! |
6 | $! This command file compiles and creates the various engines in form | 6 | $! This command file compiles and creates the various engines in form |
7 | $! of shared images. They are placed in [.xxx.EXE.ENGINES], where "xxx" | 7 | $! of shared images. They are placed in [.xxx.EXE.ENGINES], where "xxx" |
8 | $! is either AXP or VAX depending on your hardware. | 8 | $! is ALPHA, IA64 or VAX, depending on your hardware. |
9 | $! | 9 | $! |
10 | $! P1 if this is ENGINES or ALL, the engines will build, otherwise not. | 10 | $! P1 if this is ENGINES or ALL, the engines will build, otherwise not. |
11 | $! | 11 | $! |
@@ -30,22 +30,49 @@ $! all available engines are built. | |||
30 | $! | 30 | $! |
31 | $!----------------------------------------------------------------------------- | 31 | $!----------------------------------------------------------------------------- |
32 | $! | 32 | $! |
33 | $! Set the default TCP/IP library to link against if needed | ||
34 | $! | ||
35 | $ TCPIP_LIB = "" | ||
36 | $! | ||
37 | $! Check What Architecture We Are Using. | ||
38 | $! | ||
39 | $ IF (F$GETSYI("CPU").LT.128) | ||
40 | $ THEN | ||
41 | $! | ||
42 | $! The Architecture Is VAX. | ||
43 | $! | ||
44 | $ ARCH = "VAX" | ||
45 | $! | ||
46 | $! Else... | ||
47 | $! | ||
48 | $ ELSE | ||
49 | $! | ||
50 | $! The Architecture Is Alpha, IA64 or whatever comes in the future. | ||
51 | $! | ||
52 | $ ARCH = F$EDIT( F$GETSYI( "ARCH_NAME"), "UPCASE") | ||
53 | $ IF (ARCH .EQS. "") THEN ARCH = "UNK" | ||
54 | $! | ||
55 | $! End The Architecture Check. | ||
56 | $! | ||
57 | $ ENDIF | ||
58 | $! | ||
33 | $! Set the names of the engines we want to build | 59 | $! Set the names of the engines we want to build |
60 | $! NOTE: Some might think this list ugly. However, it's made this way to | ||
61 | $! reflect the LIBNAMES variable in Makefile as closely as possible, | ||
62 | $! thereby making it fairly easy to verify that the lists are the same. | ||
63 | $! NOTE: gmp isn't built, as it's mostly a test engine and brings in another | ||
64 | $! library that isn't necessarely ported to VMS. | ||
34 | $! | 65 | $! |
35 | $ ENGINES = "," + P6 | 66 | $ ENGINES = "," + P6 |
36 | $ IF ENGINES .EQS. "," THEN - | 67 | $ IF ENGINES .EQS. "," THEN - |
37 | ENGINES = ",4758cca,aep,atalla,cswift,chil,nuron,sureware,ubsec,capi" | 68 | ENGINES = ",4758cca,aep,atalla,cswift,chil,nuron,sureware,ubsec,padlock," |
38 | $! | 69 | $! |
39 | $! Set the default TCP/IP library to link against if needed | 70 | $! GOST requires a 64-bit integer type, unavailable on VAX. |
40 | $! | ||
41 | $ TCPIP_LIB = "" | ||
42 | $! | 71 | $! |
43 | $! Set the architecture name | 72 | $ IF (ARCH .NES. "VAX") THEN - |
73 | ENGINES = ENGINES+ ",ccgost" | ||
44 | $! | 74 | $! |
45 | $ ARCH := VAX | 75 | $! Set the goal directories, and create them if necessary |
46 | $ IF F$GETSYI("CPU") .GE. 128 THEN ARCH := AXP | ||
47 | $! | ||
48 | $! Set the goal directories, and creat them if necessary | ||
49 | $! | 76 | $! |
50 | $ OBJ_DIR := SYS$DISK:[-.'ARCH'.OBJ.ENGINES] | 77 | $ OBJ_DIR := SYS$DISK:[-.'ARCH'.OBJ.ENGINES] |
51 | $ EXE_DIR := SYS$DISK:[-.'ARCH'.EXE.ENGINES] | 78 | $ EXE_DIR := SYS$DISK:[-.'ARCH'.EXE.ENGINES] |
@@ -55,7 +82,6 @@ $! | |||
55 | $! Set the goal files, and create them if necessary | 82 | $! Set the goal files, and create them if necessary |
56 | $! | 83 | $! |
57 | $ CRYPTO_LIB :=SYS$DISK:[-.'ARCH'.EXE.CRYPTO]LIBCRYPTO.OLB | 84 | $ CRYPTO_LIB :=SYS$DISK:[-.'ARCH'.EXE.CRYPTO]LIBCRYPTO.OLB |
58 | $ CRYPTO_EXE :=SYS$DISK:[-.'ARCH'.EXE.CRYPTO]LIBCRYPTO.EXE | ||
59 | $ IF F$SEARCH(CRYPTO_LIB) .EQS. "" THEN LIBRARY/CREATE/OBJECT 'CRYPTO_LIB' | 85 | $ IF F$SEARCH(CRYPTO_LIB) .EQS. "" THEN LIBRARY/CREATE/OBJECT 'CRYPTO_LIB' |
60 | $! | 86 | $! |
61 | $! OK, time to check options and initialise | 87 | $! OK, time to check options and initialise |
@@ -71,13 +97,15 @@ $ GOSUB CHECK_OPTIONS | |||
71 | $ GOSUB INITIALISE | 97 | $ GOSUB INITIALISE |
72 | $ GOSUB CHECK_OPT_FILE | 98 | $ GOSUB CHECK_OPT_FILE |
73 | $! | 99 | $! |
74 | $! Define what goes into each engine | 100 | $! Define what goes into each engine. VAX includes a transfer vector. |
75 | $! | 101 | $! |
76 | $ ENGINE_ = "" | 102 | $ ENGINE_ = "" |
103 | $ TV_OBJ = "" | ||
77 | $ IF ARCH .EQS. "VAX" | 104 | $ IF ARCH .EQS. "VAX" |
78 | $ THEN | 105 | $ THEN |
79 | $ ENGINE_ = "engine_vector.mar" | 106 | $ ENGINE_ = "engine_vector.mar" |
80 | $ EXTRA_OBJ := ,'OBJ_DIR'ENGINE_VECTOR.OBJ | 107 | $ TV_OBJ_NAME = OBJ_DIR + F$PARSE(ENGINE_,,,"NAME","SYNTAX_ONLY") + ".OBJ" |
108 | $ TV_OBJ = ",''TV_OBJ_NAME'" | ||
81 | $ ENDIF | 109 | $ ENDIF |
82 | $ ENGINE_4758CCA = "e_4758cca" | 110 | $ ENGINE_4758CCA = "e_4758cca" |
83 | $ ENGINE_aep = "e_aep" | 111 | $ ENGINE_aep = "e_aep" |
@@ -87,7 +115,13 @@ $ ENGINE_chil = "e_chil" | |||
87 | $ ENGINE_nuron = "e_nuron" | 115 | $ ENGINE_nuron = "e_nuron" |
88 | $ ENGINE_sureware = "e_sureware" | 116 | $ ENGINE_sureware = "e_sureware" |
89 | $ ENGINE_ubsec = "e_ubsec" | 117 | $ ENGINE_ubsec = "e_ubsec" |
90 | $ ENGINE_capi = "e_capi" | 118 | $ ENGINE_padlock = "e_padlock" |
119 | $ | ||
120 | $ ENGINE_ccgost_SUBDIR = "ccgost" | ||
121 | $ ENGINE_ccgost = "e_gost_err,gost2001_keyx,gost2001,gost89,gost94_keyx,"+ - | ||
122 | "gost_ameth,gost_asn1,gost_crypt,gost_ctl,gost_eng,"+ - | ||
123 | "gosthash,gost_keywrap,gost_md,gost_params,gost_pmeth,"+ - | ||
124 | "gost_sign" | ||
91 | $! | 125 | $! |
92 | $! Define which programs need to be linked with a TCP/IP library | 126 | $! Define which programs need to be linked with a TCP/IP library |
93 | $! | 127 | $! |
@@ -134,6 +168,13 @@ $ ELSE | |||
134 | $ WRITE SYS$OUTPUT "Compiling Support Files. (",BUILDALL,")" | 168 | $ WRITE SYS$OUTPUT "Compiling Support Files. (",BUILDALL,")" |
135 | $ ENDIF | 169 | $ ENDIF |
136 | $! | 170 | $! |
171 | $! Create a .OPT file for the object files (for a real engine name). | ||
172 | $! | ||
173 | $ IF ENGINE_NAME .NES. "" | ||
174 | $ THEN | ||
175 | $ OPEN/WRITE OBJECTS 'EXE_DIR''ENGINE_NAME'.OPT | ||
176 | $ ENDIF | ||
177 | $! | ||
137 | $! Here's the start of per-engine module loop. | 178 | $! Here's the start of per-engine module loop. |
138 | $! | 179 | $! |
139 | $ FILE_COUNTER = 0 | 180 | $ FILE_COUNTER = 0 |
@@ -150,7 +191,12 @@ $ IF FILE_NAME .EQS. "" THEN GOTO FILE_NEXT | |||
150 | $! | 191 | $! |
151 | $! Set up the source and object reference | 192 | $! Set up the source and object reference |
152 | $! | 193 | $! |
153 | $ SOURCE_FILE = F$PARSE(FILE_NAME,"SYS$DISK:[].C",,,"SYNTAX_ONLY") | 194 | $ IF F$TYPE('LIB_ENGINE'_SUBDIR) .EQS. "" |
195 | $ THEN | ||
196 | $ SOURCE_FILE = F$PARSE(FILE_NAME,"SYS$DISK:[].C",,,"SYNTAX_ONLY") | ||
197 | $ ELSE | ||
198 | $ SOURCE_FILE = F$PARSE(FILE_NAME,"SYS$DISK:[."+'LIB_ENGINE'_SUBDIR+"].C",,,"SYNTAX_ONLY") | ||
199 | $ ENDIF | ||
154 | $ OBJECT_FILE = OBJ_DIR + F$PARSE(FILE_NAME,,,"NAME","SYNTAX_ONLY") + ".OBJ" | 200 | $ OBJECT_FILE = OBJ_DIR + F$PARSE(FILE_NAME,,,"NAME","SYNTAX_ONLY") + ".OBJ" |
155 | $! | 201 | $! |
156 | $! If we get some problem, we just go on trying to build the next module. | 202 | $! If we get some problem, we just go on trying to build the next module. |
@@ -173,13 +219,34 @@ $! | |||
173 | $! Do the dirty work. | 219 | $! Do the dirty work. |
174 | $! | 220 | $! |
175 | $ ON ERROR THEN GOTO FILE_NEXT | 221 | $ ON ERROR THEN GOTO FILE_NEXT |
176 | $ IF FILE_NAME - ".MAR" .NES. FILE_NAME | 222 | $ IF F$EDIT(F$PARSE(SOURCE_FILE,,,"TYPE","SYNTAX_ONLY"),"UPCASE") .EQS. ".MAR" |
177 | $ THEN | 223 | $ THEN |
178 | $ MACRO/OBJECT='OBJECT_FILE' 'SOURCE_FILE' | 224 | $ MACRO/OBJECT='OBJECT_FILE' 'SOURCE_FILE' |
179 | $ ELSE | 225 | $ ELSE |
180 | $ CC/OBJECT='OBJECT_FILE' 'SOURCE_FILE' | 226 | $ CC/OBJECT='OBJECT_FILE' 'SOURCE_FILE' |
181 | $ ENDIF | 227 | $ ENDIF |
182 | $! | 228 | $! |
229 | $! Write the entry to the .OPT file (for a real engine name). | ||
230 | $! | ||
231 | $ IF ENGINE_NAME .NES. "" | ||
232 | $ THEN | ||
233 | $ WRITE OBJECTS OBJECT_FILE | ||
234 | $ ENDIF | ||
235 | $! | ||
236 | $! Next file | ||
237 | $! | ||
238 | $ GOTO FILE_NEXT | ||
239 | $! | ||
240 | $ FILE_DONE: | ||
241 | $! | ||
242 | $! Do not link the support files. | ||
243 | $! | ||
244 | $ IF ENGINE_NAME .EQS. "" THEN GOTO ENGINE_NEXT | ||
245 | $! | ||
246 | $! Close the linker options file (for a real engine name). | ||
247 | $! | ||
248 | $ CLOSE OBJECTS | ||
249 | $! | ||
183 | $! Now, there are two ways to handle this. We can either build | 250 | $! Now, there are two ways to handle this. We can either build |
184 | $! shareable images or stick the engine object file into libcrypto. | 251 | $! shareable images or stick the engine object file into libcrypto. |
185 | $! For now, the latter is NOT supported. | 252 | $! For now, the latter is NOT supported. |
@@ -193,26 +260,16 @@ $ ENGINE_OPT := SYS$DISK:[]'ARCH'.OPT | |||
193 | $ IF TCPIP_LIB .NES. "" | 260 | $ IF TCPIP_LIB .NES. "" |
194 | $ THEN | 261 | $ THEN |
195 | $ LINK/'DEBUGGER'/'TRACEBACK' /SHARE='EXE_DIR''ENGINE_NAME'.EXE - | 262 | $ LINK/'DEBUGGER'/'TRACEBACK' /SHARE='EXE_DIR''ENGINE_NAME'.EXE - |
196 | 'OBJECT_FILE''EXTRA_OBJ', - | 263 | 'EXE_DIR''ENGINE_NAME'.OPT/OPTION'TV_OBJ', - |
197 | 'CRYPTO_LIB'/LIBRARY, - | 264 | 'CRYPTO_LIB'/LIBRARY, - |
198 | 'ENGINE_OPT'/OPTION,'TCPIP_LIB','OPT_FILE'/OPTION | 265 | 'ENGINE_OPT'/OPTION,'TCPIP_LIB','OPT_FILE'/OPTION |
199 | $ ELSE | 266 | $ ELSE |
200 | $ LINK/'DEBUGGER'/'TRACEBACK' /SHARE='EXE_DIR''ENGINE_NAME'.EXE - | 267 | $ LINK/'DEBUGGER'/'TRACEBACK' /SHARE='EXE_DIR''ENGINE_NAME'.EXE - |
201 | 'OBJECT_FILE''EXTRA_OBJ', - | 268 | 'EXE_DIR''ENGINE_NAME'.OPT/OPTION'TV_OBJ', - |
202 | 'CRYPTO_LIB'/LIBRARY, - | 269 | 'CRYPTO_LIB'/LIBRARY, - |
203 | 'ENGINE_OPT'/OPTION,'OPT_FILE'/OPTION | 270 | 'ENGINE_OPT'/OPTION,'OPT_FILE'/OPTION |
204 | $ ENDIF | 271 | $ ENDIF |
205 | $! | 272 | $! |
206 | $! Clean up | ||
207 | $! | ||
208 | $ DELETE 'OBJECT_FILE';* | ||
209 | $! | ||
210 | $! Next file | ||
211 | $! | ||
212 | $ GOTO FILE_NEXT | ||
213 | $! | ||
214 | $ FILE_DONE: | ||
215 | $! | ||
216 | $! Next engine | 273 | $! Next engine |
217 | $! | 274 | $! |
218 | $ GOTO ENGINE_NEXT | 275 | $ GOTO ENGINE_NEXT |
@@ -299,7 +356,7 @@ $! | |||
299 | $ IF (F$SEARCH(OPT_FILE).EQS."") | 356 | $ IF (F$SEARCH(OPT_FILE).EQS."") |
300 | $ THEN | 357 | $ THEN |
301 | $! | 358 | $! |
302 | $! Figure Out If We Need An AXP Or A VAX Linker Option File. | 359 | $! Figure Out If We Need A non-VAX Or A VAX Linker Option File. |
303 | $! | 360 | $! |
304 | $ IF ARCH .EQS. "VAX" | 361 | $ IF ARCH .EQS. "VAX" |
305 | $ THEN | 362 | $ THEN |
@@ -319,19 +376,19 @@ $! Else... | |||
319 | $! | 376 | $! |
320 | $ ELSE | 377 | $ ELSE |
321 | $! | 378 | $! |
322 | $! Create The AXP Linker Option File. | 379 | $! Create The non-VAX Linker Option File. |
323 | $! | 380 | $! |
324 | $ CREATE 'OPT_FILE' | 381 | $ CREATE 'OPT_FILE' |
325 | $DECK | 382 | $DECK |
326 | ! | 383 | ! |
327 | ! Default System Options File For AXP To Link Agianst | 384 | ! Default System Options File For non-VAX To Link Agianst |
328 | ! The Sharable C Runtime Library. | 385 | ! The Sharable C Runtime Library. |
329 | ! | 386 | ! |
330 | SYS$SHARE:CMA$OPEN_LIB_SHR/SHARE | 387 | SYS$SHARE:CMA$OPEN_LIB_SHR/SHARE |
331 | SYS$SHARE:CMA$OPEN_RTL/SHARE | 388 | SYS$SHARE:CMA$OPEN_RTL/SHARE |
332 | $EOD | 389 | $EOD |
333 | $! | 390 | $! |
334 | $! End The VAX/AXP DEC C Option File Check. | 391 | $! End The DEC C Option File Check. |
335 | $! | 392 | $! |
336 | $ ENDIF | 393 | $ ENDIF |
337 | $! | 394 | $! |
@@ -368,13 +425,13 @@ $! Else... | |||
368 | $! | 425 | $! |
369 | $ ELSE | 426 | $ ELSE |
370 | $! | 427 | $! |
371 | $! Else, Check To See If OPT_PHASE Has A Valid Arguement. | 428 | $! Else, Check To See If OPT_PHASE Has A Valid Argument. |
372 | $! | 429 | $! |
373 | $ IF ("," + ACCEPT_PHASE + ",") - ("," + OPT_PHASE + ",") - | 430 | $ IF ("," + ACCEPT_PHASE + ",") - ("," + OPT_PHASE + ",") - |
374 | .NES. ("," + ACCEPT_PHASE + ",") | 431 | .NES. ("," + ACCEPT_PHASE + ",") |
375 | $ THEN | 432 | $ THEN |
376 | $! | 433 | $! |
377 | $! A Valid Arguement. | 434 | $! A Valid Argument. |
378 | $! | 435 | $! |
379 | $ BUILDALL = OPT_PHASE | 436 | $ BUILDALL = OPT_PHASE |
380 | $! | 437 | $! |
@@ -396,15 +453,16 @@ $ IF ("," + ACCEPT_PHASE + ",") - ",ENGINES," - | |||
396 | $ WRITE SYS$OUTPUT "" | 453 | $ WRITE SYS$OUTPUT "" |
397 | $ WRITE SYS$OUTPUT " where 'xxx' stands for:" | 454 | $ WRITE SYS$OUTPUT " where 'xxx' stands for:" |
398 | $ WRITE SYS$OUTPUT "" | 455 | $ WRITE SYS$OUTPUT "" |
399 | $ WRITE SYS$OUTPUT " AXP : Alpha architecture." | 456 | $ WRITE SYS$OUTPUT " ALPHA : Alpha architecture." |
400 | $ WRITE SYS$OUTPUT " VAX : VAX architecture." | 457 | $ WRITE SYS$OUTPUT " IA64 : IA64 architecture." |
458 | $ WRITE SYS$OUTPUT " VAX : VAX architecture." | ||
401 | $ WRITE SYS$OUTPUT "" | 459 | $ WRITE SYS$OUTPUT "" |
402 | $! | 460 | $! |
403 | $! Time To EXIT. | 461 | $! Time To EXIT. |
404 | $! | 462 | $! |
405 | $ EXIT | 463 | $ EXIT |
406 | $! | 464 | $! |
407 | $! End The Valid Arguement Check. | 465 | $! End The Valid Argument Check. |
408 | $! | 466 | $! |
409 | $ ENDIF | 467 | $ ENDIF |
410 | $! | 468 | $! |
@@ -457,7 +515,7 @@ $! Time To EXIT. | |||
457 | $! | 515 | $! |
458 | $ EXIT | 516 | $ EXIT |
459 | $! | 517 | $! |
460 | $! End The Valid Arguement Check. | 518 | $! End The Valid Argument Check. |
461 | $! | 519 | $! |
462 | $ ENDIF | 520 | $ ENDIF |
463 | $! | 521 | $! |
@@ -522,7 +580,7 @@ $ ELSE | |||
522 | $! | 580 | $! |
523 | $! Check To See If We Have VAXC Or DECC. | 581 | $! Check To See If We Have VAXC Or DECC. |
524 | $! | 582 | $! |
525 | $ IF (ARCH.EQS."AXP").OR.(F$TRNLNM("DECC$CC_DEFAULT").NES."") | 583 | $ IF (ARCH.NES."VAX").OR.(F$TRNLNM("DECC$CC_DEFAULT").NES."") |
526 | $ THEN | 584 | $ THEN |
527 | $! | 585 | $! |
528 | $! Looks Like DECC, Set To Use DECC. | 586 | $! Looks Like DECC, Set To Use DECC. |
@@ -633,7 +691,7 @@ $ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/STANDARD=ANSI89" + - | |||
633 | $! | 691 | $! |
634 | $! Define The Linker Options File Name. | 692 | $! Define The Linker Options File Name. |
635 | $! | 693 | $! |
636 | $ OPT_FILE = "SYS$DISK:[]VAX_DECC_OPTIONS.OPT" | 694 | $ OPT_FILE = "''EXE_DIR'VAX_DECC_OPTIONS.OPT" |
637 | $! | 695 | $! |
638 | $! End DECC Check. | 696 | $! End DECC Check. |
639 | $! | 697 | $! |
@@ -655,7 +713,7 @@ $! | |||
655 | $! Compile Using VAXC. | 713 | $! Compile Using VAXC. |
656 | $! | 714 | $! |
657 | $ CC = "CC" | 715 | $ CC = "CC" |
658 | $ IF ARCH.EQS."AXP" | 716 | $ IF ARCH.NES."VAX" |
659 | $ THEN | 717 | $ THEN |
660 | $ WRITE SYS$OUTPUT "There is no VAX C on Alpha!" | 718 | $ WRITE SYS$OUTPUT "There is no VAX C on Alpha!" |
661 | $ EXIT | 719 | $ EXIT |
@@ -672,7 +730,7 @@ $ DEFINE/NOLOG SYS SYS$COMMON:[SYSLIB] | |||
672 | $! | 730 | $! |
673 | $! Define The Linker Options File Name. | 731 | $! Define The Linker Options File Name. |
674 | $! | 732 | $! |
675 | $ OPT_FILE = "SYS$DISK:[]VAX_VAXC_OPTIONS.OPT" | 733 | $ OPT_FILE = "''EXE_DIR'VAX_VAXC_OPTIONS.OPT" |
676 | $! | 734 | $! |
677 | $! End VAXC Check | 735 | $! End VAXC Check |
678 | $! | 736 | $! |
@@ -699,7 +757,7 @@ $ CC = "GCC/NOCASE_HACK/''GCC_OPTIMIZE'/''DEBUGGER'/NOLIST" + - | |||
699 | $! | 757 | $! |
700 | $! Define The Linker Options File Name. | 758 | $! Define The Linker Options File Name. |
701 | $! | 759 | $! |
702 | $ OPT_FILE = "SYS$DISK:[]VAX_GNUC_OPTIONS.OPT" | 760 | $ OPT_FILE = "''EXE_DIR'VAX_GNUC_OPTIONS.OPT" |
703 | $! | 761 | $! |
704 | $! End The GNU C Check. | 762 | $! End The GNU C Check. |
705 | $! | 763 | $! |
@@ -726,7 +784,7 @@ $! Show user the result | |||
726 | $! | 784 | $! |
727 | $ WRITE/SYMBOL SYS$OUTPUT "Main C Compiling Command: ",CC | 785 | $ WRITE/SYMBOL SYS$OUTPUT "Main C Compiling Command: ",CC |
728 | $! | 786 | $! |
729 | $! Else The User Entered An Invalid Arguement. | 787 | $! Else The User Entered An Invalid Argument. |
730 | $! | 788 | $! |
731 | $ ELSE | 789 | $ ELSE |
732 | $! | 790 | $! |
@@ -744,14 +802,14 @@ $! Time To EXIT. | |||
744 | $! | 802 | $! |
745 | $ EXIT | 803 | $ EXIT |
746 | $! | 804 | $! |
747 | $! End The Valid Arguement Check. | 805 | $! End The Valid Argument Check. |
748 | $! | 806 | $! |
749 | $ ENDIF | 807 | $ ENDIF |
750 | $! | 808 | $! |
751 | $! Build a MACRO command for the architecture at hand | 809 | $! Build a MACRO command for the architecture at hand |
752 | $! | 810 | $! |
753 | $ IF ARCH .EQS. "VAX" THEN MACRO = "MACRO/''DEBUGGER'" | 811 | $ IF ARCH .EQS. "VAX" THEN MACRO = "MACRO/''DEBUGGER'" |
754 | $ IF ARCH .EQS. "AXP" THEN MACRO = "MACRO/MIGRATION/''DEBUGGER'/''MACRO_OPTIMIZE'" | 812 | $ IF ARCH .NES. "VAX" THEN MACRO = "MACRO/MIGRATION/''DEBUGGER'/''MACRO_OPTIMIZE'" |
755 | $! | 813 | $! |
756 | $! Show user the result | 814 | $! Show user the result |
757 | $! | 815 | $! |
@@ -840,7 +898,7 @@ $! Print info | |||
840 | $! | 898 | $! |
841 | $ WRITE SYS$OUTPUT "TCP/IP library spec: ", TCPIP_LIB | 899 | $ WRITE SYS$OUTPUT "TCP/IP library spec: ", TCPIP_LIB |
842 | $! | 900 | $! |
843 | $! Else The User Entered An Invalid Arguement. | 901 | $! Else The User Entered An Invalid Argument. |
844 | $! | 902 | $! |
845 | $ ELSE | 903 | $ ELSE |
846 | $! | 904 | $! |
diff --git a/src/lib/libssl/src/ms/README b/src/lib/libssl/src/ms/README index 7a45db1081..07f1925d5f 100644 --- a/src/lib/libssl/src/ms/README +++ b/src/lib/libssl/src/ms/README | |||
@@ -4,7 +4,7 @@ to build with visual C++ 4.[01]. | |||
4 | 4 | ||
5 | The results will be in the out directory. | 5 | The results will be in the out directory. |
6 | 6 | ||
7 | These makefiles and def files were generated my typing | 7 | These makefiles and def files were generated by typing |
8 | 8 | ||
9 | perl util\mk1mf.pl VC-NT >ms/nt.mak | 9 | perl util\mk1mf.pl VC-NT >ms/nt.mak |
10 | perl util\mk1mf.pl VC-NT dll >ms/ntdll.mak | 10 | perl util\mk1mf.pl VC-NT dll >ms/ntdll.mak |
diff --git a/src/lib/libssl/src/ms/do_win64a.bat b/src/lib/libssl/src/ms/do_win64a.bat index 825c690221..495f1ea7d8 100755 --- a/src/lib/libssl/src/ms/do_win64a.bat +++ b/src/lib/libssl/src/ms/do_win64a.bat | |||
@@ -1,9 +1,9 @@ | |||
1 | 1 | ||
2 | perl util\mkfiles.pl >MINFO | 2 | perl util\mkfiles.pl >MINFO |
3 | perl ms\uplink.pl win64a > ms\uptable.asm | 3 | perl ms\uplink.pl win64a > ms\uptable.asm |
4 | ml64 -c -Foms\uptable.obj ms\uptable.asm | 4 | ml64 -c -Foms\uptable.obj ms\uptable.asm |
5 | perl util\mk1mf.pl no-asm VC-WIN64A >ms\nt.mak | 5 | perl util\mk1mf.pl no-asm VC-WIN64A >ms\nt.mak |
6 | perl util\mk1mf.pl dll no-asm VC-WIN64A >ms\ntdll.mak | 6 | perl util\mk1mf.pl dll no-asm VC-WIN64A >ms\ntdll.mak |
7 | 7 | ||
8 | perl util\mkdef.pl 32 libeay > ms\libeay32.def | 8 | perl util\mkdef.pl 32 libeay > ms\libeay32.def |
9 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def | 9 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def |
diff --git a/src/lib/libssl/src/ms/do_win64i.bat b/src/lib/libssl/src/ms/do_win64i.bat index 7bfc2f1818..15ebcaaeb6 100755 --- a/src/lib/libssl/src/ms/do_win64i.bat +++ b/src/lib/libssl/src/ms/do_win64i.bat | |||
@@ -1,9 +1,9 @@ | |||
1 | 1 | ||
2 | perl util\mkfiles.pl >MINFO | 2 | perl util\mkfiles.pl >MINFO |
3 | perl ms\uplink.pl win64i > ms\uptable.asm | 3 | perl ms\uplink.pl win64i > ms\uptable.asm |
4 | ias -o ms\uptable.obj ms\uptable.asm | 4 | ias -o ms\uptable.obj ms\uptable.asm |
5 | perl util\mk1mf.pl no-asm VC-WIN64I >ms\nt.mak | 5 | perl util\mk1mf.pl no-asm VC-WIN64I >ms\nt.mak |
6 | perl util\mk1mf.pl dll no-asm VC-WIN64I >ms\ntdll.mak | 6 | perl util\mk1mf.pl dll no-asm VC-WIN64I >ms\ntdll.mak |
7 | 7 | ||
8 | perl util\mkdef.pl 32 libeay > ms\libeay32.def | 8 | perl util\mkdef.pl 32 libeay > ms\libeay32.def |
9 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def | 9 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def |
diff --git a/src/lib/libssl/src/ms/tencce.bat b/src/lib/libssl/src/ms/tencce.bat index 6a944d7671..c8b1acd4b4 100644 --- a/src/lib/libssl/src/ms/tencce.bat +++ b/src/lib/libssl/src/ms/tencce.bat | |||
@@ -1,19 +1,19 @@ | |||
1 | rem called by testencce | 1 | rem called by testencce |
2 | 2 | ||
3 | echo test %1 %2 %3 %4 %5 %6 | 3 | echo test %1 %2 %3 %4 %5 %6 |
4 | cecopy %input% CE:\OpenSSL | 4 | cecopy %input% CE:\OpenSSL |
5 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in \OpenSSL\%input% -out \OpenSSL\%tmp1% | 5 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in \OpenSSL\%input% -out \OpenSSL\%tmp1% |
6 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in \OpenSSL\%tmp1% -out \OpenSSL\%out1% | 6 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in \OpenSSL\%tmp1% -out \OpenSSL\%out1% |
7 | del %out1% >nul 2>&1 | 7 | del %out1% >nul 2>&1 |
8 | cecopy CE:\OpenSSL\%out1% . | 8 | cecopy CE:\OpenSSL\%out1% . |
9 | %cmp% %input% %out1% | 9 | %cmp% %input% %out1% |
10 | if errorlevel 1 goto err | 10 | if errorlevel 1 goto err |
11 | 11 | ||
12 | echo test base64 %1 %2 %3 %4 %5 %6 | 12 | echo test base64 %1 %2 %3 %4 %5 %6 |
13 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in \OpenSSL\%input% -out \OpenSSL\%tmp1% | 13 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in \OpenSSL\%input% -out \OpenSSL\%tmp1% |
14 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in \OpenSSL\%tmp1% -out \OpenSSL\%out1% | 14 | cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in \OpenSSL\%tmp1% -out \OpenSSL\%out1% |
15 | del %out1% >nul 2>&1 | 15 | del %out1% >nul 2>&1 |
16 | cecopy CE:\OpenSSL\%out1% . | 16 | cecopy CE:\OpenSSL\%out1% . |
17 | %cmp% %input% %out1% | 17 | %cmp% %input% %out1% |
18 | 18 | ||
19 | :err | 19 | :err |
diff --git a/src/lib/libssl/src/ms/testencce.bat b/src/lib/libssl/src/ms/testencce.bat index 04faa5d99b..1da3e0861f 100644 --- a/src/lib/libssl/src/ms/testencce.bat +++ b/src/lib/libssl/src/ms/testencce.bat | |||
@@ -1,97 +1,97 @@ | |||
1 | @echo off | 1 | @echo off |
2 | echo start testenc | 2 | echo start testenc |
3 | 3 | ||
4 | path=..\ms;%path% | 4 | path=..\ms;%path% |
5 | set ssleay=%1% | 5 | set ssleay=%1% |
6 | copy ..\ms\testenc.bat >nul | 6 | copy ..\ms\testenc.bat >nul |
7 | set input=testenc.bat | 7 | set input=testenc.bat |
8 | set tmp1=cipher.out | 8 | set tmp1=cipher.out |
9 | set out1=clear.out | 9 | set out1=clear.out |
10 | set cmp=perl ..\ms\cmp.pl | 10 | set cmp=perl ..\ms\cmp.pl |
11 | 11 | ||
12 | cecopy %ssleay% CE:\OpenSSL | 12 | cecopy %ssleay% CE:\OpenSSL |
13 | 13 | ||
14 | cd | 14 | cd |
15 | call tencce.bat enc | 15 | call tencce.bat enc |
16 | if errorlevel 1 goto err | 16 | if errorlevel 1 goto err |
17 | 17 | ||
18 | call tencce.bat rc4 | 18 | call tencce.bat rc4 |
19 | if errorlevel 1 goto err | 19 | if errorlevel 1 goto err |
20 | 20 | ||
21 | call tencce.bat des-cfb | 21 | call tencce.bat des-cfb |
22 | if errorlevel 1 goto err | 22 | if errorlevel 1 goto err |
23 | 23 | ||
24 | call tencce.bat des-ede-cfb | 24 | call tencce.bat des-ede-cfb |
25 | if errorlevel 1 goto err | 25 | if errorlevel 1 goto err |
26 | 26 | ||
27 | call tencce.bat des-ede3-cfb | 27 | call tencce.bat des-ede3-cfb |
28 | if errorlevel 1 goto err | 28 | if errorlevel 1 goto err |
29 | 29 | ||
30 | call tencce.bat des-ofb | 30 | call tencce.bat des-ofb |
31 | if errorlevel 1 goto err | 31 | if errorlevel 1 goto err |
32 | 32 | ||
33 | call tencce.bat des-ede-ofb | 33 | call tencce.bat des-ede-ofb |
34 | if errorlevel 1 goto err | 34 | if errorlevel 1 goto err |
35 | 35 | ||
36 | call tencce.bat des-ede3-ofb | 36 | call tencce.bat des-ede3-ofb |
37 | if errorlevel 1 goto err | 37 | if errorlevel 1 goto err |
38 | 38 | ||
39 | call tencce.bat des-ecb | 39 | call tencce.bat des-ecb |
40 | if errorlevel 1 goto err | 40 | if errorlevel 1 goto err |
41 | 41 | ||
42 | call tencce.bat des-ede | 42 | call tencce.bat des-ede |
43 | if errorlevel 1 goto err | 43 | if errorlevel 1 goto err |
44 | 44 | ||
45 | call tencce.bat des-ede3 | 45 | call tencce.bat des-ede3 |
46 | if errorlevel 1 goto err | 46 | if errorlevel 1 goto err |
47 | 47 | ||
48 | call tencce.bat des-cbc | 48 | call tencce.bat des-cbc |
49 | if errorlevel 1 goto err | 49 | if errorlevel 1 goto err |
50 | 50 | ||
51 | call tencce.bat des-ede-cbc | 51 | call tencce.bat des-ede-cbc |
52 | if errorlevel 1 goto err | 52 | if errorlevel 1 goto err |
53 | 53 | ||
54 | call tencce.bat des-ede3-cbc | 54 | call tencce.bat des-ede3-cbc |
55 | if errorlevel 1 goto err | 55 | if errorlevel 1 goto err |
56 | 56 | ||
57 | call tencce.bat idea-ecb | 57 | call tencce.bat idea-ecb |
58 | if errorlevel 1 goto err | 58 | if errorlevel 1 goto err |
59 | 59 | ||
60 | call tencce.bat idea-cfb | 60 | call tencce.bat idea-cfb |
61 | if errorlevel 1 goto err | 61 | if errorlevel 1 goto err |
62 | 62 | ||
63 | call tencce.bat idea-ofb | 63 | call tencce.bat idea-ofb |
64 | if errorlevel 1 goto err | 64 | if errorlevel 1 goto err |
65 | 65 | ||
66 | call tencce.bat idea-cbc | 66 | call tencce.bat idea-cbc |
67 | if errorlevel 1 goto err | 67 | if errorlevel 1 goto err |
68 | 68 | ||
69 | call tencce.bat rc2-ecb | 69 | call tencce.bat rc2-ecb |
70 | if errorlevel 1 goto err | 70 | if errorlevel 1 goto err |
71 | 71 | ||
72 | call tencce.bat rc2-cfb | 72 | call tencce.bat rc2-cfb |
73 | if errorlevel 1 goto err | 73 | if errorlevel 1 goto err |
74 | 74 | ||
75 | call tencce.bat rc2-ofb | 75 | call tencce.bat rc2-ofb |
76 | if errorlevel 1 goto err | 76 | if errorlevel 1 goto err |
77 | 77 | ||
78 | call tencce.bat rc2-cbc | 78 | call tencce.bat rc2-cbc |
79 | if errorlevel 1 goto err | 79 | if errorlevel 1 goto err |
80 | 80 | ||
81 | call tencce.bat bf-ecb | 81 | call tencce.bat bf-ecb |
82 | if errorlevel 1 goto err | 82 | if errorlevel 1 goto err |
83 | 83 | ||
84 | call tencce.bat bf-cfb | 84 | call tencce.bat bf-cfb |
85 | if errorlevel 1 goto err | 85 | if errorlevel 1 goto err |
86 | 86 | ||
87 | call tencce.bat bf-ofb | 87 | call tencce.bat bf-ofb |
88 | if errorlevel 1 goto err | 88 | if errorlevel 1 goto err |
89 | 89 | ||
90 | call tencce.bat bf-cbc | 90 | call tencce.bat bf-cbc |
91 | if errorlevel 1 goto err | 91 | if errorlevel 1 goto err |
92 | 92 | ||
93 | echo OK | 93 | echo OK |
94 | del %out1% >nul 2>&1 | 94 | del %out1% >nul 2>&1 |
95 | del %tmp1% >nul 2>&1 | 95 | del %tmp1% >nul 2>&1 |
96 | :err | 96 | :err |
97 | 97 | ||
diff --git a/src/lib/libssl/src/ms/testpemce.bat b/src/lib/libssl/src/ms/testpemce.bat index c793c3e514..ac64a7912c 100644 --- a/src/lib/libssl/src/ms/testpemce.bat +++ b/src/lib/libssl/src/ms/testpemce.bat | |||
@@ -1,42 +1,42 @@ | |||
1 | @echo off | 1 | @echo off |
2 | set ssleay=%1% | 2 | set ssleay=%1% |
3 | set tmp1=pem.out | 3 | set tmp1=pem.out |
4 | set cmp=fc.exe | 4 | set cmp=fc.exe |
5 | 5 | ||
6 | cecopy %ssleay% CE:\OpenSSL | 6 | cecopy %ssleay% CE:\OpenSSL |
7 | 7 | ||
8 | copy ..\test\testcrl.pem >nul | 8 | copy ..\test\testcrl.pem >nul |
9 | call tpemce.bat crl testcrl.pem | 9 | call tpemce.bat crl testcrl.pem |
10 | if errorlevel 1 goto err | 10 | if errorlevel 1 goto err |
11 | 11 | ||
12 | copy ..\test\testp7.pem >nul | 12 | copy ..\test\testp7.pem >nul |
13 | call tpemce.bat pkcs7 testp7.pem | 13 | call tpemce.bat pkcs7 testp7.pem |
14 | if errorlevel 1 goto err | 14 | if errorlevel 1 goto err |
15 | 15 | ||
16 | copy ..\test\testreq2.pem >nul | 16 | copy ..\test\testreq2.pem >nul |
17 | call tpemce.bat req testreq2.pem | 17 | call tpemce.bat req testreq2.pem |
18 | if errorlevel 1 goto err | 18 | if errorlevel 1 goto err |
19 | 19 | ||
20 | copy ..\test\testrsa.pem >nul | 20 | copy ..\test\testrsa.pem >nul |
21 | call tpemce.bat rsa testrsa.pem | 21 | call tpemce.bat rsa testrsa.pem |
22 | if errorlevel 1 goto err | 22 | if errorlevel 1 goto err |
23 | 23 | ||
24 | copy ..\test\testx509.pem >nul | 24 | copy ..\test\testx509.pem >nul |
25 | call tpemce.bat x509 testx509.pem | 25 | call tpemce.bat x509 testx509.pem |
26 | if errorlevel 1 goto err | 26 | if errorlevel 1 goto err |
27 | 27 | ||
28 | copy ..\test\v3-cert1.pem >nul | 28 | copy ..\test\v3-cert1.pem >nul |
29 | call tpemce.bat x509 v3-cert1.pem | 29 | call tpemce.bat x509 v3-cert1.pem |
30 | if errorlevel 1 goto err | 30 | if errorlevel 1 goto err |
31 | 31 | ||
32 | copy ..\test\v3-cert1.pem >nul | 32 | copy ..\test\v3-cert1.pem >nul |
33 | call tpemce.bat x509 v3-cert1.pem | 33 | call tpemce.bat x509 v3-cert1.pem |
34 | if errorlevel 1 goto err | 34 | if errorlevel 1 goto err |
35 | 35 | ||
36 | copy ..\test\testsid.pem >nul | 36 | copy ..\test\testsid.pem >nul |
37 | call tpemce.bat sess_id testsid.pem | 37 | call tpemce.bat sess_id testsid.pem |
38 | if errorlevel 1 goto err | 38 | if errorlevel 1 goto err |
39 | 39 | ||
40 | echo OK | 40 | echo OK |
41 | del %tmp1% >nul 2>&1 | 41 | del %tmp1% >nul 2>&1 |
42 | :err | 42 | :err |
diff --git a/src/lib/libssl/src/ms/testssce.bat b/src/lib/libssl/src/ms/testssce.bat index dbb25abdb0..18381ed2fa 100644 --- a/src/lib/libssl/src/ms/testssce.bat +++ b/src/lib/libssl/src/ms/testssce.bat | |||
@@ -1,104 +1,104 @@ | |||
1 | rem set ssleay=..\out\ssleay | 1 | rem set ssleay=..\out\ssleay |
2 | set ssleay=%1 | 2 | set ssleay=%1 |
3 | 3 | ||
4 | set reqcmd=%ssleay% req | 4 | set reqcmd=%ssleay% req |
5 | set x509cmd=%ssleay% x509 | 5 | set x509cmd=%ssleay% x509 |
6 | set verifycmd=%ssleay% verify | 6 | set verifycmd=%ssleay% verify |
7 | 7 | ||
8 | set CAkey=\OpenSSL\keyCA.ss | 8 | set CAkey=\OpenSSL\keyCA.ss |
9 | set CAcert=\OpenSSL\certCA.ss | 9 | set CAcert=\OpenSSL\certCA.ss |
10 | set CAserial=\OpenSSL\certCA.srl | 10 | set CAserial=\OpenSSL\certCA.srl |
11 | set CAreq=\OpenSSL\reqCA.ss | 11 | set CAreq=\OpenSSL\reqCA.ss |
12 | cecopy ..\test\CAss.cnf CE:\OpenSSL | 12 | cecopy ..\test\CAss.cnf CE:\OpenSSL |
13 | set CAconf=\OpenSSL\CAss.cnf | 13 | set CAconf=\OpenSSL\CAss.cnf |
14 | set CAreq2=\OpenSSL\req2CA.ss | 14 | set CAreq2=\OpenSSL\req2CA.ss |
15 | 15 | ||
16 | cecopy ..\test\Uss.cnf CE:\OpenSSL | 16 | cecopy ..\test\Uss.cnf CE:\OpenSSL |
17 | set Uconf=\OpenSSL\Uss.cnf | 17 | set Uconf=\OpenSSL\Uss.cnf |
18 | set Ukey=\OpenSSL\keyU.ss | 18 | set Ukey=\OpenSSL\keyU.ss |
19 | set Ureq=\OpenSSL\reqU.ss | 19 | set Ureq=\OpenSSL\reqU.ss |
20 | set Ucert=\OpenSSL\certU.ss | 20 | set Ucert=\OpenSSL\certU.ss |
21 | 21 | ||
22 | echo make a certificate request using 'req' | 22 | echo make a certificate request using 'req' |
23 | cerun CE:\OpenSSL\%reqcmd% -config %CAconf% -out %CAreq% -keyout %CAkey% -new | 23 | cerun CE:\OpenSSL\%reqcmd% -config %CAconf% -out %CAreq% -keyout %CAkey% -new |
24 | if errorlevel 1 goto e_req | 24 | if errorlevel 1 goto e_req |
25 | 25 | ||
26 | echo convert the certificate request into a self signed certificate using 'x509' | 26 | echo convert the certificate request into a self signed certificate using 'x509' |
27 | cerun CE:\OpenSSL\%x509cmd% -CAcreateserial -in %CAreq% -days 30 -req -out %CAcert% -signkey %CAkey% "> \OpenSSL\err.ss" | 27 | cerun CE:\OpenSSL\%x509cmd% -CAcreateserial -in %CAreq% -days 30 -req -out %CAcert% -signkey %CAkey% "> \OpenSSL\err.ss" |
28 | if errorlevel 1 goto e_x509 | 28 | if errorlevel 1 goto e_x509 |
29 | 29 | ||
30 | echo -- | 30 | echo -- |
31 | echo convert a certificate into a certificate request using 'x509' | 31 | echo convert a certificate into a certificate request using 'x509' |
32 | cerun CE:\OpenSSL\%x509cmd% -in %CAcert% -x509toreq -signkey %CAkey% -out %CAreq2% "> \OpenSSL\err.ss" | 32 | cerun CE:\OpenSSL\%x509cmd% -in %CAcert% -x509toreq -signkey %CAkey% -out %CAreq2% "> \OpenSSL\err.ss" |
33 | if errorlevel 1 goto e_x509_2 | 33 | if errorlevel 1 goto e_x509_2 |
34 | 34 | ||
35 | cerun CE:\OpenSSL\%reqcmd% -verify -in %CAreq% -noout | 35 | cerun CE:\OpenSSL\%reqcmd% -verify -in %CAreq% -noout |
36 | if errorlevel 1 goto e_vrfy_1 | 36 | if errorlevel 1 goto e_vrfy_1 |
37 | 37 | ||
38 | cerun CE:\OpenSSL\%reqcmd% -verify -in %CAreq2% -noout | 38 | cerun CE:\OpenSSL\%reqcmd% -verify -in %CAreq2% -noout |
39 | if errorlevel 1 goto e_vrfy_2 | 39 | if errorlevel 1 goto e_vrfy_2 |
40 | 40 | ||
41 | cerun CE:\OpenSSL\%verifycmd% -CAfile %CAcert% %CAcert% | 41 | cerun CE:\OpenSSL\%verifycmd% -CAfile %CAcert% %CAcert% |
42 | if errorlevel 1 goto e_vrfy_3 | 42 | if errorlevel 1 goto e_vrfy_3 |
43 | 43 | ||
44 | echo -- | 44 | echo -- |
45 | echo make another certificate request using 'req' | 45 | echo make another certificate request using 'req' |
46 | cerun CE:\OpenSSL\%reqcmd% -config %Uconf% -out %Ureq% -keyout %Ukey% -new "> \OpenSSL\err.ss" | 46 | cerun CE:\OpenSSL\%reqcmd% -config %Uconf% -out %Ureq% -keyout %Ukey% -new "> \OpenSSL\err.ss" |
47 | if errorlevel 1 goto e_req_gen | 47 | if errorlevel 1 goto e_req_gen |
48 | 48 | ||
49 | echo -- | 49 | echo -- |
50 | echo sign certificate request with the just created CA via 'x509' | 50 | echo sign certificate request with the just created CA via 'x509' |
51 | cerun CE:\OpenSSL\%x509cmd% -CAcreateserial -in %Ureq% -days 30 -req -out %Ucert% -CA %CAcert% -CAkey %CAkey% -CAserial %CAserial% | 51 | cerun CE:\OpenSSL\%x509cmd% -CAcreateserial -in %Ureq% -days 30 -req -out %Ucert% -CA %CAcert% -CAkey %CAkey% -CAserial %CAserial% |
52 | if errorlevel 1 goto e_x_sign | 52 | if errorlevel 1 goto e_x_sign |
53 | 53 | ||
54 | cerun CE:\OpenSSL\%verifycmd% -CAfile %CAcert% %Ucert% | 54 | cerun CE:\OpenSSL\%verifycmd% -CAfile %CAcert% %Ucert% |
55 | echo -- | 55 | echo -- |
56 | echo Certificate details | 56 | echo Certificate details |
57 | cerun CE:\OpenSSL\%x509cmd% -subject -issuer -startdate -enddate -noout -in %Ucert% | 57 | cerun CE:\OpenSSL\%x509cmd% -subject -issuer -startdate -enddate -noout -in %Ucert% |
58 | 58 | ||
59 | cecopy CE:%CAcert% . | 59 | cecopy CE:%CAcert% . |
60 | cecopy CE:%CAkey% . | 60 | cecopy CE:%CAkey% . |
61 | cecopy CE:%CAserial% . | 61 | cecopy CE:%CAserial% . |
62 | cecopy CE:%Ucert% . | 62 | cecopy CE:%Ucert% . |
63 | cecopy CE:%Ukey% . | 63 | cecopy CE:%Ukey% . |
64 | 64 | ||
65 | echo Everything appeared to work | 65 | echo Everything appeared to work |
66 | echo -- | 66 | echo -- |
67 | echo The generated CA certificate is %CAcert% | 67 | echo The generated CA certificate is %CAcert% |
68 | echo The generated CA private key is %CAkey% | 68 | echo The generated CA private key is %CAkey% |
69 | echo The current CA signing serial number is in %CAserial% | 69 | echo The current CA signing serial number is in %CAserial% |
70 | 70 | ||
71 | echo The generated user certificate is %Ucert% | 71 | echo The generated user certificate is %Ucert% |
72 | echo The generated user private key is %Ukey% | 72 | echo The generated user private key is %Ukey% |
73 | echo -- | 73 | echo -- |
74 | 74 | ||
75 | cedel CE:\OpenSSL\err.ss | 75 | cedel CE:\OpenSSL\err.ss |
76 | 76 | ||
77 | goto end | 77 | goto end |
78 | 78 | ||
79 | :e_req | 79 | :e_req |
80 | echo error using 'req' to generate a certificate request | 80 | echo error using 'req' to generate a certificate request |
81 | goto end | 81 | goto end |
82 | :e_x509 | 82 | :e_x509 |
83 | echo error using 'x509' to self sign a certificate request | 83 | echo error using 'x509' to self sign a certificate request |
84 | goto end | 84 | goto end |
85 | :e_x509_2 | 85 | :e_x509_2 |
86 | echo error using 'x509' convert a certificate to a certificate request | 86 | echo error using 'x509' convert a certificate to a certificate request |
87 | goto end | 87 | goto end |
88 | :e_vrfy_1 | 88 | :e_vrfy_1 |
89 | echo first generated request is invalid | 89 | echo first generated request is invalid |
90 | goto end | 90 | goto end |
91 | :e_vrfy_2 | 91 | :e_vrfy_2 |
92 | echo second generated request is invalid | 92 | echo second generated request is invalid |
93 | goto end | 93 | goto end |
94 | :e_vrfy_3 | 94 | :e_vrfy_3 |
95 | echo first generated cert is invalid | 95 | echo first generated cert is invalid |
96 | goto end | 96 | goto end |
97 | :e_req_gen | 97 | :e_req_gen |
98 | echo error using 'req' to generate a certificate request | 98 | echo error using 'req' to generate a certificate request |
99 | goto end | 99 | goto end |
100 | :e_x_sign | 100 | :e_x_sign |
101 | echo error using 'x509' to sign a certificate request | 101 | echo error using 'x509' to sign a certificate request |
102 | goto end | 102 | goto end |
103 | 103 | ||
104 | :end | 104 | :end |
diff --git a/src/lib/libssl/src/ms/tpemce.bat b/src/lib/libssl/src/ms/tpemce.bat index 17b2acd390..483f559cfa 100644 --- a/src/lib/libssl/src/ms/tpemce.bat +++ b/src/lib/libssl/src/ms/tpemce.bat | |||
@@ -1,8 +1,8 @@ | |||
1 | rem called by testpemce | 1 | rem called by testpemce |
2 | 2 | ||
3 | echo test %1 %2 | 3 | echo test %1 %2 |
4 | cecopy %2 CE:\OpenSSL | 4 | cecopy %2 CE:\OpenSSL |
5 | cerun CE:\OpenSSL\%ssleay% %1 -in \OpenSSL\%2 -out \OpenSSL\%tmp1% | 5 | cerun CE:\OpenSSL\%ssleay% %1 -in \OpenSSL\%2 -out \OpenSSL\%tmp1% |
6 | del %tmp1% >nul 2>&1 | 6 | del %tmp1% >nul 2>&1 |
7 | cecopy CE:\OpenSSL\%tmp1% . | 7 | cecopy CE:\OpenSSL\%tmp1% . |
8 | %cmp% %2 %tmp1% | 8 | %cmp% %2 %tmp1% |
diff --git a/src/lib/libssl/src/ms/uplink-common.pl b/src/lib/libssl/src/ms/uplink-common.pl new file mode 100755 index 0000000000..1d20e6e03e --- /dev/null +++ b/src/lib/libssl/src/ms/uplink-common.pl | |||
@@ -0,0 +1,22 @@ | |||
1 | #!/usr/bin/env perl | ||
2 | # | ||
3 | # pull APPLINK_MAX value from applink.c... | ||
4 | $applink_c=$0; | ||
5 | $applink_c=~s|[^/\\]+$||g; | ||
6 | $applink_c.="applink.c"; | ||
7 | open(INPUT,$applink_c) || die "can't open $applink_c: $!"; | ||
8 | @max=grep {/APPLINK_MAX\s+(\d+)/} <INPUT>; | ||
9 | close(INPUT); | ||
10 | ($#max==0) or die "can't find APPLINK_MAX in $applink_c"; | ||
11 | |||
12 | $max[0]=~/APPLINK_MAX\s+(\d+)/; | ||
13 | $N=$1; # number of entries in OPENSSL_UplinkTable not including | ||
14 | # OPENSSL_UplinkTable[0], which contains this value... | ||
15 | |||
16 | 1; | ||
17 | |||
18 | # Idea is to fill the OPENSSL_UplinkTable with pointers to stubs | ||
19 | # which invoke 'void OPENSSL_Uplink (ULONG_PTR *table,int index)'; | ||
20 | # and then dereference themselves. Latter shall result in endless | ||
21 | # loop *unless* OPENSSL_Uplink does not replace 'table[index]' with | ||
22 | # something else, e.g. as 'table[index]=unimplemented;'... | ||
diff --git a/src/lib/libssl/src/ms/uplink-ia64.pl b/src/lib/libssl/src/ms/uplink-ia64.pl new file mode 100755 index 0000000000..4204c73d58 --- /dev/null +++ b/src/lib/libssl/src/ms/uplink-ia64.pl | |||
@@ -0,0 +1,50 @@ | |||
1 | #!/usr/bin/env perl | ||
2 | |||
3 | $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; | ||
4 | push(@INC,"${dir}."); | ||
5 | |||
6 | require "uplink-common.pl"; | ||
7 | |||
8 | local $V=8; # max number of args uplink functions may accept... | ||
9 | my $loc0 = "r".(32+$V); | ||
10 | print <<___; | ||
11 | .text | ||
12 | .global OPENSSL_Uplink# | ||
13 | .type OPENSSL_Uplink#,\@function | ||
14 | |||
15 | ___ | ||
16 | for ($i=1;$i<=$N;$i++) { | ||
17 | print <<___; | ||
18 | .proc lazy$i# | ||
19 | lazy$i: | ||
20 | .prologue | ||
21 | { .mii; .save ar.pfs,$loc0 | ||
22 | alloc loc0=ar.pfs,$V,3,2,0 | ||
23 | .save b0,loc1 | ||
24 | mov loc1=b0 | ||
25 | addl loc2=\@ltoff(OPENSSL_UplinkTable#),gp };; | ||
26 | .body | ||
27 | { .mmi; ld8 out0=[loc2] | ||
28 | mov out1=$i };; | ||
29 | { .mib; add loc2=8*$i,out0 | ||
30 | br.call.sptk.many b0=OPENSSL_Uplink# };; | ||
31 | { .mmi; ld8 r31=[loc2];; | ||
32 | ld8 r30=[r31],8 };; | ||
33 | { .mii; ld8 gp=[r31] | ||
34 | mov b6=r30 | ||
35 | mov b0=loc1 };; | ||
36 | { .mib; mov ar.pfs=loc0 | ||
37 | br.many b6 };; | ||
38 | .endp lazy$i# | ||
39 | |||
40 | ___ | ||
41 | } | ||
42 | print <<___; | ||
43 | .data | ||
44 | .global OPENSSL_UplinkTable# | ||
45 | OPENSSL_UplinkTable: data8 $N // amount of following entries | ||
46 | ___ | ||
47 | for ($i=1;$i<=$N;$i++) { print " data8 \@fptr(lazy$i#)\n"; } | ||
48 | print <<___; | ||
49 | .size OPENSSL_UplinkTable,.-OPENSSL_UplinkTable# | ||
50 | ___ | ||
diff --git a/src/lib/libssl/src/ms/uplink-x86.pl b/src/lib/libssl/src/ms/uplink-x86.pl new file mode 100755 index 0000000000..0dffc14fcd --- /dev/null +++ b/src/lib/libssl/src/ms/uplink-x86.pl | |||
@@ -0,0 +1,33 @@ | |||
1 | #!/usr/bin/env perl | ||
2 | |||
3 | $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; | ||
4 | push(@INC, "${dir}.", "${dir}../crypto/perlasm"); | ||
5 | require "x86asm.pl"; | ||
6 | |||
7 | require "uplink-common.pl"; | ||
8 | |||
9 | &asm_init($ARGV[0],"uplink-x86"); | ||
10 | |||
11 | &external_label("OPENSSL_Uplink"); | ||
12 | &public_label("OPENSSL_UplinkTable"); | ||
13 | |||
14 | for ($i=1;$i<=$N;$i++) { | ||
15 | &function_begin_B("_\$lazy${i}"); | ||
16 | &lea ("eax",&DWP(&label("OPENSSL_UplinkTable"))); | ||
17 | &push ("eax"); | ||
18 | &push ($i); | ||
19 | &call (&label("OPENSSL_Uplink")); | ||
20 | &add ("esp",8); | ||
21 | &pop ("eax"); | ||
22 | &jmp_ptr(&DWP(4*$i,"eax")); | ||
23 | &function_end_B("_\$lazy${i}"); | ||
24 | } | ||
25 | |||
26 | &dataseg(); | ||
27 | &align(4); | ||
28 | &set_label("OPENSSL_UplinkTable"); | ||
29 | &data_word($N); | ||
30 | for ($i=1;$i<=$N;$i++) { | ||
31 | &data_word(&label("_\$lazy${i}")); | ||
32 | } | ||
33 | &asm_finish(); | ||
diff --git a/src/lib/libssl/src/ms/uplink-x86_64.pl b/src/lib/libssl/src/ms/uplink-x86_64.pl new file mode 100755 index 0000000000..9acbf6be6f --- /dev/null +++ b/src/lib/libssl/src/ms/uplink-x86_64.pl | |||
@@ -0,0 +1,64 @@ | |||
1 | #!/usr/bin/env perl | ||
2 | |||
3 | $output=shift; | ||
4 | $0 =~ m/(.*[\/\\])[^\/\\]+$/; $dir=$1; | ||
5 | open STDOUT,"| $^X ${dir}../crypto/perlasm/x86_64-xlate.pl $output"; | ||
6 | push(@INC,"${dir}."); | ||
7 | |||
8 | require "uplink-common.pl"; | ||
9 | |||
10 | $prefix="_lazy"; | ||
11 | |||
12 | print <<___; | ||
13 | .text | ||
14 | .extern OPENSSL_Uplink | ||
15 | .globl OPENSSL_UplinkTable | ||
16 | ___ | ||
17 | for ($i=1;$i<=$N;$i++) { | ||
18 | print <<___; | ||
19 | .type $prefix${i},\@abi-omnipotent | ||
20 | .align 16 | ||
21 | $prefix${i}: | ||
22 | .byte 0x48,0x83,0xEC,0x28 # sub rsp,40 | ||
23 | mov %rcx,48(%rsp) | ||
24 | mov %rdx,56(%rsp) | ||
25 | mov %r8,64(%rsp) | ||
26 | mov %r9,72(%rsp) | ||
27 | lea OPENSSL_UplinkTable(%rip),%rcx | ||
28 | mov \$$i,%rdx | ||
29 | call OPENSSL_Uplink | ||
30 | mov 48(%rsp),%rcx | ||
31 | mov 56(%rsp),%rdx | ||
32 | mov 64(%rsp),%r8 | ||
33 | mov 72(%rsp),%r9 | ||
34 | lea OPENSSL_UplinkTable(%rip),%rax | ||
35 | add \$40,%rsp | ||
36 | jmp *8*$i(%rax) | ||
37 | $prefix${i}_end: | ||
38 | .size $prefix${i},.-$prefix${i} | ||
39 | ___ | ||
40 | } | ||
41 | print <<___; | ||
42 | .data | ||
43 | OPENSSL_UplinkTable: | ||
44 | .quad $N | ||
45 | ___ | ||
46 | for ($i=1;$i<=$N;$i++) { print " .quad $prefix$i\n"; } | ||
47 | print <<___; | ||
48 | .section .pdata,"r" | ||
49 | .align 4 | ||
50 | ___ | ||
51 | for ($i=1;$i<=$N;$i++) { | ||
52 | print <<___; | ||
53 | .rva $prefix${i},$prefix${i}_end,${prefix}_unwind_info | ||
54 | ___ | ||
55 | } | ||
56 | print <<___; | ||
57 | .section .xdata,"r" | ||
58 | .align 8 | ||
59 | ${prefix}_unwind_info: | ||
60 | .byte 0x01,0x04,0x01,0x00 | ||
61 | .byte 0x04,0x42,0x00,0x00 | ||
62 | ___ | ||
63 | |||
64 | close STDOUT; | ||
diff --git a/src/lib/libssl/src/shlib/win32.bat b/src/lib/libssl/src/shlib/win32.bat index c807a99d35..2b0faaa17b 100644 --- a/src/lib/libssl/src/shlib/win32.bat +++ b/src/lib/libssl/src/shlib/win32.bat | |||
@@ -14,5 +14,5 @@ cl /Focrypto.obj -DWIN32 %OPTIONS% -c crypto\crypto.c | |||
14 | cl /Fossl.obj -DWIN32 %OPTIONS% -c ssl\ssl.c | 14 | cl /Fossl.obj -DWIN32 %OPTIONS% -c ssl\ssl.c |
15 | cl /Foeay.obj -DWIN32 %OPTIONS% -c apps\eay.c | 15 | cl /Foeay.obj -DWIN32 %OPTIONS% -c apps\eay.c |
16 | 16 | ||
17 | cl /Fessleay.exe %OPTIONS% eay.obj ssl.obj crypto.obj crypto\bf\asm\b-win32.obj crypto\des\asm\c-win32.obj crypto\des\asm\d-win32.obj crypto\bn\asm\x86nt32.obj user32.lib gdi32.lib wsock32.lib | 17 | cl /Fessleay.exe %OPTIONS% eay.obj ssl.obj crypto.obj crypto\bf\asm\b-win32.obj crypto\des\asm\c-win32.obj crypto\des\asm\d-win32.obj crypto\bn\asm\x86nt32.obj user32.lib gdi32.lib ws2_32.lib |
18 | 18 | ||
diff --git a/src/lib/libssl/src/shlib/win32dll.bat b/src/lib/libssl/src/shlib/win32dll.bat index 294c94c81c..844e3537c8 100644 --- a/src/lib/libssl/src/shlib/win32dll.bat +++ b/src/lib/libssl/src/shlib/win32dll.bat | |||
@@ -5,9 +5,9 @@ set OPTIONS2=/W3 /WX /Ox /Gf /nologo | |||
5 | 5 | ||
6 | set OPTIONS=%OPTIONS1% %OPTIONS2% | 6 | set OPTIONS=%OPTIONS1% %OPTIONS2% |
7 | 7 | ||
8 | cl /Felibeay32.dll /GD /MD /LD -DWIN32 %OPTIONS% ms\libeay32.def crypto\crypto.c crypto\bf\asm\b-win32.obj crypto\des\asm\c-win32.obj crypto\des\asm\d-win32.obj crypto\bn\asm\x86nt32.obj user32.lib gdi32.lib wsock32.lib | 8 | cl /Felibeay32.dll /GD /MD /LD -DWIN32 %OPTIONS% ms\libeay32.def crypto\crypto.c crypto\bf\asm\b-win32.obj crypto\des\asm\c-win32.obj crypto\des\asm\d-win32.obj crypto\bn\asm\x86nt32.obj user32.lib gdi32.lib ws2_32.lib |
9 | 9 | ||
10 | cl /Fessleay32.dll /GD /MD /LD -DWIN32 %OPTIONS% ms\ssleay32.def ssl\ssl.c libeay32.lib | 10 | cl /Fessleay32.dll /GD /MD /LD -DWIN32 %OPTIONS% ms\ssleay32.def ssl\ssl.c libeay32.lib |
11 | 11 | ||
12 | cl /Fessleay.exe /MD -DWIN32 %OPTIONS% apps\eay.c ssleay32.lib libeay32.lib user32.lib wsock32.lib | 12 | cl /Fessleay.exe /MD -DWIN32 %OPTIONS% apps\eay.c ssleay32.lib libeay32.lib user32.lib ws2_32.lib |
13 | 13 | ||
diff --git a/src/lib/libssl/src/test/CAss.cnf b/src/lib/libssl/src/test/CAss.cnf index 546e660626..20f8f05e3d 100644 --- a/src/lib/libssl/src/test/CAss.cnf +++ b/src/lib/libssl/src/test/CAss.cnf | |||
@@ -7,7 +7,7 @@ RANDFILE = ./.rnd | |||
7 | 7 | ||
8 | #################################################################### | 8 | #################################################################### |
9 | [ req ] | 9 | [ req ] |
10 | default_bits = 1024 | 10 | default_bits = 512 |
11 | default_keyfile = keySS.pem | 11 | default_keyfile = keySS.pem |
12 | distinguished_name = req_distinguished_name | 12 | distinguished_name = req_distinguished_name |
13 | encrypt_rsa_key = no | 13 | encrypt_rsa_key = no |
diff --git a/src/lib/libssl/src/test/Uss.cnf b/src/lib/libssl/src/test/Uss.cnf index 98b2e054b7..0c0ebb5f67 100644 --- a/src/lib/libssl/src/test/Uss.cnf +++ b/src/lib/libssl/src/test/Uss.cnf | |||
@@ -7,7 +7,7 @@ RANDFILE = ./.rnd | |||
7 | 7 | ||
8 | #################################################################### | 8 | #################################################################### |
9 | [ req ] | 9 | [ req ] |
10 | default_bits = 1024 | 10 | default_bits = 512 |
11 | default_keyfile = keySS.pem | 11 | default_keyfile = keySS.pem |
12 | distinguished_name = req_distinguished_name | 12 | distinguished_name = req_distinguished_name |
13 | encrypt_rsa_key = no | 13 | encrypt_rsa_key = no |
diff --git a/src/lib/libssl/src/test/testtsa.com b/src/lib/libssl/src/test/testtsa.com new file mode 100644 index 0000000000..e3c586f14a --- /dev/null +++ b/src/lib/libssl/src/test/testtsa.com | |||
@@ -0,0 +1,248 @@ | |||
1 | $! | ||
2 | $! A few very basic tests for the 'ts' time stamping authority command. | ||
3 | $! | ||
4 | $ | ||
5 | $ __arch := VAX | ||
6 | $ if f$getsyi("cpu") .ge. 128 then - | ||
7 | __arch = f$edit( f$getsyi( "ARCH_NAME"), "UPCASE") | ||
8 | $ if __arch .eqs. "" then __arch := UNK | ||
9 | $ exe_dir := sys$disk:[-.'__arch'.exe.apps] | ||
10 | $ | ||
11 | $ openssl := mcr 'f$parse(exe_dir+"openssl.exe")' | ||
12 | $ OPENSSL_CONF := [-]CAtsa.cnf | ||
13 | $ ! Because that's what ../apps/CA.sh really looks at | ||
14 | $ SSLEAY_CONFIG = "-config " + OPENSSL_CONF | ||
15 | $ | ||
16 | $ error: | ||
17 | $ subroutine | ||
18 | $ write sys$error "TSA test failed!" | ||
19 | $ exit 3 | ||
20 | $ endsubroutine | ||
21 | $ | ||
22 | $ setup_dir: | ||
23 | $ subroutine | ||
24 | $ | ||
25 | $ if f$search("tsa.dir") .nes "" | ||
26 | $ then | ||
27 | $ @[-.util]deltree [.tsa]*.* | ||
28 | $ set file/prot=(S:RWED,O:RWED,G:RWED,W:RWED) tsa.dir;* | ||
29 | $ delete tsa.dir;* | ||
30 | $ endif | ||
31 | $ | ||
32 | $ create/dir [.tsa] | ||
33 | $ set default [.tsa] | ||
34 | $ endsubroutine | ||
35 | $ | ||
36 | $ clean_up_dir: | ||
37 | $ subroutine | ||
38 | $ | ||
39 | $ set default [-] | ||
40 | $ @[-.util]deltree [.tsa]*.* | ||
41 | $ set file/prot=(S:RWED,O:RWED,G:RWED,W:RWED) tsa.dir;* | ||
42 | $ delete tsa.dir;* | ||
43 | $ endsubroutine | ||
44 | $ | ||
45 | $ create_ca: | ||
46 | $ subroutine | ||
47 | $ | ||
48 | $ write sys$output "Creating a new CA for the TSA tests..." | ||
49 | $ TSDNSECT = "ts_ca_dn" | ||
50 | $ openssl req -new -x509 -nodes - | ||
51 | -out tsaca.pem -keyout tsacakey.pem | ||
52 | $ if $severity .ne. 1 then call error | ||
53 | $ endsubroutine | ||
54 | $ | ||
55 | $ create_tsa_cert: | ||
56 | $ subroutine | ||
57 | $ | ||
58 | $ INDEX=p1 | ||
59 | $ EXT=p2 | ||
60 | $ TSDNSECT = "ts_cert_dn" | ||
61 | $ | ||
62 | $ openssl req -new - | ||
63 | -out tsa_req'INDEX'.pem -keyout tsa_key'INDEX'.pem | ||
64 | $ if $severity .ne. 1 then call error | ||
65 | $ | ||
66 | $ write sys$output "Using extension ''EXT'" | ||
67 | $ openssl x509 -req - | ||
68 | -in tsa_req'INDEX'.pem -out tsa_cert'INDEX'.pem - | ||
69 | "-CA" tsaca.pem "-CAkey" tsacakey.pem "-CAcreateserial" - | ||
70 | -extfile 'OPENSSL_CONF' -extensions "''EXT'" | ||
71 | $ if $severity .ne. 1 then call error | ||
72 | $ endsubroutine | ||
73 | $ | ||
74 | $ print_request: | ||
75 | $ subroutine | ||
76 | $ | ||
77 | $ openssl ts -query -in 'p1' -text | ||
78 | $ endsubroutine | ||
79 | $ | ||
80 | $ create_time_stamp_request1: subroutine | ||
81 | $ | ||
82 | $ openssl ts -query -data [-]testtsa.com -policy tsa_policy1 - | ||
83 | -cert -out req1.tsq | ||
84 | $ if $severity .ne. 1 then call error | ||
85 | $ endsubroutine | ||
86 | $ | ||
87 | $ create_time_stamp_request2: subroutine | ||
88 | $ | ||
89 | $ openssl ts -query -data [-]testtsa.com -policy tsa_policy2 - | ||
90 | -no_nonce -out req2.tsq | ||
91 | $ if $severity .ne. 1 then call error | ||
92 | $ endsubroutine | ||
93 | $ | ||
94 | $ create_time_stamp_request3: subroutine | ||
95 | $ | ||
96 | $ openssl ts -query -data [-]CAtsa.cnf -no_nonce -out req3.tsq | ||
97 | $ if $severity .ne. 1 then call error | ||
98 | $ endsubroutine | ||
99 | $ | ||
100 | $ print_response: | ||
101 | $ subroutine | ||
102 | $ | ||
103 | $ openssl ts -reply -in 'p1' -text | ||
104 | $ if $severity .ne. 1 then call error | ||
105 | $ endsubroutine | ||
106 | $ | ||
107 | $ create_time_stamp_response: | ||
108 | $ subroutine | ||
109 | $ | ||
110 | $ openssl ts -reply -section 'p3' -queryfile 'p1' -out 'p2' | ||
111 | $ if $severity .ne. 1 then call error | ||
112 | $ endsubroutine | ||
113 | $ | ||
114 | $ time_stamp_response_token_test: | ||
115 | $ subroutine | ||
116 | $ | ||
117 | $ RESPONSE2:='p2'.copy_tsr | ||
118 | $ TOKEN_DER:='p2'.token_der | ||
119 | $ openssl ts -reply -in 'p2' -out 'TOKEN_DER' -token_out | ||
120 | $ if $severity .ne. 1 then call error | ||
121 | $ openssl ts -reply -in 'TOKEN_DER' -token_in -out 'RESPONSE2' | ||
122 | $ if $severity .ne. 1 then call error | ||
123 | $ backup/compare 'RESPONSE2' 'p2' | ||
124 | $ if $severity .ne. 1 then call error | ||
125 | $ openssl ts -reply -in 'p2' -text -token_out | ||
126 | $ if $severity .ne. 1 then call error | ||
127 | $ openssl ts -reply -in 'TOKEN_DER' -token_in -text -token_out | ||
128 | $ if $severity .ne. 1 then call error | ||
129 | $ openssl ts -reply -queryfile 'p1' -text -token_out | ||
130 | $ if $severity .ne. 1 then call error | ||
131 | $ endsubroutine | ||
132 | $ | ||
133 | $ verify_time_stamp_response: | ||
134 | $ subroutine | ||
135 | $ | ||
136 | $ openssl ts -verify -queryfile 'p1' -in 'p2' - | ||
137 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
138 | $ if $severity .ne. 1 then call error | ||
139 | $ openssl ts -verify -data 'p3' -in 'p2' - | ||
140 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
141 | $ if $severity .ne. 1 then call error | ||
142 | $ endsubroutine | ||
143 | $ | ||
144 | $ verify_time_stamp_token: | ||
145 | $ subroutine | ||
146 | $ | ||
147 | $ ! create the token from the response first | ||
148 | $ openssl ts -reply -in 'p2' -out 'p2'.token -token_out | ||
149 | $ if $severity .ne. 1 then call error | ||
150 | $ openssl ts -verify -queryfile 'p1' -in 'p2'.token -token_in - | ||
151 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
152 | $ if $severity .ne. 1 then call error | ||
153 | $ openssl ts -verify -data 'p3' -in 'p2'.token -token_in - | ||
154 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
155 | $ if $severity .ne. 1 then call error | ||
156 | $ endsubroutine | ||
157 | $ | ||
158 | $ verify_time_stamp_response_fail: | ||
159 | $ subroutine | ||
160 | $ | ||
161 | $ openssl ts -verify -queryfile 'p1' -in 'p2' - | ||
162 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
163 | $ ! Checks if the verification failed, as it should have. | ||
164 | $ if $severity .eq. 1 then call error | ||
165 | $ write sys$output "Ok" | ||
166 | $ endsubroutine | ||
167 | $ | ||
168 | $ ! Main body ---------------------------------------------------------- | ||
169 | $ | ||
170 | $ write sys$output "Setting up TSA test directory..." | ||
171 | $ call setup_dir | ||
172 | $ | ||
173 | $ write sys$output "Creating CA for TSA tests..." | ||
174 | $ call create_ca | ||
175 | $ | ||
176 | $ write sys$output "Creating tsa_cert1.pem TSA server cert..." | ||
177 | $ call create_tsa_cert 1 "tsa_cert" | ||
178 | $ | ||
179 | $ write sys$output "Creating tsa_cert2.pem non-TSA server cert..." | ||
180 | $ call create_tsa_cert 2 "non_tsa_cert" | ||
181 | $ | ||
182 | $ write sys$output "Creating req1.req time stamp request for file testtsa..." | ||
183 | $ call create_time_stamp_request1 | ||
184 | $ | ||
185 | $ write sys$output "Printing req1.req..." | ||
186 | $ call print_request req1.tsq | ||
187 | $ | ||
188 | $ write sys$output "Generating valid response for req1.req..." | ||
189 | $ call create_time_stamp_response req1.tsq resp1.tsr tsa_config1 | ||
190 | $ | ||
191 | $ write sys$output "Printing response..." | ||
192 | $ call print_response resp1.tsr | ||
193 | $ | ||
194 | $ write sys$output "Verifying valid response..." | ||
195 | $ call verify_time_stamp_response req1.tsq resp1.tsr [-]testtsa.com | ||
196 | $ | ||
197 | $ write sys$output "Verifying valid token..." | ||
198 | $ call verify_time_stamp_token req1.tsq resp1.tsr [-]testtsa.com | ||
199 | $ | ||
200 | $ ! The tests below are commented out, because invalid signer certificates | ||
201 | $ ! can no longer be specified in the config file. | ||
202 | $ | ||
203 | $ ! write sys$output "Generating _invalid_ response for req1.req..." | ||
204 | $ ! call create_time_stamp_response req1.tsq resp1_bad.tsr tsa_config2 | ||
205 | $ | ||
206 | $ ! write sys$output "Printing response..." | ||
207 | $ ! call print_response resp1_bad.tsr | ||
208 | $ | ||
209 | $ ! write sys$output "Verifying invalid response, it should fail..." | ||
210 | $ ! call verify_time_stamp_response_fail req1.tsq resp1_bad.tsr | ||
211 | $ | ||
212 | $ write sys$output "Creating req2.req time stamp request for file testtsa..." | ||
213 | $ call create_time_stamp_request2 | ||
214 | $ | ||
215 | $ write sys$output "Printing req2.req..." | ||
216 | $ call print_request req2.tsq | ||
217 | $ | ||
218 | $ write sys$output "Generating valid response for req2.req..." | ||
219 | $ call create_time_stamp_response req2.tsq resp2.tsr tsa_config1 | ||
220 | $ | ||
221 | $ write sys$output "Checking '-token_in' and '-token_out' options with '-reply'..." | ||
222 | $ call time_stamp_response_token_test req2.tsq resp2.tsr | ||
223 | $ | ||
224 | $ write sys$output "Printing response..." | ||
225 | $ call print_response resp2.tsr | ||
226 | $ | ||
227 | $ write sys$output "Verifying valid response..." | ||
228 | $ call verify_time_stamp_response req2.tsq resp2.tsr [-]testtsa.com | ||
229 | $ | ||
230 | $ write sys$output "Verifying response against wrong request, it should fail..." | ||
231 | $ call verify_time_stamp_response_fail req1.tsq resp2.tsr | ||
232 | $ | ||
233 | $ write sys$output "Verifying response against wrong request, it should fail..." | ||
234 | $ call verify_time_stamp_response_fail req2.tsq resp1.tsr | ||
235 | $ | ||
236 | $ write sys$output "Creating req3.req time stamp request for file CAtsa.cnf..." | ||
237 | $ call create_time_stamp_request3 | ||
238 | $ | ||
239 | $ write sys$output "Printing req3.req..." | ||
240 | $ call print_request req3.tsq | ||
241 | $ | ||
242 | $ write sys$output "Verifying response against wrong request, it should fail..." | ||
243 | $ call verify_time_stamp_response_fail req3.tsq resp1.tsr | ||
244 | $ | ||
245 | $ write sys$output "Cleaning up..." | ||
246 | $ call clean_up_dir | ||
247 | $ | ||
248 | $ exit | ||
diff --git a/src/lib/libssl/src/tools/Makefile b/src/lib/libssl/src/tools/Makefile index 4ca835c4af..bb6fb71f3e 100644 --- a/src/lib/libssl/src/tools/Makefile +++ b/src/lib/libssl/src/tools/Makefile | |||
@@ -49,6 +49,7 @@ depend: | |||
49 | dclean: | 49 | dclean: |
50 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 50 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
51 | mv -f Makefile.new $(MAKEFILE) | 51 | mv -f Makefile.new $(MAKEFILE) |
52 | rm -f c_rehash | ||
52 | 53 | ||
53 | clean: | 54 | clean: |
54 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 55 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
diff --git a/src/lib/libssl/src/util/deltree.com b/src/lib/libssl/src/util/deltree.com new file mode 100644 index 0000000000..9f36b1a5e9 --- /dev/null +++ b/src/lib/libssl/src/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/libssl/src/util/shlib_wrap.sh b/src/lib/libssl/src/util/shlib_wrap.sh index a2f62d696f..9416d593d2 100755 --- a/src/lib/libssl/src/util/shlib_wrap.sh +++ b/src/lib/libssl/src/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/libssl/test/testtsa.com b/src/lib/libssl/test/testtsa.com new file mode 100644 index 0000000000..e3c586f14a --- /dev/null +++ b/src/lib/libssl/test/testtsa.com | |||
@@ -0,0 +1,248 @@ | |||
1 | $! | ||
2 | $! A few very basic tests for the 'ts' time stamping authority command. | ||
3 | $! | ||
4 | $ | ||
5 | $ __arch := VAX | ||
6 | $ if f$getsyi("cpu") .ge. 128 then - | ||
7 | __arch = f$edit( f$getsyi( "ARCH_NAME"), "UPCASE") | ||
8 | $ if __arch .eqs. "" then __arch := UNK | ||
9 | $ exe_dir := sys$disk:[-.'__arch'.exe.apps] | ||
10 | $ | ||
11 | $ openssl := mcr 'f$parse(exe_dir+"openssl.exe")' | ||
12 | $ OPENSSL_CONF := [-]CAtsa.cnf | ||
13 | $ ! Because that's what ../apps/CA.sh really looks at | ||
14 | $ SSLEAY_CONFIG = "-config " + OPENSSL_CONF | ||
15 | $ | ||
16 | $ error: | ||
17 | $ subroutine | ||
18 | $ write sys$error "TSA test failed!" | ||
19 | $ exit 3 | ||
20 | $ endsubroutine | ||
21 | $ | ||
22 | $ setup_dir: | ||
23 | $ subroutine | ||
24 | $ | ||
25 | $ if f$search("tsa.dir") .nes "" | ||
26 | $ then | ||
27 | $ @[-.util]deltree [.tsa]*.* | ||
28 | $ set file/prot=(S:RWED,O:RWED,G:RWED,W:RWED) tsa.dir;* | ||
29 | $ delete tsa.dir;* | ||
30 | $ endif | ||
31 | $ | ||
32 | $ create/dir [.tsa] | ||
33 | $ set default [.tsa] | ||
34 | $ endsubroutine | ||
35 | $ | ||
36 | $ clean_up_dir: | ||
37 | $ subroutine | ||
38 | $ | ||
39 | $ set default [-] | ||
40 | $ @[-.util]deltree [.tsa]*.* | ||
41 | $ set file/prot=(S:RWED,O:RWED,G:RWED,W:RWED) tsa.dir;* | ||
42 | $ delete tsa.dir;* | ||
43 | $ endsubroutine | ||
44 | $ | ||
45 | $ create_ca: | ||
46 | $ subroutine | ||
47 | $ | ||
48 | $ write sys$output "Creating a new CA for the TSA tests..." | ||
49 | $ TSDNSECT = "ts_ca_dn" | ||
50 | $ openssl req -new -x509 -nodes - | ||
51 | -out tsaca.pem -keyout tsacakey.pem | ||
52 | $ if $severity .ne. 1 then call error | ||
53 | $ endsubroutine | ||
54 | $ | ||
55 | $ create_tsa_cert: | ||
56 | $ subroutine | ||
57 | $ | ||
58 | $ INDEX=p1 | ||
59 | $ EXT=p2 | ||
60 | $ TSDNSECT = "ts_cert_dn" | ||
61 | $ | ||
62 | $ openssl req -new - | ||
63 | -out tsa_req'INDEX'.pem -keyout tsa_key'INDEX'.pem | ||
64 | $ if $severity .ne. 1 then call error | ||
65 | $ | ||
66 | $ write sys$output "Using extension ''EXT'" | ||
67 | $ openssl x509 -req - | ||
68 | -in tsa_req'INDEX'.pem -out tsa_cert'INDEX'.pem - | ||
69 | "-CA" tsaca.pem "-CAkey" tsacakey.pem "-CAcreateserial" - | ||
70 | -extfile 'OPENSSL_CONF' -extensions "''EXT'" | ||
71 | $ if $severity .ne. 1 then call error | ||
72 | $ endsubroutine | ||
73 | $ | ||
74 | $ print_request: | ||
75 | $ subroutine | ||
76 | $ | ||
77 | $ openssl ts -query -in 'p1' -text | ||
78 | $ endsubroutine | ||
79 | $ | ||
80 | $ create_time_stamp_request1: subroutine | ||
81 | $ | ||
82 | $ openssl ts -query -data [-]testtsa.com -policy tsa_policy1 - | ||
83 | -cert -out req1.tsq | ||
84 | $ if $severity .ne. 1 then call error | ||
85 | $ endsubroutine | ||
86 | $ | ||
87 | $ create_time_stamp_request2: subroutine | ||
88 | $ | ||
89 | $ openssl ts -query -data [-]testtsa.com -policy tsa_policy2 - | ||
90 | -no_nonce -out req2.tsq | ||
91 | $ if $severity .ne. 1 then call error | ||
92 | $ endsubroutine | ||
93 | $ | ||
94 | $ create_time_stamp_request3: subroutine | ||
95 | $ | ||
96 | $ openssl ts -query -data [-]CAtsa.cnf -no_nonce -out req3.tsq | ||
97 | $ if $severity .ne. 1 then call error | ||
98 | $ endsubroutine | ||
99 | $ | ||
100 | $ print_response: | ||
101 | $ subroutine | ||
102 | $ | ||
103 | $ openssl ts -reply -in 'p1' -text | ||
104 | $ if $severity .ne. 1 then call error | ||
105 | $ endsubroutine | ||
106 | $ | ||
107 | $ create_time_stamp_response: | ||
108 | $ subroutine | ||
109 | $ | ||
110 | $ openssl ts -reply -section 'p3' -queryfile 'p1' -out 'p2' | ||
111 | $ if $severity .ne. 1 then call error | ||
112 | $ endsubroutine | ||
113 | $ | ||
114 | $ time_stamp_response_token_test: | ||
115 | $ subroutine | ||
116 | $ | ||
117 | $ RESPONSE2:='p2'.copy_tsr | ||
118 | $ TOKEN_DER:='p2'.token_der | ||
119 | $ openssl ts -reply -in 'p2' -out 'TOKEN_DER' -token_out | ||
120 | $ if $severity .ne. 1 then call error | ||
121 | $ openssl ts -reply -in 'TOKEN_DER' -token_in -out 'RESPONSE2' | ||
122 | $ if $severity .ne. 1 then call error | ||
123 | $ backup/compare 'RESPONSE2' 'p2' | ||
124 | $ if $severity .ne. 1 then call error | ||
125 | $ openssl ts -reply -in 'p2' -text -token_out | ||
126 | $ if $severity .ne. 1 then call error | ||
127 | $ openssl ts -reply -in 'TOKEN_DER' -token_in -text -token_out | ||
128 | $ if $severity .ne. 1 then call error | ||
129 | $ openssl ts -reply -queryfile 'p1' -text -token_out | ||
130 | $ if $severity .ne. 1 then call error | ||
131 | $ endsubroutine | ||
132 | $ | ||
133 | $ verify_time_stamp_response: | ||
134 | $ subroutine | ||
135 | $ | ||
136 | $ openssl ts -verify -queryfile 'p1' -in 'p2' - | ||
137 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
138 | $ if $severity .ne. 1 then call error | ||
139 | $ openssl ts -verify -data 'p3' -in 'p2' - | ||
140 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
141 | $ if $severity .ne. 1 then call error | ||
142 | $ endsubroutine | ||
143 | $ | ||
144 | $ verify_time_stamp_token: | ||
145 | $ subroutine | ||
146 | $ | ||
147 | $ ! create the token from the response first | ||
148 | $ openssl ts -reply -in 'p2' -out 'p2'.token -token_out | ||
149 | $ if $severity .ne. 1 then call error | ||
150 | $ openssl ts -verify -queryfile 'p1' -in 'p2'.token -token_in - | ||
151 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
152 | $ if $severity .ne. 1 then call error | ||
153 | $ openssl ts -verify -data 'p3' -in 'p2'.token -token_in - | ||
154 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
155 | $ if $severity .ne. 1 then call error | ||
156 | $ endsubroutine | ||
157 | $ | ||
158 | $ verify_time_stamp_response_fail: | ||
159 | $ subroutine | ||
160 | $ | ||
161 | $ openssl ts -verify -queryfile 'p1' -in 'p2' - | ||
162 | "-CAfile" tsaca.pem -untrusted tsa_cert1.pem | ||
163 | $ ! Checks if the verification failed, as it should have. | ||
164 | $ if $severity .eq. 1 then call error | ||
165 | $ write sys$output "Ok" | ||
166 | $ endsubroutine | ||
167 | $ | ||
168 | $ ! Main body ---------------------------------------------------------- | ||
169 | $ | ||
170 | $ write sys$output "Setting up TSA test directory..." | ||
171 | $ call setup_dir | ||
172 | $ | ||
173 | $ write sys$output "Creating CA for TSA tests..." | ||
174 | $ call create_ca | ||
175 | $ | ||
176 | $ write sys$output "Creating tsa_cert1.pem TSA server cert..." | ||
177 | $ call create_tsa_cert 1 "tsa_cert" | ||
178 | $ | ||
179 | $ write sys$output "Creating tsa_cert2.pem non-TSA server cert..." | ||
180 | $ call create_tsa_cert 2 "non_tsa_cert" | ||
181 | $ | ||
182 | $ write sys$output "Creating req1.req time stamp request for file testtsa..." | ||
183 | $ call create_time_stamp_request1 | ||
184 | $ | ||
185 | $ write sys$output "Printing req1.req..." | ||
186 | $ call print_request req1.tsq | ||
187 | $ | ||
188 | $ write sys$output "Generating valid response for req1.req..." | ||
189 | $ call create_time_stamp_response req1.tsq resp1.tsr tsa_config1 | ||
190 | $ | ||
191 | $ write sys$output "Printing response..." | ||
192 | $ call print_response resp1.tsr | ||
193 | $ | ||
194 | $ write sys$output "Verifying valid response..." | ||
195 | $ call verify_time_stamp_response req1.tsq resp1.tsr [-]testtsa.com | ||
196 | $ | ||
197 | $ write sys$output "Verifying valid token..." | ||
198 | $ call verify_time_stamp_token req1.tsq resp1.tsr [-]testtsa.com | ||
199 | $ | ||
200 | $ ! The tests below are commented out, because invalid signer certificates | ||
201 | $ ! can no longer be specified in the config file. | ||
202 | $ | ||
203 | $ ! write sys$output "Generating _invalid_ response for req1.req..." | ||
204 | $ ! call create_time_stamp_response req1.tsq resp1_bad.tsr tsa_config2 | ||
205 | $ | ||
206 | $ ! write sys$output "Printing response..." | ||
207 | $ ! call print_response resp1_bad.tsr | ||
208 | $ | ||
209 | $ ! write sys$output "Verifying invalid response, it should fail..." | ||
210 | $ ! call verify_time_stamp_response_fail req1.tsq resp1_bad.tsr | ||
211 | $ | ||
212 | $ write sys$output "Creating req2.req time stamp request for file testtsa..." | ||
213 | $ call create_time_stamp_request2 | ||
214 | $ | ||
215 | $ write sys$output "Printing req2.req..." | ||
216 | $ call print_request req2.tsq | ||
217 | $ | ||
218 | $ write sys$output "Generating valid response for req2.req..." | ||
219 | $ call create_time_stamp_response req2.tsq resp2.tsr tsa_config1 | ||
220 | $ | ||
221 | $ write sys$output "Checking '-token_in' and '-token_out' options with '-reply'..." | ||
222 | $ call time_stamp_response_token_test req2.tsq resp2.tsr | ||
223 | $ | ||
224 | $ write sys$output "Printing response..." | ||
225 | $ call print_response resp2.tsr | ||
226 | $ | ||
227 | $ write sys$output "Verifying valid response..." | ||
228 | $ call verify_time_stamp_response req2.tsq resp2.tsr [-]testtsa.com | ||
229 | $ | ||
230 | $ write sys$output "Verifying response against wrong request, it should fail..." | ||
231 | $ call verify_time_stamp_response_fail req1.tsq resp2.tsr | ||
232 | $ | ||
233 | $ write sys$output "Verifying response against wrong request, it should fail..." | ||
234 | $ call verify_time_stamp_response_fail req2.tsq resp1.tsr | ||
235 | $ | ||
236 | $ write sys$output "Creating req3.req time stamp request for file CAtsa.cnf..." | ||
237 | $ call create_time_stamp_request3 | ||
238 | $ | ||
239 | $ write sys$output "Printing req3.req..." | ||
240 | $ call print_request req3.tsq | ||
241 | $ | ||
242 | $ write sys$output "Verifying response against wrong request, it should fail..." | ||
243 | $ call verify_time_stamp_response_fail req3.tsq resp1.tsr | ||
244 | $ | ||
245 | $ write sys$output "Cleaning up..." | ||
246 | $ call clean_up_dir | ||
247 | $ | ||
248 | $ exit | ||