diff options
author | djm <> | 2012-10-13 21:23:58 +0000 |
---|---|---|
committer | djm <> | 2012-10-13 21:23:58 +0000 |
commit | 65e72ac55a6405783db7a12d7e35a7561d46005b (patch) | |
tree | 0ee3bca584a6b7fe3e484c12589e960387e6d78e /src/lib/libcrypto | |
parent | 9b3472b7d4065659a32367dab0041d7ef4194093 (diff) | |
parent | eb9e590d2bbc1d57aee9aee0fe94c001fb27e697 (diff) | |
download | openbsd-65e72ac55a6405783db7a12d7e35a7561d46005b.tar.gz openbsd-65e72ac55a6405783db7a12d7e35a7561d46005b.tar.bz2 openbsd-65e72ac55a6405783db7a12d7e35a7561d46005b.zip |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r-- | src/lib/libcrypto/aes/Makefile | 29 | ||||
-rw-r--r-- | src/lib/libcrypto/asn1/Makefile | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/bf/Makefile | 7 | ||||
-rw-r--r-- | src/lib/libcrypto/buffer/Makefile | 11 | ||||
-rw-r--r-- | src/lib/libcrypto/cast/Makefile | 5 | ||||
-rw-r--r-- | src/lib/libcrypto/des/Makefile | 5 | ||||
-rw-r--r-- | src/lib/libcrypto/ec/Makefile | 36 | ||||
-rw-r--r-- | src/lib/libcrypto/idea/Makefile | 5 | ||||
-rw-r--r-- | src/lib/libcrypto/md4/Makefile | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/md5/Makefile | 8 | ||||
-rw-r--r-- | src/lib/libcrypto/rc2/Makefile | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/rc4/Makefile | 18 | ||||
-rw-r--r-- | src/lib/libcrypto/ripemd/Makefile | 7 | ||||
-rw-r--r-- | src/lib/libcrypto/sha/Makefile | 39 |
14 files changed, 149 insertions, 37 deletions
diff --git a/src/lib/libcrypto/aes/Makefile b/src/lib/libcrypto/aes/Makefile index c501a43a8f..45ede0a0b4 100644 --- a/src/lib/libcrypto/aes/Makefile +++ b/src/lib/libcrypto/aes/Makefile | |||
@@ -50,9 +50,21 @@ aes-ia64.s: asm/aes-ia64.S | |||
50 | 50 | ||
51 | aes-586.s: asm/aes-586.pl ../perlasm/x86asm.pl | 51 | aes-586.s: asm/aes-586.pl ../perlasm/x86asm.pl |
52 | $(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ | 52 | $(PERL) asm/aes-586.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ |
53 | vpaes-x86.s: asm/vpaes-x86.pl ../perlasm/x86asm.pl | ||
54 | $(PERL) asm/vpaes-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ | ||
55 | aesni-x86.s: asm/aesni-x86.pl ../perlasm/x86asm.pl | ||
56 | $(PERL) asm/aesni-x86.pl $(PERLASM_SCHEME) $(CFLAGS) $(PROCESSOR) > $@ | ||
53 | 57 | ||
54 | aes-x86_64.s: asm/aes-x86_64.pl | 58 | aes-x86_64.s: asm/aes-x86_64.pl |
55 | $(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@ | 59 | $(PERL) asm/aes-x86_64.pl $(PERLASM_SCHEME) > $@ |
60 | vpaes-x86_64.s: asm/vpaes-x86_64.pl | ||
61 | $(PERL) asm/vpaes-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
62 | bsaes-x86_64.s: asm/bsaes-x86_64.pl | ||
63 | $(PERL) asm/bsaes-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
64 | aesni-x86_64.s: asm/aesni-x86_64.pl | ||
65 | $(PERL) asm/aesni-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
66 | aesni-sha1-x86_64.s: asm/aesni-sha1-x86_64.pl | ||
67 | $(PERL) asm/aesni-sha1-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
56 | 68 | ||
57 | aes-sparcv9.s: asm/aes-sparcv9.pl | 69 | aes-sparcv9.s: asm/aes-sparcv9.pl |
58 | $(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@ | 70 | $(PERL) asm/aes-sparcv9.pl $(CFLAGS) > $@ |
@@ -60,8 +72,15 @@ aes-sparcv9.s: asm/aes-sparcv9.pl | |||
60 | aes-ppc.s: asm/aes-ppc.pl | 72 | aes-ppc.s: asm/aes-ppc.pl |
61 | $(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@ | 73 | $(PERL) asm/aes-ppc.pl $(PERLASM_SCHEME) $@ |
62 | 74 | ||
75 | aes-parisc.s: asm/aes-parisc.pl | ||
76 | $(PERL) asm/aes-parisc.pl $(PERLASM_SCHEME) $@ | ||
77 | |||
78 | aes-mips.S: asm/aes-mips.pl | ||
79 | $(PERL) asm/aes-mips.pl $(PERLASM_SCHEME) $@ | ||
80 | |||
63 | # GNU make "catch all" | 81 | # GNU make "catch all" |
64 | aes-%.s: asm/aes-%.pl; $(PERL) $< $(CFLAGS) > $@ | 82 | aes-%.S: asm/aes-%.pl; $(PERL) $< $(PERLASM_SCHEME) > $@ |
83 | aes-armv4.o: aes-armv4.S | ||
65 | 84 | ||
66 | files: | 85 | files: |
67 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 86 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -117,9 +136,11 @@ aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
117 | aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 136 | aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
118 | aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 137 | aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
119 | aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h | 138 | aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h |
120 | aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 139 | aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/crypto.h |
121 | aes_misc.o: ../../include/openssl/opensslconf.h | 140 | aes_misc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
122 | aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c | 141 | aes_misc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
142 | aes_misc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
143 | aes_misc.o: ../../include/openssl/symhacks.h aes_locl.h aes_misc.c | ||
123 | aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h | 144 | aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/modes.h |
124 | aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c | 145 | aes_ofb.o: ../../include/openssl/opensslconf.h aes_ofb.c |
125 | aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h | 146 | aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h |
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile index 160544eede..f7787005d4 100644 --- a/src/lib/libcrypto/asn1/Makefile +++ b/src/lib/libcrypto/asn1/Makefile | |||
@@ -639,7 +639,7 @@ t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | |||
639 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 639 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
640 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 640 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
641 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 641 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
642 | t_x509.o: ../cryptlib.h t_x509.c | 642 | t_x509.o: ../cryptlib.h asn1_locl.h t_x509.c |
643 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | 643 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h |
644 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 644 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
645 | 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 |
diff --git a/src/lib/libcrypto/bf/Makefile b/src/lib/libcrypto/bf/Makefile index dd2c2c708e..d01bfaa315 100644 --- a/src/lib/libcrypto/bf/Makefile +++ b/src/lib/libcrypto/bf/Makefile | |||
@@ -94,5 +94,8 @@ bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | |||
94 | 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 |
95 | 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 |
96 | 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 |
97 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | 97 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/crypto.h |
98 | bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c | 98 | bf_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
99 | bf_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
100 | bf_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
101 | bf_skey.o: ../../include/openssl/symhacks.h bf_locl.h bf_pi.h bf_skey.c | ||
diff --git a/src/lib/libcrypto/buffer/Makefile b/src/lib/libcrypto/buffer/Makefile index 9f3a88d2d6..2efba47f07 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_err.c | 20 | LIBSRC= buffer.c buf_str.c buf_err.c |
21 | LIBOBJ= buffer.o buf_err.o | 21 | LIBOBJ= buffer.o buf_str.o buf_err.o |
22 | 22 | ||
23 | SRC= $(LIBSRC) | 23 | SRC= $(LIBSRC) |
24 | 24 | ||
@@ -81,6 +81,13 @@ 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 | ||
84 | buffer.o: ../../e_os.h ../../include/openssl/bio.h | 91 | buffer.o: ../../e_os.h ../../include/openssl/bio.h |
85 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 92 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
86 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 93 | 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 0acc38f28d..f3f4859886 100644 --- a/src/lib/libcrypto/cast/Makefile +++ b/src/lib/libcrypto/cast/Makefile | |||
@@ -95,5 +95,8 @@ c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | |||
95 | 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 |
96 | c_ofb64.o: c_ofb64.c cast_lcl.h | 96 | c_ofb64.o: c_ofb64.c cast_lcl.h |
97 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h | 97 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h |
98 | c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 98 | c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
99 | c_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
100 | c_skey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
101 | c_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
99 | c_skey.o: c_skey.c cast_lcl.h cast_s.h | 102 | c_skey.o: c_skey.c cast_lcl.h cast_s.h |
diff --git a/src/lib/libcrypto/des/Makefile b/src/lib/libcrypto/des/Makefile index ae982265fd..a6e1001329 100644 --- a/src/lib/libcrypto/des/Makefile +++ b/src/lib/libcrypto/des/Makefile | |||
@@ -257,8 +257,9 @@ rpc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | |||
257 | rpc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 257 | rpc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
258 | 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 |
259 | 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 |
260 | set_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 260 | set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
261 | set_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 261 | set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
262 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
262 | set_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 263 | set_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
263 | set_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 264 | set_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
264 | set_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 265 | set_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
diff --git a/src/lib/libcrypto/ec/Makefile b/src/lib/libcrypto/ec/Makefile index db380ed16f..f85fc845ca 100644 --- a/src/lib/libcrypto/ec/Makefile +++ b/src/lib/libcrypto/ec/Makefile | |||
@@ -19,11 +19,15 @@ 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_mult.c ec_ameth.c ec_pmeth.c eck_prn.c | 22 | ec2_smpl.c ec2_mult.c ec_ameth.c ec_pmeth.c eck_prn.c \ |
23 | ecp_nistp224.c ecp_nistp256.c ecp_nistp521.c ecp_nistputil.c \ | ||
24 | ecp_oct.c ec2_oct.c ec_oct.c | ||
23 | 25 | ||
24 | LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_nist.o ec_cvt.o ec_mult.o\ | 26 | 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\ | 27 | 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 ec_ameth.o ec_pmeth.o eck_prn.o | 28 | ec2_smpl.o ec2_mult.o ec_ameth.o ec_pmeth.o eck_prn.o \ |
29 | ecp_nistp224.o ecp_nistp256.o ecp_nistp521.o ecp_nistputil.o \ | ||
30 | ecp_oct.o ec2_oct.o ec_oct.o | ||
27 | 31 | ||
28 | SRC= $(LIBSRC) | 32 | SRC= $(LIBSRC) |
29 | 33 | ||
@@ -87,6 +91,14 @@ ec2_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | |||
87 | ec2_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 91 | ec2_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
88 | ec2_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 92 | ec2_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
89 | ec2_mult.o: ../../include/openssl/symhacks.h ec2_mult.c ec_lcl.h | 93 | ec2_mult.o: ../../include/openssl/symhacks.h ec2_mult.c ec_lcl.h |
94 | ec2_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
95 | ec2_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
96 | ec2_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
97 | ec2_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
98 | ec2_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
99 | ec2_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
100 | ec2_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
101 | ec2_oct.o: ../../include/openssl/symhacks.h ec2_oct.c ec_lcl.h | ||
90 | ec2_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 102 | ec2_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
91 | ec2_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 103 | ec2_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
92 | ec2_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 104 | ec2_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
@@ -174,6 +186,14 @@ ec_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | |||
174 | ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 186 | ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
175 | ec_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 187 | ec_mult.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
176 | ec_mult.o: ../../include/openssl/symhacks.h ec_lcl.h ec_mult.c | 188 | ec_mult.o: ../../include/openssl/symhacks.h ec_lcl.h ec_mult.c |
189 | ec_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
190 | ec_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
191 | ec_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
192 | ec_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
193 | ec_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
194 | ec_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
195 | ec_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
196 | ec_oct.o: ../../include/openssl/symhacks.h ec_lcl.h ec_oct.c | ||
177 | ec_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h | 197 | ec_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h |
178 | ec_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 198 | ec_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
179 | ec_pmeth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 199 | ec_pmeth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -221,6 +241,18 @@ ecp_nist.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | |||
221 | ecp_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 241 | ecp_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
222 | ecp_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 242 | ecp_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
223 | ecp_nist.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_nist.c | 243 | ecp_nist.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_nist.c |
244 | ecp_nistp224.o: ../../include/openssl/opensslconf.h ecp_nistp224.c | ||
245 | ecp_nistp256.o: ../../include/openssl/opensslconf.h ecp_nistp256.c | ||
246 | ecp_nistp521.o: ../../include/openssl/opensslconf.h ecp_nistp521.c | ||
247 | ecp_nistputil.o: ../../include/openssl/opensslconf.h ecp_nistputil.c | ||
248 | ecp_oct.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
249 | ecp_oct.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
250 | ecp_oct.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
251 | ecp_oct.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
252 | ecp_oct.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
253 | ecp_oct.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
254 | ecp_oct.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
255 | ecp_oct.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_oct.c | ||
224 | ecp_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 256 | ecp_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
225 | ecp_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 257 | ecp_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
226 | ecp_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 258 | ecp_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
diff --git a/src/lib/libcrypto/idea/Makefile b/src/lib/libcrypto/idea/Makefile index b2e7add666..8af0acdad9 100644 --- a/src/lib/libcrypto/idea/Makefile +++ b/src/lib/libcrypto/idea/Makefile | |||
@@ -82,5 +82,8 @@ 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/idea.h ../../include/openssl/opensslconf.h |
86 | i_skey.o: i_skey.c idea_lcl.h | 87 | i_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
88 | i_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
89 | i_skey.o: ../../include/openssl/symhacks.h i_skey.c idea_lcl.h | ||
diff --git a/src/lib/libcrypto/md4/Makefile b/src/lib/libcrypto/md4/Makefile index c94a1398ed..e6f1e4478c 100644 --- a/src/lib/libcrypto/md4/Makefile +++ b/src/lib/libcrypto/md4/Makefile | |||
@@ -76,9 +76,11 @@ 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 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h | 79 | md4_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
80 | md4_dgst.o: ../../include/openssl/opensslconf.h | 80 | md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h |
81 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c | 81 | md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
82 | md4_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
83 | md4_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md4_dgst.c | ||
82 | md4_dgst.o: md4_locl.h | 84 | md4_dgst.o: md4_locl.h |
83 | md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 85 | md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
84 | md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 86 | 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 9858d53d31..b9e2ce9a38 100644 --- a/src/lib/libcrypto/md5/Makefile +++ b/src/lib/libcrypto/md5/Makefile | |||
@@ -89,9 +89,11 @@ clean: | |||
89 | 89 | ||
90 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
91 | 91 | ||
92 | md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md5.h | 92 | md5_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
93 | md5_dgst.o: ../../include/openssl/opensslconf.h | 93 | md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h |
94 | md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c | 94 | md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
95 | md5_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
96 | md5_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h md5_dgst.c | ||
95 | md5_dgst.o: md5_locl.h | 97 | md5_dgst.o: md5_locl.h |
96 | md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 98 | md5_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
97 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | 99 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h |
diff --git a/src/lib/libcrypto/rc2/Makefile b/src/lib/libcrypto/rc2/Makefile index 73eac347e7..8a9d49ab5e 100644 --- a/src/lib/libcrypto/rc2/Makefile +++ b/src/lib/libcrypto/rc2/Makefile | |||
@@ -78,7 +78,11 @@ 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/opensslconf.h ../../include/openssl/rc2.h | 81 | rc2_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
82 | rc2_skey.o: ../../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 | ||
82 | rc2_skey.o: rc2_locl.h rc2_skey.c | 86 | rc2_skey.o: rc2_locl.h rc2_skey.c |
83 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | 87 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h |
84 | rc2cfb64.o: rc2_locl.h rc2cfb64.c | 88 | rc2cfb64.o: rc2_locl.h rc2cfb64.c |
diff --git a/src/lib/libcrypto/rc4/Makefile b/src/lib/libcrypto/rc4/Makefile index 264451a213..1614d47961 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 | 24 | LIBSRC=rc4_skey.c rc4_enc.c rc4_utl.c |
25 | LIBOBJ=$(RC4_ENC) | 25 | LIBOBJ=$(RC4_ENC) rc4_utl.o |
26 | 26 | ||
27 | SRC= $(LIBSRC) | 27 | SRC= $(LIBSRC) |
28 | 28 | ||
@@ -46,12 +46,14 @@ rc4-586.s: asm/rc4-586.pl ../perlasm/x86asm.pl | |||
46 | 46 | ||
47 | rc4-x86_64.s: asm/rc4-x86_64.pl | 47 | rc4-x86_64.s: asm/rc4-x86_64.pl |
48 | $(PERL) asm/rc4-x86_64.pl $(PERLASM_SCHEME) > $@ | 48 | $(PERL) asm/rc4-x86_64.pl $(PERLASM_SCHEME) > $@ |
49 | rc4-md5-x86_64.s: asm/rc4-md5-x86_64.pl | ||
50 | $(PERL) asm/rc4-md5-x86_64.pl $(PERLASM_SCHEME) > $@ | ||
49 | 51 | ||
50 | rc4-ia64.S: asm/rc4-ia64.pl | 52 | rc4-ia64.S: asm/rc4-ia64.pl |
51 | $(PERL) asm/rc4-ia64.pl $(CFLAGS) > $@ | 53 | $(PERL) asm/rc4-ia64.pl $(CFLAGS) > $@ |
52 | 54 | ||
53 | rc4-s390x.s: asm/rc4-s390x.pl | 55 | rc4-parisc.s: asm/rc4-parisc.pl |
54 | $(PERL) asm/rc4-s390x.pl > $@ | 56 | $(PERL) asm/rc4-parisc.pl $(PERLASM_SCHEME) $@ |
55 | 57 | ||
56 | rc4-ia64.s: rc4-ia64.S | 58 | rc4-ia64.s: rc4-ia64.S |
57 | @case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \ | 59 | @case `awk '/^#define RC4_INT/{print$$NF}' $(TOP)/include/openssl/opensslconf.h` in \ |
@@ -60,6 +62,9 @@ rc4-ia64.s: rc4-ia64.S | |||
60 | *) exit 1 ;; \ | 62 | *) exit 1 ;; \ |
61 | esac | 63 | esac |
62 | 64 | ||
65 | # GNU make "catch all" | ||
66 | rc4-%.s: asm/rc4-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@ | ||
67 | |||
63 | files: | 68 | files: |
64 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 69 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
65 | 70 | ||
@@ -113,3 +118,8 @@ rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
113 | rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | 118 | rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h |
114 | rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 119 | rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
115 | rc4_skey.o: ../cryptlib.h rc4_locl.h rc4_skey.c | 120 | rc4_skey.o: ../cryptlib.h rc4_locl.h rc4_skey.c |
121 | rc4_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
122 | rc4_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
123 | rc4_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h | ||
124 | rc4_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
125 | rc4_utl.o: ../../include/openssl/symhacks.h rc4_utl.c | ||
diff --git a/src/lib/libcrypto/ripemd/Makefile b/src/lib/libcrypto/ripemd/Makefile index d5b1067dbe..25140b2a73 100644 --- a/src/lib/libcrypto/ripemd/Makefile +++ b/src/lib/libcrypto/ripemd/Makefile | |||
@@ -82,8 +82,11 @@ clean: | |||
82 | 82 | ||
83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
84 | 84 | ||
85 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 85 | rmd_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
86 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h | 86 | rmd_dgst.o: ../../include/openssl/opensslconf.h |
87 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
88 | rmd_dgst.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h | ||
89 | rmd_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
87 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h | 90 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h |
88 | rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 91 | rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
89 | rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 92 | 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 e6eccb05f9..6d191d3936 100644 --- a/src/lib/libcrypto/sha/Makefile +++ b/src/lib/libcrypto/sha/Makefile | |||
@@ -56,8 +56,11 @@ sha256-ia64.s: asm/sha512-ia64.pl | |||
56 | sha512-ia64.s: asm/sha512-ia64.pl | 56 | sha512-ia64.s: asm/sha512-ia64.pl |
57 | (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS)) | 57 | (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS)) |
58 | 58 | ||
59 | sha256-armv4.s: asm/sha256-armv4.pl | 59 | sha256-armv4.S: asm/sha256-armv4.pl |
60 | $(PERL) $< $@ | 60 | $(PERL) $< $(PERLASM_SCHEME) $@ |
61 | |||
62 | sha1-alpha.s: asm/sha1-alpha.pl | ||
63 | $(PERL) $< | $(CC) -E - | tee $@ > /dev/null | ||
61 | 64 | ||
62 | # Solaris make has to be explicitly told | 65 | # Solaris make has to be explicitly told |
63 | sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $(PERLASM_SCHEME) > $@ | 66 | sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $(PERLASM_SCHEME) > $@ |
@@ -71,10 +74,22 @@ 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) $@ | 74 | 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) $@ | 75 | sha512-ppc.s: asm/sha512-ppc.pl; $(PERL) asm/sha512-ppc.pl $(PERLASM_SCHEME) $@ |
73 | 76 | ||
77 | sha1-parisc.s: asm/sha1-parisc.pl; $(PERL) asm/sha1-parisc.pl $(PERLASM_SCHEME) $@ | ||
78 | sha256-parisc.s:asm/sha512-parisc.pl; $(PERL) asm/sha512-parisc.pl $(PERLASM_SCHEME) $@ | ||
79 | sha512-parisc.s:asm/sha512-parisc.pl; $(PERL) asm/sha512-parisc.pl $(PERLASM_SCHEME) $@ | ||
80 | |||
81 | sha1-mips.S: asm/sha1-mips.pl; $(PERL) asm/sha1-mips.pl $(PERLASM_SCHEME) $@ | ||
82 | sha256-mips.S: asm/sha512-mips.pl; $(PERL) asm/sha512-mips.pl $(PERLASM_SCHEME) $@ | ||
83 | sha512-mips.S: asm/sha512-mips.pl; $(PERL) asm/sha512-mips.pl $(PERLASM_SCHEME) $@ | ||
84 | |||
74 | # GNU make "catch all" | 85 | # GNU make "catch all" |
75 | sha1-%.s: asm/sha1-%.pl; $(PERL) $< $@ | 86 | sha1-%.S: asm/sha1-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@ |
76 | sha256-%.s: asm/sha512-%.pl; $(PERL) $< $@ | 87 | sha256-%.S: asm/sha512-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@ |
77 | sha512-%.s: asm/sha512-%.pl; $(PERL) $< $@ | 88 | sha512-%.S: asm/sha512-%.pl; $(PERL) $< $(PERLASM_SCHEME) $@ |
89 | |||
90 | sha1-armv4-large.o: sha1-armv4-large.S | ||
91 | sha256-armv4.o: sha256-armv4.S | ||
92 | sha512-armv4.o: sha512-armv4.S | ||
78 | 93 | ||
79 | files: | 94 | files: |
80 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 95 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -119,8 +134,11 @@ sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
119 | sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 134 | sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
120 | sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 135 | sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
121 | sha1_one.o: sha1_one.c | 136 | sha1_one.o: sha1_one.c |
122 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 137 | sha1dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
123 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | 138 | sha1dgst.o: ../../include/openssl/opensslconf.h |
139 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
140 | sha1dgst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
141 | sha1dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
124 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h | 142 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h |
125 | sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 143 | sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
126 | sha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 144 | sha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
@@ -135,8 +153,11 @@ sha512.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
135 | sha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 153 | sha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
136 | sha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 154 | sha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
137 | sha512.o: ../cryptlib.h sha512.c | 155 | sha512.o: ../cryptlib.h sha512.c |
138 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 156 | sha_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
139 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | 157 | sha_dgst.o: ../../include/openssl/opensslconf.h |
158 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
159 | sha_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
160 | sha_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
140 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h | 161 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h |
141 | sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 162 | sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
142 | sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 163 | sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |