diff options
Diffstat (limited to 'src/lib/libcrypto')
55 files changed, 5673 insertions, 4963 deletions
diff --git a/src/lib/libcrypto/aes/Makefile b/src/lib/libcrypto/aes/Makefile index a37c6f66a2..22c7203dbb 100644 --- a/src/lib/libcrypto/aes/Makefile +++ b/src/lib/libcrypto/aes/Makefile | |||
@@ -8,16 +8,14 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP= /usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
19 | # CFLAGS= -mpentiumpro $(INCLUDES) $(CFLAG) -O3 -fexpensive-optimizations -funroll-loops -fforce-addr | 14 | AES_ASM_OBJ=aes_core.o aes_cbc.o |
15 | |||
20 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
17 | ASFLAGS= $(INCLUDES) $(ASFLAG) | ||
18 | AFLAGS= $(ASFLAGS) | ||
21 | 19 | ||
22 | GENERAL=Makefile | 20 | GENERAL=Makefile |
23 | #TEST=aestest.c | 21 | #TEST=aestest.c |
@@ -25,8 +23,10 @@ TEST= | |||
25 | APPS= | 23 | APPS= |
26 | 24 | ||
27 | LIB=$(TOP)/libcrypto.a | 25 | LIB=$(TOP)/libcrypto.a |
28 | LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c aes_ctr.c | 26 | LIBSRC=aes_core.c aes_misc.c aes_ecb.c aes_cbc.c aes_cfb.c aes_ofb.c \ |
29 | LIBOBJ=aes_core.o aes_misc.o aes_ecb.o aes_cbc.o aes_cfb.o aes_ofb.o aes_ctr.o | 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 \ | ||
29 | $(AES_ASM_OBJ) | ||
30 | 30 | ||
31 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
32 | 32 | ||
@@ -47,6 +47,19 @@ lib: $(LIBOBJ) | |||
47 | 47 | ||
48 | $(LIBOBJ): $(LIBSRC) | 48 | $(LIBOBJ): $(LIBSRC) |
49 | 49 | ||
50 | aes-ia64.s: asm/aes-ia64.S | ||
51 | $(CC) $(CFLAGS) -E asm/aes-ia64.S > $@ | ||
52 | |||
53 | ax86-elf.s: asm/aes-586.pl ../perlasm/x86asm.pl | ||
54 | (cd asm; $(PERL) aes-586.pl elf $(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 | |||
60 | aes-x86_64.s: asm/aes-x86_64.pl | ||
61 | $(PERL) asm/aes-x86_64.pl $@ | ||
62 | |||
50 | files: | 63 | files: |
51 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 64 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
52 | 65 | ||
@@ -55,9 +68,8 @@ links: | |||
55 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 68 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 69 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
57 | 70 | ||
58 | install: installs | 71 | install: |
59 | 72 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | |
60 | installs: | ||
61 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 73 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
62 | do \ | 74 | do \ |
63 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 75 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -73,6 +85,7 @@ lint: | |||
73 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 85 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
74 | 86 | ||
75 | depend: | 87 | depend: |
88 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
76 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 89 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
77 | 90 | ||
78 | dclean: | 91 | dclean: |
@@ -80,7 +93,7 @@ dclean: | |||
80 | mv -f Makefile.new $(MAKEFILE) | 93 | mv -f Makefile.new $(MAKEFILE) |
81 | 94 | ||
82 | clean: | 95 | clean: |
83 | rm -f *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 96 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
84 | 97 | ||
85 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 98 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
86 | 99 | ||
@@ -90,14 +103,28 @@ aes_cfb.o: ../../e_os.h ../../include/openssl/aes.h | |||
90 | aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 103 | aes_cfb.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
91 | aes_cfb.o: aes_cfb.c aes_locl.h | 104 | aes_cfb.o: aes_cfb.c aes_locl.h |
92 | aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 105 | aes_core.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
93 | aes_core.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | 106 | aes_core.o: ../../include/openssl/opensslconf.h aes_core.c aes_locl.h |
94 | aes_core.o: aes_core.c aes_locl.h | ||
95 | aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 107 | aes_ctr.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
96 | aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h | 108 | aes_ctr.o: ../../include/openssl/opensslconf.h aes_ctr.c aes_locl.h |
97 | aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 109 | aes_ecb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
98 | aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h | 110 | aes_ecb.o: ../../include/openssl/opensslconf.h aes_ecb.c aes_locl.h |
111 | aes_ige.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/bio.h | ||
112 | aes_ige.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
113 | aes_ige.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
114 | aes_ige.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
115 | aes_ige.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
116 | aes_ige.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
117 | aes_ige.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_ige.c aes_locl.h | ||
99 | aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 118 | aes_misc.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
100 | aes_misc.o: ../../include/openssl/opensslconf.h | 119 | aes_misc.o: ../../include/openssl/opensslconf.h |
101 | aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c | 120 | aes_misc.o: ../../include/openssl/opensslv.h aes_locl.h aes_misc.c |
102 | aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h | 121 | aes_ofb.o: ../../include/openssl/aes.h ../../include/openssl/e_os2.h |
103 | aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c | 122 | aes_ofb.o: ../../include/openssl/opensslconf.h aes_locl.h aes_ofb.c |
123 | aes_wrap.o: ../../e_os.h ../../include/openssl/aes.h | ||
124 | aes_wrap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
125 | aes_wrap.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
126 | aes_wrap.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
127 | aes_wrap.o: ../../include/openssl/opensslconf.h | ||
128 | aes_wrap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
129 | aes_wrap.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
130 | aes_wrap.o: ../../include/openssl/symhacks.h ../cryptlib.h aes_wrap.c | ||
diff --git a/src/lib/libcrypto/asn1/Makefile b/src/lib/libcrypto/asn1/Makefile index d1c2d8f490..63066899d0 100644 --- a/src/lib/libcrypto/asn1/Makefile +++ b/src/lib/libcrypto/asn1/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -31,8 +26,8 @@ LIBSRC= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c \ | |||
31 | 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 \ |
32 | 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 \ |
33 | f_int.c f_string.c n_pkey.c \ | 28 | f_int.c f_string.c n_pkey.c \ |
34 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c \ | 29 | f_enum.c a_hdr.c x_pkey.c a_bool.c x_exten.c asn_mime.c \ |
35 | asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ | 30 | asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_meth.c a_bytes.c a_strnid.c \ |
36 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | 31 | evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c |
37 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | 32 | LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ |
38 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ | 33 | a_print.o a_type.o a_set.o a_dup.o a_d2i_fp.o a_i2d_fp.o \ |
@@ -43,8 +38,8 @@ LIBOBJ= a_object.o a_bitstr.o a_utctm.o a_gentm.o a_time.o a_int.o a_octet.o \ | |||
43 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ | 38 | t_req.o t_x509.o t_x509a.o t_crl.o t_pkey.o t_spki.o t_bitst.o \ |
44 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ | 39 | tasn_new.o tasn_fre.o tasn_enc.o tasn_dec.o tasn_utl.o tasn_typ.o \ |
45 | f_int.o f_string.o n_pkey.o \ | 40 | f_int.o f_string.o n_pkey.o \ |
46 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o \ | 41 | f_enum.o a_hdr.o x_pkey.o a_bool.o x_exten.o asn_mime.o \ |
47 | asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ | 42 | asn1_gen.o asn1_par.o asn1_lib.o asn1_err.o a_meth.o a_bytes.o a_strnid.o \ |
48 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o | 43 | evp_asn1.o asn_pack.o p5_pbe.o p5_pbev2.o p8_pkey.o asn_moid.o |
49 | 44 | ||
50 | SRC= $(LIBSRC) | 45 | SRC= $(LIBSRC) |
@@ -81,6 +76,7 @@ links: | |||
81 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 76 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
82 | 77 | ||
83 | install: | 78 | install: |
79 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
84 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 80 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
85 | do \ | 81 | do \ |
86 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 82 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -96,6 +92,7 @@ lint: | |||
96 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
97 | 93 | ||
98 | depend: | 94 | depend: |
95 | @[ -n "$(MAKEDEPEND)" ] # should be set by top Makefile... | ||
99 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 96 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
100 | 97 | ||
101 | dclean: | 98 | dclean: |
@@ -109,69 +106,57 @@ clean: | |||
109 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 106 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
110 | 107 | ||
111 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h | 108 | a_bitstr.o: ../../e_os.h ../../include/openssl/asn1.h |
112 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 109 | a_bitstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
113 | a_bitstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 110 | a_bitstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
114 | a_bitstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 111 | a_bitstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
115 | a_bitstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 112 | a_bitstr.o: ../../include/openssl/opensslconf.h |
116 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 113 | a_bitstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
117 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 114 | a_bitstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
118 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c | 115 | a_bitstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bitstr.c |
119 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h | 116 | a_bool.o: ../../e_os.h ../../include/openssl/asn1.h |
120 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 117 | a_bool.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
121 | a_bool.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 118 | a_bool.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
122 | a_bool.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 119 | a_bool.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
123 | a_bool.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 120 | a_bool.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
124 | a_bool.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 121 | a_bool.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
125 | a_bool.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 122 | a_bool.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
126 | a_bool.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 123 | a_bool.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bool.c |
127 | a_bool.o: ../cryptlib.h a_bool.c | ||
128 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h | 124 | a_bytes.o: ../../e_os.h ../../include/openssl/asn1.h |
129 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 125 | a_bytes.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
130 | a_bytes.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 126 | a_bytes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
131 | a_bytes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 127 | a_bytes.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
132 | a_bytes.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 128 | a_bytes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
133 | a_bytes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 129 | a_bytes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
134 | a_bytes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 130 | a_bytes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
135 | a_bytes.o: ../../include/openssl/symhacks.h ../cryptlib.h a_bytes.c | 131 | a_bytes.o: ../cryptlib.h a_bytes.c |
136 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h | 132 | a_d2i_fp.o: ../../e_os.h ../../include/openssl/asn1.h |
137 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 133 | a_d2i_fp.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
138 | a_d2i_fp.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 134 | a_d2i_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
139 | a_d2i_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 135 | a_d2i_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
140 | a_d2i_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 136 | a_d2i_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
141 | a_d2i_fp.o: ../../include/openssl/opensslconf.h | ||
142 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 137 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
143 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 138 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
144 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | 139 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c |
145 | a_digest.o: ../../e_os.h ../../include/openssl/aes.h | 140 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h |
146 | a_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 141 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
147 | a_digest.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 142 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
148 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 143 | a_digest.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
149 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 144 | a_digest.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
150 | a_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 145 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
151 | a_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
152 | a_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
153 | a_digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
154 | a_digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
155 | a_digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
156 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 146 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
157 | a_digest.o: ../../include/openssl/opensslconf.h | 147 | a_digest.o: ../../include/openssl/opensslconf.h |
158 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
159 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 149 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
160 | a_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 150 | a_digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
161 | a_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 151 | a_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
162 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 152 | a_digest.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_digest.c |
163 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
164 | a_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
165 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
166 | a_digest.o: ../cryptlib.h a_digest.c | ||
167 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 153 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
168 | a_dup.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 154 | a_dup.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
169 | a_dup.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 155 | a_dup.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
170 | a_dup.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 156 | a_dup.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
171 | a_dup.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 157 | a_dup.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
172 | a_dup.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 158 | a_dup.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
173 | a_dup.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 159 | a_dup.o: ../../include/openssl/symhacks.h ../cryptlib.h a_dup.c |
174 | a_dup.o: ../cryptlib.h a_dup.c | ||
175 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 160 | a_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
176 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 161 | a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
177 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 162 | a_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
@@ -181,27 +166,26 @@ a_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | |||
181 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 166 | a_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
182 | a_enum.o: ../cryptlib.h a_enum.c | 167 | a_enum.o: ../cryptlib.h a_enum.c |
183 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h | 168 | a_gentm.o: ../../e_os.h ../../include/openssl/asn1.h |
184 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 169 | a_gentm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
185 | a_gentm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 170 | a_gentm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
186 | a_gentm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 171 | a_gentm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
187 | a_gentm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 172 | a_gentm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
188 | a_gentm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 173 | a_gentm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
189 | a_gentm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 174 | a_gentm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
190 | a_gentm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_gentm.c | 175 | a_gentm.o: ../cryptlib.h ../o_time.h a_gentm.c |
191 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h | 176 | a_hdr.o: ../../e_os.h ../../include/openssl/asn1.h |
192 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 177 | a_hdr.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
193 | a_hdr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 178 | a_hdr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
194 | a_hdr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 179 | a_hdr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
195 | a_hdr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 180 | a_hdr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
196 | a_hdr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 181 | a_hdr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
197 | a_hdr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 182 | a_hdr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
198 | a_hdr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 183 | a_hdr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_hdr.c |
199 | a_hdr.o: ../cryptlib.h a_hdr.c | ||
200 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h | 184 | a_i2d_fp.o: ../../e_os.h ../../include/openssl/asn1.h |
201 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 185 | a_i2d_fp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
202 | a_i2d_fp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 186 | a_i2d_fp.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
203 | a_i2d_fp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 187 | a_i2d_fp.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
204 | a_i2d_fp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 188 | a_i2d_fp.o: ../../include/openssl/opensslconf.h |
205 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 189 | a_i2d_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
206 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 190 | a_i2d_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
207 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c | 191 | a_i2d_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_i2d_fp.c |
@@ -214,21 +198,20 @@ a_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | |||
214 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 198 | a_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
215 | a_int.o: ../cryptlib.h a_int.c | 199 | a_int.o: ../cryptlib.h a_int.c |
216 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h | 200 | a_mbstr.o: ../../e_os.h ../../include/openssl/asn1.h |
217 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 201 | a_mbstr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
218 | a_mbstr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 202 | a_mbstr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
219 | a_mbstr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 203 | a_mbstr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
220 | a_mbstr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 204 | a_mbstr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
221 | a_mbstr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 205 | a_mbstr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
222 | a_mbstr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 206 | a_mbstr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
223 | a_mbstr.o: ../../include/openssl/symhacks.h ../cryptlib.h a_mbstr.c | 207 | a_mbstr.o: ../cryptlib.h a_mbstr.c |
224 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 208 | a_meth.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
225 | a_meth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 209 | a_meth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
226 | a_meth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 210 | a_meth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
227 | a_meth.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 211 | a_meth.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
228 | a_meth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 212 | a_meth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
229 | a_meth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 213 | a_meth.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
230 | a_meth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 214 | a_meth.o: ../../include/openssl/symhacks.h ../cryptlib.h a_meth.c |
231 | a_meth.o: ../cryptlib.h a_meth.c | ||
232 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h | 215 | a_object.o: ../../e_os.h ../../include/openssl/asn1.h |
233 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 216 | a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
234 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 217 | a_object.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -239,642 +222,492 @@ a_object.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
239 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 222 | a_object.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
240 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c | 223 | a_object.o: ../../include/openssl/symhacks.h ../cryptlib.h a_object.c |
241 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h | 224 | a_octet.o: ../../e_os.h ../../include/openssl/asn1.h |
242 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 225 | a_octet.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
243 | a_octet.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 226 | a_octet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
244 | a_octet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 227 | a_octet.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
245 | a_octet.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 228 | a_octet.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
246 | a_octet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 229 | a_octet.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
247 | a_octet.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 230 | a_octet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
248 | a_octet.o: ../../include/openssl/symhacks.h ../cryptlib.h a_octet.c | 231 | a_octet.o: ../cryptlib.h a_octet.c |
249 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h | 232 | a_print.o: ../../e_os.h ../../include/openssl/asn1.h |
250 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 233 | a_print.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
251 | a_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 234 | a_print.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
252 | a_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 235 | a_print.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
253 | a_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 236 | a_print.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
254 | a_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 237 | a_print.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
255 | a_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 238 | a_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
256 | a_print.o: ../../include/openssl/symhacks.h ../cryptlib.h a_print.c | 239 | a_print.o: ../cryptlib.h a_print.c |
257 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h | 240 | a_set.o: ../../e_os.h ../../include/openssl/asn1.h |
258 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 241 | a_set.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
259 | a_set.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 242 | a_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
260 | a_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 243 | a_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
261 | a_set.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 244 | a_set.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
262 | a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 245 | a_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
263 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 246 | a_set.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
264 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 247 | a_set.o: ../../include/openssl/symhacks.h ../cryptlib.h a_set.c |
265 | a_set.o: ../cryptlib.h a_set.c | 248 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
266 | a_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
267 | a_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
268 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 249 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
269 | a_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 250 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
270 | a_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 251 | a_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
271 | a_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 252 | a_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
272 | a_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 253 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
273 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 254 | a_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
274 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 255 | a_sign.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
275 | a_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 256 | a_sign.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
276 | a_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
277 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
278 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
279 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
280 | a_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
281 | a_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
282 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 257 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
283 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 258 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
284 | a_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
285 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 259 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
286 | a_sign.o: ../cryptlib.h a_sign.c | 260 | a_sign.o: ../cryptlib.h a_sign.c |
287 | a_strex.o: ../../e_os.h ../../include/openssl/aes.h | 261 | a_strex.o: ../../e_os.h ../../include/openssl/asn1.h |
288 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 262 | a_strex.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
289 | a_strex.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 263 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
290 | a_strex.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 264 | a_strex.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
291 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 265 | a_strex.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
292 | a_strex.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 266 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
293 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
294 | a_strex.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
295 | a_strex.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
296 | a_strex.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
297 | a_strex.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
298 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 267 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
299 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 268 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
300 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 269 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
301 | a_strex.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 270 | a_strex.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
302 | a_strex.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 271 | a_strex.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
303 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 272 | a_strex.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
304 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 273 | a_strex.o: ../cryptlib.h a_strex.c charmap.h |
305 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
306 | a_strex.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
307 | a_strex.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_strex.c charmap.h | ||
308 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | 274 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h |
309 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 275 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
310 | a_strnid.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 276 | a_strnid.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
311 | a_strnid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 277 | a_strnid.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
312 | a_strnid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 278 | a_strnid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
313 | a_strnid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 279 | a_strnid.o: ../../include/openssl/opensslconf.h |
314 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 280 | a_strnid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
315 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 281 | a_strnid.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
316 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c | 282 | a_strnid.o: ../../include/openssl/symhacks.h ../cryptlib.h a_strnid.c |
317 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h | 283 | a_time.o: ../../e_os.h ../../include/openssl/asn1.h |
318 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 284 | a_time.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
319 | a_time.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 285 | a_time.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
320 | a_time.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 286 | a_time.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
321 | a_time.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 287 | a_time.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
322 | a_time.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 288 | a_time.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
323 | a_time.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 289 | a_time.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
324 | a_time.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 290 | a_time.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_time.c |
325 | a_time.o: ../cryptlib.h ../o_time.h a_time.c | ||
326 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h | 291 | a_type.o: ../../e_os.h ../../include/openssl/asn1.h |
327 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 292 | a_type.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
328 | a_type.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 293 | a_type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
329 | a_type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 294 | a_type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
330 | a_type.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 295 | a_type.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
331 | a_type.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 296 | a_type.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
332 | a_type.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 297 | a_type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
333 | a_type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 298 | a_type.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
334 | a_type.o: ../cryptlib.h a_type.c | 299 | a_type.o: ../../include/openssl/symhacks.h ../cryptlib.h a_type.c |
335 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h | 300 | a_utctm.o: ../../e_os.h ../../include/openssl/asn1.h |
336 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 301 | a_utctm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
337 | a_utctm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 302 | a_utctm.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
338 | a_utctm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 303 | a_utctm.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
339 | a_utctm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 304 | a_utctm.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
340 | a_utctm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 305 | a_utctm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
341 | a_utctm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 306 | a_utctm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
342 | a_utctm.o: ../../include/openssl/symhacks.h ../cryptlib.h ../o_time.h a_utctm.c | 307 | a_utctm.o: ../cryptlib.h ../o_time.h a_utctm.c |
343 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 308 | a_utf8.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
344 | a_utf8.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 309 | a_utf8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
345 | a_utf8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 310 | a_utf8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
346 | a_utf8.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 311 | a_utf8.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
347 | a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 312 | a_utf8.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
348 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 313 | a_utf8.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
349 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 314 | a_utf8.o: ../../include/openssl/symhacks.h ../cryptlib.h a_utf8.c |
350 | a_utf8.o: ../cryptlib.h a_utf8.c | 315 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h |
351 | a_verify.o: ../../e_os.h ../../include/openssl/aes.h | 316 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
352 | a_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 317 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
353 | a_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 318 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
354 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 319 | a_verify.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
355 | a_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
356 | a_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
357 | a_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
358 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 320 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
359 | a_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 321 | a_verify.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
360 | a_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 322 | a_verify.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
361 | a_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
362 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
363 | a_verify.o: ../../include/openssl/opensslconf.h | ||
364 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 323 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
365 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 324 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
366 | a_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 325 | a_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
367 | a_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 326 | a_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
368 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 327 | a_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h a_verify.c |
369 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
370 | a_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
371 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
372 | a_verify.o: ../cryptlib.h a_verify.c | ||
373 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 328 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
374 | asn1_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 329 | asn1_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
375 | asn1_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 330 | asn1_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
376 | asn1_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 331 | asn1_err.o: ../../include/openssl/opensslconf.h |
377 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 332 | asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
378 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 333 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
379 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | 334 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c |
335 | asn1_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
336 | asn1_gen.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
337 | asn1_gen.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
338 | asn1_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
339 | asn1_gen.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
340 | asn1_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
341 | asn1_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
342 | asn1_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
343 | asn1_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
344 | asn1_gen.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
345 | asn1_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
346 | asn1_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
347 | asn1_gen.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
348 | asn1_gen.o: ../cryptlib.h asn1_gen.c | ||
380 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 349 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
381 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 350 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
382 | asn1_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 351 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
383 | asn1_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 352 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
384 | asn1_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 353 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
385 | asn1_lib.o: ../../include/openssl/opensslconf.h | ||
386 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 354 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
387 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 355 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
388 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | 356 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c |
389 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h | 357 | asn1_par.o: ../../e_os.h ../../include/openssl/asn1.h |
390 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 358 | asn1_par.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
391 | asn1_par.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 359 | asn1_par.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
392 | asn1_par.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 360 | asn1_par.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
393 | asn1_par.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 361 | asn1_par.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
394 | asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 362 | asn1_par.o: ../../include/openssl/opensslconf.h |
395 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 363 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
396 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 364 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
397 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | 365 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c |
398 | asn_moid.o: ../../e_os.h ../../include/openssl/aes.h | 366 | asn_mime.o: ../../e_os.h ../../include/openssl/asn1.h |
399 | asn_moid.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 367 | asn_mime.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
400 | asn_moid.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 368 | asn_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
401 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 369 | asn_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
370 | asn_mime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
371 | asn_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
372 | asn_mime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
373 | asn_mime.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
374 | asn_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
375 | asn_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
376 | asn_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
377 | asn_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
378 | asn_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
379 | asn_mime.o: ../cryptlib.h asn_mime.c | ||
380 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | ||
381 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
402 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 382 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
403 | asn_moid.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
404 | asn_moid.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
405 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 383 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
406 | asn_moid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 384 | asn_moid.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
407 | asn_moid.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 385 | asn_moid.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
408 | asn_moid.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 386 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
409 | asn_moid.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
410 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 387 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
411 | asn_moid.o: ../../include/openssl/opensslconf.h | 388 | asn_moid.o: ../../include/openssl/opensslconf.h |
412 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 389 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
413 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 390 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
414 | asn_moid.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 391 | asn_moid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
415 | asn_moid.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 392 | asn_moid.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
416 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 393 | asn_moid.o: ../../include/openssl/x509_vfy.h ../cryptlib.h asn_moid.c |
417 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
418 | asn_moid.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
419 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
420 | asn_moid.o: ../cryptlib.h asn_moid.c | ||
421 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | 394 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h |
422 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 395 | asn_pack.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
423 | asn_pack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 396 | asn_pack.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
424 | asn_pack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 397 | asn_pack.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
425 | asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 398 | asn_pack.o: ../../include/openssl/opensslconf.h |
426 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 399 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
427 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 400 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
428 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | 401 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c |
429 | d2i_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 402 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
430 | d2i_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
431 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 403 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
432 | d2i_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 404 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
433 | d2i_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 405 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
434 | d2i_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 406 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
435 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 407 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
436 | d2i_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
437 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
438 | d2i_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
439 | d2i_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
440 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 408 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
441 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 409 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
442 | d2i_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
443 | d2i_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
444 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 410 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
445 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 411 | d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
446 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 412 | d2i_pr.o: ../cryptlib.h d2i_pr.c |
447 | d2i_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pr.c | 413 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
448 | d2i_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
449 | d2i_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
450 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 414 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
451 | d2i_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 415 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
452 | d2i_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 416 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
453 | d2i_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 417 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
454 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 418 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
455 | d2i_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
456 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
457 | d2i_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
458 | d2i_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
459 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 419 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
460 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 420 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
461 | d2i_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
462 | d2i_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
463 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 421 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
464 | d2i_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 422 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
465 | d2i_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 423 | d2i_pu.o: ../cryptlib.h d2i_pu.c |
466 | d2i_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pu.c | ||
467 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 424 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
468 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 425 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
469 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 426 | evp_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
470 | evp_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 427 | evp_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
471 | evp_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 428 | evp_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
472 | evp_asn1.o: ../../include/openssl/opensslconf.h | ||
473 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 429 | evp_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
474 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 430 | evp_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
475 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c | 431 | evp_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_asn1.c |
476 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 432 | f_enum.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
477 | f_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 433 | f_enum.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
478 | f_enum.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 434 | f_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
479 | f_enum.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 435 | f_enum.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
480 | f_enum.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 436 | f_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
481 | f_enum.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 437 | f_enum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
482 | f_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 438 | f_enum.o: ../../include/openssl/symhacks.h ../cryptlib.h f_enum.c |
483 | f_enum.o: ../cryptlib.h f_enum.c | ||
484 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 439 | f_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
485 | f_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 440 | f_int.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
486 | f_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 441 | f_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
487 | f_int.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 442 | f_int.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
488 | f_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 443 | f_int.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
489 | f_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 444 | f_int.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
490 | f_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 445 | f_int.o: ../../include/openssl/symhacks.h ../cryptlib.h f_int.c |
491 | f_int.o: ../cryptlib.h f_int.c | ||
492 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h | 446 | f_string.o: ../../e_os.h ../../include/openssl/asn1.h |
493 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 447 | f_string.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
494 | f_string.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 448 | f_string.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
495 | f_string.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 449 | f_string.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
496 | f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 450 | f_string.o: ../../include/openssl/opensslconf.h |
497 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 451 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
498 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 452 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
499 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | 453 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c |
500 | i2d_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 454 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
501 | i2d_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
502 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 455 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
503 | i2d_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 456 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
504 | i2d_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 457 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
505 | i2d_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 458 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
506 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 459 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
507 | i2d_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
508 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
509 | i2d_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
510 | i2d_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
511 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 460 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
512 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 461 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
513 | i2d_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
514 | i2d_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
515 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 462 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
516 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 463 | i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
517 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 464 | i2d_pr.o: ../cryptlib.h i2d_pr.c |
518 | i2d_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pr.c | 465 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
519 | i2d_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
520 | i2d_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
521 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 466 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
522 | i2d_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 467 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
523 | i2d_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 468 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
524 | i2d_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 469 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
525 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 470 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
526 | i2d_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
527 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
528 | i2d_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
529 | i2d_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
530 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 471 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
531 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 472 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
532 | i2d_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
533 | i2d_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
534 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 473 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
535 | i2d_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 474 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
536 | i2d_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 475 | i2d_pu.o: ../cryptlib.h i2d_pu.c |
537 | i2d_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pu.c | 476 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
538 | n_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
539 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | 477 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h |
540 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 478 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
541 | n_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 479 | n_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
542 | n_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 480 | n_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
543 | n_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 481 | n_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
544 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 482 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
545 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 483 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
546 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 484 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
547 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 485 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
548 | n_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 486 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
549 | n_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 487 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
550 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 488 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
551 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 489 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c |
552 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 490 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
553 | n_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 491 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
554 | n_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 492 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
555 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 493 | nsseq.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
556 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 494 | nsseq.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h |
557 | n_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 495 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
558 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
559 | n_pkey.o: ../cryptlib.h n_pkey.c | ||
560 | nsseq.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
561 | nsseq.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
562 | nsseq.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
563 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
564 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
565 | nsseq.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
566 | nsseq.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
567 | nsseq.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
568 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
569 | nsseq.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
570 | nsseq.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
571 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 496 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
572 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 497 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
573 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 498 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
574 | nsseq.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 499 | nsseq.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
575 | nsseq.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 500 | nsseq.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
576 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 501 | nsseq.o: ../../include/openssl/x509_vfy.h nsseq.c |
577 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 502 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h |
578 | nsseq.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
579 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | ||
580 | p5_pbe.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
581 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 503 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
582 | p5_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 504 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
583 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 505 | p5_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
584 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 506 | p5_pbe.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
585 | p5_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
586 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
587 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 507 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
588 | p5_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 508 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
589 | p5_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 509 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
590 | p5_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 510 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
591 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 511 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
592 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
593 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
594 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
595 | p5_pbe.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
596 | p5_pbe.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
597 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 512 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
598 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 513 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
599 | p5_pbe.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
600 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 514 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
601 | p5_pbe.o: ../cryptlib.h p5_pbe.c | 515 | p5_pbe.o: ../cryptlib.h p5_pbe.c |
602 | p5_pbev2.o: ../../e_os.h ../../include/openssl/aes.h | 516 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h |
603 | p5_pbev2.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 517 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
604 | p5_pbev2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 518 | p5_pbev2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
605 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 519 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
606 | p5_pbev2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 520 | p5_pbev2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
607 | p5_pbev2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 521 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
608 | p5_pbev2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 522 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
609 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
610 | p5_pbev2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
611 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
612 | p5_pbev2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
613 | p5_pbev2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
614 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 523 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
615 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 524 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
616 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 525 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
617 | p5_pbev2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 526 | p5_pbev2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
618 | p5_pbev2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 527 | p5_pbev2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
619 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 528 | p5_pbev2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
620 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 529 | p5_pbev2.o: ../cryptlib.h p5_pbev2.c |
621 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 530 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
622 | p5_pbev2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 531 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
623 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | 532 | p8_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
624 | p8_pkey.o: ../../e_os.h ../../include/openssl/aes.h | 533 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
625 | p8_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 534 | p8_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
626 | p8_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 535 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
627 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 536 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
628 | p8_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
629 | p8_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
630 | p8_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
631 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
632 | p8_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
633 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
634 | p8_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
635 | p8_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
636 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 537 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
637 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 538 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
638 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 539 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
639 | p8_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 540 | p8_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
640 | p8_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 541 | p8_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
641 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 542 | p8_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p8_pkey.c |
642 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 543 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h |
643 | p8_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 544 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
644 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
645 | p8_pkey.o: ../cryptlib.h p8_pkey.c | ||
646 | t_bitst.o: ../../e_os.h ../../include/openssl/aes.h | ||
647 | t_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
648 | t_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
649 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
650 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 545 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
651 | t_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 546 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
652 | t_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 547 | t_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
653 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 548 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
654 | t_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 549 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
655 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
656 | t_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
657 | t_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
658 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 550 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
659 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 551 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
660 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 552 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
661 | t_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 553 | t_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
662 | t_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 554 | t_bitst.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
663 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 555 | t_bitst.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
664 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 556 | t_bitst.o: ../cryptlib.h t_bitst.c |
665 | t_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 557 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
666 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
667 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | ||
668 | t_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
669 | t_crl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
670 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 558 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
671 | t_crl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 559 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
672 | t_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 560 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
673 | t_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 561 | t_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
674 | t_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
675 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 562 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
676 | t_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 563 | t_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
677 | t_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 564 | t_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
678 | t_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 565 | t_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
679 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 566 | t_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
680 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
681 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
682 | t_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
683 | t_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
684 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
685 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 567 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
686 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 568 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
687 | t_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
688 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 569 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
689 | t_crl.o: ../cryptlib.h t_crl.c | 570 | t_crl.o: ../cryptlib.h t_crl.c |
690 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 571 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
691 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 572 | t_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
692 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 573 | t_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
693 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 574 | t_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
694 | t_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 575 | t_pkey.o: ../../include/openssl/ec.h ../../include/openssl/err.h |
695 | t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 576 | t_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
696 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | 577 | t_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
697 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 578 | t_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
698 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | 579 | t_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
699 | t_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 580 | t_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
700 | t_req.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 581 | t_pkey.o: ../cryptlib.h t_pkey.c |
582 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
701 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 583 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
702 | t_req.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 584 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
703 | t_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
704 | t_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
705 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 585 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
706 | t_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 586 | t_req.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
707 | t_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 587 | t_req.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
708 | t_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 588 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
709 | t_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
710 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 589 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
711 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 590 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
712 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 591 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
713 | t_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
714 | t_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
715 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 592 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
716 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 593 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
717 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 594 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
718 | t_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
719 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 595 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
720 | t_req.o: ../cryptlib.h t_req.c | 596 | t_req.o: ../cryptlib.h t_req.c |
721 | t_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 597 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
722 | t_spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
723 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 598 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
724 | t_spki.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 599 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
725 | t_spki.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 600 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
726 | t_spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 601 | t_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
727 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 602 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
728 | t_spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 603 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
729 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
730 | t_spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
731 | t_spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
732 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 604 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
733 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 605 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
734 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 606 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
735 | t_spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
736 | t_spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
737 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 607 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
738 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 608 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
739 | t_spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
740 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 609 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
741 | t_spki.o: ../cryptlib.h t_spki.c | 610 | t_spki.o: ../cryptlib.h t_spki.c |
742 | t_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 611 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
743 | t_x509.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
744 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 612 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
745 | t_x509.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 613 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
746 | t_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
747 | t_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
748 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 614 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
749 | t_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 615 | t_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
750 | t_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 616 | t_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
751 | t_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 617 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
752 | t_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
753 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 618 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
754 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 619 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
755 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 620 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
756 | t_x509.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
757 | t_x509.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
758 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 621 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
759 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 622 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
760 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 623 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
761 | t_x509.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
762 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 624 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
763 | t_x509.o: ../cryptlib.h t_x509.c | 625 | t_x509.o: ../cryptlib.h t_x509.c |
764 | t_x509a.o: ../../e_os.h ../../include/openssl/aes.h | 626 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h |
765 | t_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 627 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
766 | t_x509a.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 628 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
767 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 629 | t_x509a.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
768 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 630 | t_x509a.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
769 | t_x509a.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 631 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
770 | t_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
771 | t_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
772 | t_x509a.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
773 | t_x509a.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
774 | t_x509a.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
775 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 632 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
776 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 633 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
777 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 634 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
778 | t_x509a.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 635 | t_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
779 | t_x509a.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 636 | t_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
780 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 637 | t_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
781 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 638 | t_x509a.o: ../cryptlib.h t_x509a.c |
782 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
783 | t_x509a.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
784 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | ||
785 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 639 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
786 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 640 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
787 | tasn_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 641 | tasn_dec.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
788 | tasn_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 642 | tasn_dec.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
789 | tasn_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 643 | tasn_dec.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
790 | tasn_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 644 | tasn_dec.o: ../../include/openssl/opensslconf.h |
791 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 645 | tasn_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
792 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 646 | tasn_dec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
793 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c | 647 | tasn_dec.o: ../../include/openssl/symhacks.h tasn_dec.c |
794 | tasn_enc.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 648 | tasn_enc.o: ../../e_os.h ../../include/openssl/asn1.h |
795 | tasn_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 649 | tasn_enc.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
796 | tasn_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 650 | tasn_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
797 | tasn_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 651 | tasn_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
798 | tasn_enc.o: ../../include/openssl/opensslconf.h | 652 | tasn_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
653 | tasn_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
799 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 654 | tasn_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
800 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 655 | tasn_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
801 | tasn_enc.o: ../../include/openssl/symhacks.h tasn_enc.c | 656 | tasn_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h tasn_enc.c |
802 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 657 | tasn_fre.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
803 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 658 | tasn_fre.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
804 | tasn_fre.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 659 | tasn_fre.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h |
805 | tasn_fre.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 660 | tasn_fre.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
806 | tasn_fre.o: ../../include/openssl/opensslconf.h | ||
807 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 661 | tasn_fre.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
808 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 662 | tasn_fre.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
809 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c | 663 | tasn_fre.o: ../../include/openssl/symhacks.h tasn_fre.c |
810 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 664 | tasn_new.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
811 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 665 | tasn_new.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
812 | tasn_new.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 666 | tasn_new.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
813 | tasn_new.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 667 | tasn_new.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
814 | tasn_new.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 668 | tasn_new.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
815 | tasn_new.o: ../../include/openssl/opensslconf.h | ||
816 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 669 | tasn_new.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
817 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 670 | tasn_new.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
818 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c | 671 | tasn_new.o: ../../include/openssl/symhacks.h tasn_new.c |
819 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 672 | tasn_typ.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
820 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 673 | tasn_typ.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
821 | tasn_typ.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 674 | tasn_typ.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
822 | tasn_typ.o: ../../include/openssl/opensslconf.h | ||
823 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 675 | tasn_typ.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
824 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 676 | tasn_typ.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
825 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c | 677 | tasn_typ.o: ../../include/openssl/symhacks.h tasn_typ.c |
826 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 678 | tasn_utl.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
827 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 679 | tasn_utl.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
828 | tasn_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 680 | tasn_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
829 | tasn_utl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 681 | tasn_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
830 | tasn_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 682 | tasn_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
831 | tasn_utl.o: ../../include/openssl/opensslconf.h | ||
832 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 683 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
833 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 684 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
834 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | 685 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c |
835 | x_algor.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 686 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
836 | x_algor.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 687 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
837 | x_algor.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 688 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
838 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 689 | x_algor.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
839 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 690 | x_algor.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h |
840 | x_algor.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 691 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
841 | x_algor.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
842 | x_algor.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
843 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
844 | x_algor.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
845 | x_algor.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
846 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 692 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
847 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 693 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
848 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 694 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
849 | x_algor.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 695 | x_algor.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
850 | x_algor.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 696 | x_algor.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
851 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 697 | x_algor.o: ../../include/openssl/x509_vfy.h x_algor.c |
852 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 698 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h |
853 | x_algor.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 699 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
854 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 700 | x_attrib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
855 | x_algor.o: x_algor.c | 701 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
856 | x_attrib.o: ../../e_os.h ../../include/openssl/aes.h | 702 | x_attrib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
857 | x_attrib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 703 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
858 | x_attrib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 704 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
859 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
860 | x_attrib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
861 | x_attrib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
862 | x_attrib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
863 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
864 | x_attrib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
865 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
866 | x_attrib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
867 | x_attrib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
868 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 705 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
869 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 706 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
870 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 707 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
871 | x_attrib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 708 | x_attrib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
872 | x_attrib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 709 | x_attrib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
873 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 710 | x_attrib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_attrib.c |
874 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
875 | x_attrib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
876 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
877 | x_attrib.o: ../cryptlib.h x_attrib.c | ||
878 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | 711 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h |
879 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 712 | x_bignum.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
880 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 713 | x_bignum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
@@ -884,69 +717,43 @@ x_bignum.o: ../../include/openssl/opensslconf.h | |||
884 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 717 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
885 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 718 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
886 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | 719 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c |
887 | x_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 720 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h |
888 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 721 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
889 | x_crl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 722 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
890 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 723 | x_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
891 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 724 | x_crl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
892 | x_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
893 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
894 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 725 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
895 | x_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 726 | x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
896 | x_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 727 | x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
897 | x_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 728 | x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
898 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 729 | x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
899 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
900 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
901 | x_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
902 | x_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
903 | x_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
904 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 730 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
905 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 731 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
906 | x_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
907 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c | 732 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c |
908 | x_exten.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 733 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
909 | x_exten.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 734 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
910 | x_exten.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 735 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
911 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 736 | x_exten.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
912 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 737 | x_exten.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h |
913 | x_exten.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 738 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
914 | x_exten.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
915 | x_exten.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
916 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
917 | x_exten.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
918 | x_exten.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
919 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 739 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
920 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 740 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
921 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 741 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
922 | x_exten.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 742 | x_exten.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
923 | x_exten.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 743 | x_exten.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
924 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 744 | x_exten.o: ../../include/openssl/x509_vfy.h x_exten.c |
925 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 745 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
926 | x_exten.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 746 | x_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
927 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 747 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
928 | x_exten.o: x_exten.c | 748 | x_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
929 | x_info.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 749 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
930 | x_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 750 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
931 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
932 | x_info.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
933 | x_info.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
934 | x_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
935 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
936 | x_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
937 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
938 | x_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
939 | x_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
940 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 751 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
941 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 752 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
942 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 753 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
943 | x_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 754 | x_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
944 | x_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 755 | x_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
945 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 756 | x_info.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_info.c |
946 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
947 | x_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
948 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
949 | x_info.o: ../cryptlib.h x_info.c | ||
950 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | 757 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h |
951 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 758 | x_long.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
952 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 759 | x_long.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
@@ -956,195 +763,123 @@ x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
956 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 763 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
957 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 764 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
958 | x_long.o: ../cryptlib.h x_long.c | 765 | x_long.o: ../cryptlib.h x_long.c |
959 | x_name.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 766 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h |
960 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 767 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
961 | x_name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 768 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
962 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 769 | x_name.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
963 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 770 | x_name.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
964 | x_name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
965 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
966 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 771 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
967 | x_name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 772 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
968 | x_name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 773 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
969 | x_name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 774 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
970 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 775 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
971 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
972 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
973 | x_name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
974 | x_name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
975 | x_name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
976 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 776 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
977 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 777 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
978 | x_name.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
979 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c | 778 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c |
980 | x_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 779 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
981 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 780 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
982 | x_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 781 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
983 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 782 | x_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
984 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 783 | x_pkey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
985 | x_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
986 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
987 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 784 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
988 | x_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 785 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
989 | x_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 786 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
990 | x_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 787 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
991 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 788 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
992 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
993 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
994 | x_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
995 | x_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
996 | x_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
997 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 789 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
998 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 790 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
999 | x_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1000 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | 791 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c |
1001 | x_pubkey.o: ../../e_os.h ../../include/openssl/aes.h | 792 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h |
1002 | x_pubkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 793 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
1003 | x_pubkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 794 | x_pubkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1004 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 795 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
1005 | x_pubkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 796 | x_pubkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
1006 | x_pubkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 797 | x_pubkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
1007 | x_pubkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 798 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
1008 | x_pubkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 799 | x_pubkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
1009 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 800 | x_pubkey.o: ../../include/openssl/opensslconf.h |
1010 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1011 | x_pubkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1012 | x_pubkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1013 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1014 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 801 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1015 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 802 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
1016 | x_pubkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1017 | x_pubkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1018 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 803 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
1019 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 804 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
1020 | x_pubkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1021 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 805 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
1022 | x_pubkey.o: ../cryptlib.h x_pubkey.c | 806 | x_pubkey.o: ../cryptlib.h x_pubkey.c |
1023 | x_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 807 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h |
1024 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 808 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
1025 | x_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 809 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1026 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 810 | x_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
1027 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 811 | x_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
1028 | x_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1029 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1030 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 812 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
1031 | x_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 813 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
1032 | x_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 814 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1033 | x_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 815 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1034 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 816 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
1035 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1036 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1037 | x_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1038 | x_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1039 | x_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1040 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 817 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1041 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 818 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1042 | x_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1043 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | 819 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c |
1044 | x_sig.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 820 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h |
1045 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 821 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
1046 | x_sig.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 822 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1047 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 823 | x_sig.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
1048 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 824 | x_sig.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
1049 | x_sig.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1050 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1051 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 825 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
1052 | x_sig.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 826 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
1053 | x_sig.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 827 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1054 | x_sig.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 828 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1055 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 829 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
1056 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1057 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1058 | x_sig.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1059 | x_sig.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1060 | x_sig.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1061 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 830 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1062 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 831 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1063 | x_sig.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1064 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | 832 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c |
1065 | x_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 833 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h |
1066 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 834 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
1067 | x_spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 835 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1068 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 836 | x_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
1069 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 837 | x_spki.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
1070 | x_spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1071 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1072 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 838 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
1073 | x_spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 839 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
1074 | x_spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 840 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1075 | x_spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 841 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1076 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 842 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
1077 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1078 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1079 | x_spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1080 | x_spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1081 | x_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1082 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 843 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1083 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 844 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1084 | x_spki.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1085 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | 845 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c |
1086 | x_val.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 846 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h |
1087 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 847 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
1088 | x_val.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 848 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1089 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 849 | x_val.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
1090 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 850 | x_val.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
1091 | x_val.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1092 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1093 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 851 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
1094 | x_val.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 852 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
1095 | x_val.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 853 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1096 | x_val.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 854 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1097 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 855 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
1098 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
1099 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
1100 | x_val.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1101 | x_val.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1102 | x_val.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
1103 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 856 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1104 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 857 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1105 | x_val.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1106 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | 858 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c |
1107 | x_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 859 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h |
1108 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 860 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
1109 | x_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 861 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
1110 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 862 | x_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
1111 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 863 | x_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
1112 | x_x509.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 864 | x_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
1113 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 865 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
1114 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 866 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
1115 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 867 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
1116 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 868 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
1117 | x_x509.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1118 | x_x509.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1119 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
1120 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
1121 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
1122 | x_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1123 | x_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1124 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 869 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
1125 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 870 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
1126 | x_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1127 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 871 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
1128 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | 872 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c |
1129 | x_x509a.o: ../../e_os.h ../../include/openssl/aes.h | 873 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h |
1130 | x_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 874 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
1131 | x_x509a.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 875 | x_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1132 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 876 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
1133 | x_x509a.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 877 | x_x509a.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
1134 | x_x509a.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 878 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
1135 | x_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 879 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
1136 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1137 | x_x509a.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1138 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1139 | x_x509a.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1140 | x_x509a.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1141 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 880 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1142 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 881 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1143 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 882 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
1144 | x_x509a.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 883 | x_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1145 | x_x509a.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 884 | x_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1146 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 885 | x_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_x509a.c |
1147 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1148 | x_x509a.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1149 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1150 | x_x509a.o: ../cryptlib.h x_x509a.c | ||
diff --git a/src/lib/libcrypto/bf/Makefile b/src/lib/libcrypto/bf/Makefile index 42e2c050f8..8441954a8d 100644 --- a/src/lib/libcrypto/bf/Makefile +++ b/src/lib/libcrypto/bf/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
@@ -22,6 +17,7 @@ BF_ENC= bf_enc.o | |||
22 | 17 | ||
23 | CFLAGS= $(INCLUDES) $(CFLAG) | 18 | CFLAGS= $(INCLUDES) $(CFLAG) |
24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 19 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
20 | AFLAGS= $(ASFLAGS) | ||
25 | 21 | ||
26 | GENERAL=Makefile | 22 | GENERAL=Makefile |
27 | TEST=bftest.c | 23 | TEST=bftest.c |
@@ -48,20 +44,15 @@ lib: $(LIBOBJ) | |||
48 | $(RANLIB) $(LIB) || echo Never mind. | 44 | $(RANLIB) $(LIB) || echo Never mind. |
49 | @touch lib | 45 | @touch lib |
50 | 46 | ||
51 | # elf | 47 | # ELF |
52 | asm/bx86-elf.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 |
53 | (cd asm; $(PERL) bf-586.pl elf $(CFLAGS) $(PROCESSOR) > bx86-elf.s) | 49 | (cd asm; $(PERL) bf-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@) |
54 | 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) > ../$@) | ||
55 | # a.out | 53 | # a.out |
56 | asm/bx86-out.o: asm/bx86unix.cpp | 54 | bx86-out.s: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
57 | $(CPP) -DOUT asm/bx86unix.cpp | as -o asm/bx86-out.o | 55 | (cd asm; $(PERL) bf-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@) |
58 | |||
59 | # bsdi | ||
60 | asm/bx86bsdi.o: asm/bx86unix.cpp | ||
61 | $(CPP) -DBSDI asm/bx86unix.cpp | sed 's/ :/:/' | as -o asm/bx86bsdi.o | ||
62 | |||
63 | asm/bx86unix.cpp: asm/bf-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
64 | (cd asm; $(PERL) bf-586.pl cpp $(PROCESSOR) >bx86unix.cpp) | ||
65 | 56 | ||
66 | files: | 57 | files: |
67 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 58 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -71,9 +62,11 @@ links: | |||
71 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 62 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
72 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
73 | 64 | ||
74 | install: installs | 65 | # We need to use force because 'install' matches 'INSTALL' on case |
75 | 66 | # insensitive systems | |
76 | installs: | 67 | FRC.install: |
68 | install: FRC.install | ||
69 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
77 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 70 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
78 | do \ | 71 | do \ |
79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 72 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -89,6 +82,7 @@ lint: | |||
89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 82 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
90 | 83 | ||
91 | depend: | 84 | depend: |
85 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
92 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 86 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
93 | 87 | ||
94 | dclean: | 88 | dclean: |
@@ -96,7 +90,7 @@ dclean: | |||
96 | mv -f Makefile.new $(MAKEFILE) | 90 | mv -f Makefile.new $(MAKEFILE) |
97 | 91 | ||
98 | clean: | 92 | clean: |
99 | rm -f asm/bx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 93 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
100 | 94 | ||
101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 95 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
102 | 96 | ||
@@ -109,8 +103,5 @@ bf_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | |||
109 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h | 103 | bf_enc.o: ../../include/openssl/opensslconf.h bf_enc.c bf_locl.h |
110 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h | 104 | bf_ofb64.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h |
111 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c | 105 | bf_ofb64.o: ../../include/openssl/opensslconf.h bf_locl.h bf_ofb64.c |
112 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/crypto.h | 106 | bf_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/e_os2.h |
113 | bf_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/fips.h | 107 | bf_skey.o: ../../include/openssl/opensslconf.h bf_locl.h bf_pi.h bf_skey.c |
114 | bf_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
115 | bf_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
116 | bf_skey.o: ../../include/openssl/symhacks.h bf_locl.h bf_pi.h bf_skey.c | ||
diff --git a/src/lib/libcrypto/bio/Makefile b/src/lib/libcrypto/bio/Makefile index a565154499..1ef6c2fb9f 100644 --- a/src/lib/libcrypto/bio/Makefile +++ b/src/lib/libcrypto/bio/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -26,19 +21,21 @@ LIBSRC= bio_lib.c bio_cb.c bio_err.c \ | |||
26 | bss_mem.c bss_null.c bss_fd.c \ | 21 | bss_mem.c bss_null.c bss_fd.c \ |
27 | bss_file.c bss_sock.c bss_conn.c \ | 22 | bss_file.c bss_sock.c bss_conn.c \ |
28 | bf_null.c bf_buff.c b_print.c b_dump.c \ | 23 | bf_null.c bf_buff.c b_print.c b_dump.c \ |
29 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c | 24 | b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c \ |
25 | bss_dgram.c | ||
30 | # bf_lbuf.c | 26 | # bf_lbuf.c |
31 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ | 27 | LIBOBJ= bio_lib.o bio_cb.o bio_err.o \ |
32 | bss_mem.o bss_null.o bss_fd.o \ | 28 | bss_mem.o bss_null.o bss_fd.o \ |
33 | bss_file.o bss_sock.o bss_conn.o \ | 29 | bss_file.o bss_sock.o bss_conn.o \ |
34 | bf_null.o bf_buff.o b_print.o b_dump.o \ | 30 | bf_null.o bf_buff.o b_print.o b_dump.o \ |
35 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o | 31 | b_sock.o bss_acpt.o bf_nbio.o bss_log.o bss_bio.o \ |
32 | bss_dgram.o | ||
36 | # bf_lbuf.o | 33 | # bf_lbuf.o |
37 | 34 | ||
38 | SRC= $(LIBSRC) | 35 | SRC= $(LIBSRC) |
39 | 36 | ||
40 | EXHEADER= bio.h | 37 | EXHEADER= bio.h |
41 | HEADER= bss_file.c $(EXHEADER) | 38 | HEADER= bio_lcl.h $(EXHEADER) |
42 | 39 | ||
43 | ALL= $(GENERAL) $(SRC) $(HEADER) | 40 | ALL= $(GENERAL) $(SRC) $(HEADER) |
44 | 41 | ||
@@ -61,6 +58,7 @@ links: | |||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 58 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
62 | 59 | ||
63 | install: | 60 | install: |
61 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
64 | @headerlist="$(EXHEADER)"; for i in $$headerlist; \ | 62 | @headerlist="$(EXHEADER)"; for i in $$headerlist; \ |
65 | do \ | 63 | do \ |
66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 64 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -76,6 +74,7 @@ lint: | |||
76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
77 | 75 | ||
78 | depend: | 76 | depend: |
77 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 78 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
80 | 79 | ||
81 | dclean: | 80 | dclean: |
@@ -91,30 +90,30 @@ b_dump.o: ../../e_os.h ../../include/openssl/bio.h | |||
91 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 90 | b_dump.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
92 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 91 | b_dump.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
93 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 92 | b_dump.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
94 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 93 | b_dump.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
95 | b_dump.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 94 | b_dump.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
96 | b_dump.o: ../cryptlib.h b_dump.c | 95 | b_dump.o: ../../include/openssl/symhacks.h ../cryptlib.h b_dump.c bio_lcl.h |
97 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 96 | b_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
98 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 97 | b_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
99 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 98 | b_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
100 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 99 | b_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
101 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 100 | b_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
102 | b_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 101 | b_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
103 | b_print.o: ../cryptlib.h b_print.c | 102 | b_print.o: ../../include/openssl/symhacks.h ../cryptlib.h b_print.c |
104 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h | 103 | b_sock.o: ../../e_os.h ../../include/openssl/bio.h |
105 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 104 | b_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
106 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 105 | b_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
107 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 106 | b_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
108 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 107 | b_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
109 | b_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 108 | b_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
110 | b_sock.o: ../cryptlib.h b_sock.c | 109 | b_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h b_sock.c |
111 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h | 110 | bf_buff.o: ../../e_os.h ../../include/openssl/bio.h |
112 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 111 | bf_buff.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
113 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 112 | bf_buff.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
114 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 113 | bf_buff.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
115 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 114 | bf_buff.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
116 | bf_buff.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 115 | bf_buff.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
117 | bf_buff.o: ../cryptlib.h bf_buff.c | 116 | bf_buff.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_buff.c |
118 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h | 117 | bf_nbio.o: ../../e_os.h ../../include/openssl/bio.h |
119 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 118 | bf_nbio.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
120 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 119 | bf_nbio.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
@@ -127,88 +126,96 @@ bf_null.o: ../../e_os.h ../../include/openssl/bio.h | |||
127 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 126 | bf_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
128 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 127 | bf_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
129 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 128 | bf_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
130 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 129 | bf_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
131 | bf_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 130 | bf_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
132 | bf_null.o: ../cryptlib.h bf_null.c | 131 | bf_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bf_null.c |
133 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h | 132 | bio_cb.o: ../../e_os.h ../../include/openssl/bio.h |
134 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 133 | bio_cb.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
135 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 134 | bio_cb.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
136 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 135 | bio_cb.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
137 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 136 | bio_cb.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
138 | bio_cb.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 137 | bio_cb.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
139 | bio_cb.o: ../cryptlib.h bio_cb.c | 138 | bio_cb.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_cb.c |
140 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 139 | bio_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
141 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 140 | bio_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
142 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 141 | bio_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
143 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 142 | bio_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
144 | bio_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 143 | bio_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
145 | bio_err.o: bio_err.c | 144 | bio_err.o: ../../include/openssl/symhacks.h bio_err.c |
146 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h | 145 | bio_lib.o: ../../e_os.h ../../include/openssl/bio.h |
147 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 146 | bio_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
148 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 147 | bio_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
149 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 148 | bio_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
150 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 149 | bio_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
151 | bio_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 150 | bio_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
152 | bio_lib.o: ../cryptlib.h bio_lib.c | 151 | bio_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lib.c |
153 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h | 152 | bss_acpt.o: ../../e_os.h ../../include/openssl/bio.h |
154 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 153 | bss_acpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
155 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 154 | bss_acpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
156 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 155 | bss_acpt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
157 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 156 | bss_acpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
158 | bss_acpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 157 | bss_acpt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
159 | bss_acpt.o: ../cryptlib.h bss_acpt.c | 158 | bss_acpt.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_acpt.c |
160 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h | 159 | bss_bio.o: ../../e_os.h ../../include/openssl/bio.h |
161 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 160 | bss_bio.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
162 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 161 | bss_bio.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
163 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 162 | bss_bio.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
164 | bss_bio.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 163 | bss_bio.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
165 | bss_bio.o: ../../include/openssl/symhacks.h bss_bio.c | 164 | bss_bio.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
165 | bss_bio.o: bss_bio.c | ||
166 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h | 166 | bss_conn.o: ../../e_os.h ../../include/openssl/bio.h |
167 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 167 | bss_conn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
168 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 168 | bss_conn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
169 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 169 | bss_conn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
170 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 170 | bss_conn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
171 | bss_conn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 171 | bss_conn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
172 | bss_conn.o: ../cryptlib.h bss_conn.c | 172 | bss_conn.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_conn.c |
173 | bss_dgram.o: ../../e_os.h ../../include/openssl/bio.h | ||
174 | bss_dgram.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
175 | bss_dgram.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
176 | bss_dgram.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
177 | bss_dgram.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
178 | bss_dgram.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
179 | bss_dgram.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_dgram.c | ||
173 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h | 180 | bss_fd.o: ../../e_os.h ../../include/openssl/bio.h |
174 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 181 | bss_fd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
175 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 182 | bss_fd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
176 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 183 | bss_fd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
177 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 184 | bss_fd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
178 | bss_fd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 185 | bss_fd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
179 | bss_fd.o: ../cryptlib.h bss_fd.c | 186 | bss_fd.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_fd.c |
180 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h | 187 | bss_file.o: ../../e_os.h ../../include/openssl/bio.h |
181 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 188 | bss_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
182 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 189 | bss_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
183 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 190 | bss_file.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
184 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 191 | bss_file.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
185 | bss_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 192 | bss_file.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
186 | bss_file.o: ../cryptlib.h bss_file.c | 193 | bss_file.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_lcl.h bss_file.c |
187 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h | 194 | bss_log.o: ../../e_os.h ../../include/openssl/bio.h |
188 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 195 | bss_log.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
189 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 196 | bss_log.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
190 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 197 | bss_log.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
191 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 198 | bss_log.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
192 | bss_log.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 199 | bss_log.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
193 | bss_log.o: ../cryptlib.h bss_log.c | 200 | bss_log.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_log.c |
194 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h | 201 | bss_mem.o: ../../e_os.h ../../include/openssl/bio.h |
195 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 202 | bss_mem.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
196 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 203 | bss_mem.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
197 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 204 | bss_mem.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
198 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 205 | bss_mem.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
199 | bss_mem.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 206 | bss_mem.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
200 | bss_mem.o: ../cryptlib.h bss_mem.c | 207 | bss_mem.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_mem.c |
201 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h | 208 | bss_null.o: ../../e_os.h ../../include/openssl/bio.h |
202 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 209 | bss_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
203 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 210 | bss_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
204 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 211 | bss_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
205 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 212 | bss_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
206 | bss_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 213 | bss_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
207 | bss_null.o: ../cryptlib.h bss_null.c | 214 | bss_null.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_null.c |
208 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h | 215 | bss_sock.o: ../../e_os.h ../../include/openssl/bio.h |
209 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 216 | bss_sock.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
210 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 217 | bss_sock.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
211 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 218 | bss_sock.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
212 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 219 | bss_sock.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
213 | bss_sock.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 220 | bss_sock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
214 | bss_sock.o: ../cryptlib.h bss_sock.c | 221 | bss_sock.o: ../../include/openssl/symhacks.h ../cryptlib.h bss_sock.c |
diff --git a/src/lib/libcrypto/bn/Makefile b/src/lib/libcrypto/bn/Makefile index 9969d242cc..e97c751390 100644 --- a/src/lib/libcrypto/bn/Makefile +++ b/src/lib/libcrypto/bn/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= -I.. -I$(TOP) -I../../include | 9 | INCLUDES= -I.. -I$(TOP) -I../../include |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
@@ -22,6 +17,7 @@ BN_ASM= bn_asm.o | |||
22 | 17 | ||
23 | CFLAGS= $(INCLUDES) $(CFLAG) | 18 | CFLAGS= $(INCLUDES) $(CFLAG) |
24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 19 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
20 | AFLAGS= $(ASFLAGS) | ||
25 | 21 | ||
26 | GENERAL=Makefile | 22 | GENERAL=Makefile |
27 | TEST=bntest.c exptest.c | 23 | TEST=bntest.c exptest.c |
@@ -31,12 +27,14 @@ LIB=$(TOP)/libcrypto.a | |||
31 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ | 27 | LIBSRC= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c \ |
32 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ | 28 | bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c \ |
33 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ | 29 | bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c bn_asm.c \ |
34 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_x931p.c | 30 | bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c \ |
31 | bn_depr.c bn_const.c | ||
35 | 32 | ||
36 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ | 33 | LIBOBJ= bn_add.o bn_div.o bn_exp.o bn_lib.o bn_ctx.o bn_mul.o bn_mod.o \ |
37 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ | 34 | bn_print.o bn_rand.o bn_shift.o bn_word.o bn_blind.o \ |
38 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ | 35 | bn_kron.o bn_sqrt.o bn_gcd.o bn_prime.o bn_err.o bn_sqr.o $(BN_ASM) \ |
39 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_x931p.o | 36 | bn_recp.o bn_mont.o bn_mpi.o bn_exp2.o bn_gf2m.o bn_nist.o \ |
37 | bn_depr.o bn_const.o | ||
40 | 38 | ||
41 | SRC= $(LIBSRC) | 39 | SRC= $(LIBSRC) |
42 | 40 | ||
@@ -64,70 +62,60 @@ lib: $(LIBOBJ) | |||
64 | $(RANLIB) $(LIB) || echo Never mind. | 62 | $(RANLIB) $(LIB) || echo Never mind. |
65 | @touch lib | 63 | @touch lib |
66 | 64 | ||
67 | # elf | 65 | # ELF |
68 | asm/bn86-elf.s: asm/bn-586.pl ../perlasm/x86asm.pl | 66 | bn86-elf.s: asm/bn-586.pl ../perlasm/x86asm.pl |
69 | (cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > bn86-elf.s) | 67 | (cd asm; $(PERL) bn-586.pl elf $(CFLAGS) > ../$@) |
70 | 68 | co86-elf.s: asm/co-586.pl ../perlasm/x86asm.pl | |
71 | asm/co86-elf.s: asm/co-586.pl ../perlasm/x86asm.pl | 69 | (cd asm; $(PERL) co-586.pl elf $(CFLAGS) > ../$@) |
72 | (cd asm; $(PERL) co-586.pl elf $(CFLAGS) > co86-elf.s) | 70 | mo86-elf.s: asm/mo-586.pl ../perlasm/x86asm.pl |
73 | 71 | (cd asm; $(PERL) mo-586.pl elf $(CFLAGS) > ../$@) | |
72 | # COFF | ||
73 | bn86-cof.s: asm/bn-586.pl ../perlasm/x86asm.pl | ||
74 | (cd asm; $(PERL) bn-586.pl coff $(CFLAGS) > ../$@) | ||
75 | co86-cof.s: asm/co-586.pl ../perlasm/x86asm.pl | ||
76 | (cd asm; $(PERL) co-586.pl coff $(CFLAGS) > ../$@) | ||
77 | mo86-cof.s: asm/mo-586.pl ../perlasm/x86asm.pl | ||
78 | (cd asm; $(PERL) mo-586.pl coff $(CFLAGS) > ../$@) | ||
74 | # a.out | 79 | # a.out |
75 | asm/bn86-out.o: asm/bn86unix.cpp | 80 | bn86-out.s: asm/bn-586.pl ../perlasm/x86asm.pl |
76 | $(CPP) -DOUT asm/bn86unix.cpp | as -o asm/bn86-out.o | 81 | (cd asm; $(PERL) bn-586.pl a.out $(CFLAGS) > ../$@) |
77 | 82 | co86-out.s: asm/co-586.pl ../perlasm/x86asm.pl | |
78 | asm/co86-out.o: asm/co86unix.cpp | 83 | (cd asm; $(PERL) co-586.pl a.out $(CFLAGS) > ../$@) |
79 | $(CPP) -DOUT asm/co86unix.cpp | as -o asm/co86-out.o | 84 | mo86-out.s: asm/mo-586.pl ../perlasm/x86asm.pl |
80 | 85 | (cd asm; $(PERL) mo-586.pl a.out $(CFLAGS) > ../$@) | |
81 | # bsdi | 86 | |
82 | asm/bn86bsdi.o: asm/bn86unix.cpp | 87 | sparcv8.o: asm/sparcv8.S |
83 | $(CPP) -DBSDI asm/bn86unix.cpp | sed 's/ :/:/' | as -o asm/bn86bsdi.o | 88 | $(CC) $(CFLAGS) -c asm/sparcv8.S |
84 | 89 | sparcv8plus.o: asm/sparcv8plus.S | |
85 | asm/co86bsdi.o: asm/co86unix.cpp | 90 | $(CC) $(CFLAGS) -c asm/sparcv8plus.S |
86 | $(CPP) -DBSDI asm/co86unix.cpp | sed 's/ :/:/' | as -o asm/co86bsdi.o | 91 | |
87 | 92 | bn-mips3.o: asm/mips3.s | |
88 | asm/bn86unix.cpp: asm/bn-586.pl ../perlasm/x86asm.pl | 93 | @if [ "$(CC)" = "gcc" ]; then \ |
89 | (cd asm; $(PERL) bn-586.pl cpp >bn86unix.cpp ) | 94 | ABI=`expr "$(CFLAGS)" : ".*-mabi=\([n3264]*\)"` && \ |
90 | 95 | as -$$ABI -O -o $@ asm/mips3.s; \ | |
91 | asm/co86unix.cpp: asm/co-586.pl ../perlasm/x86asm.pl | 96 | else $(CC) -c $(CFLAGS) -o $@ asm/mips3.s; fi |
92 | (cd asm; $(PERL) co-586.pl cpp >co86unix.cpp ) | 97 | |
93 | 98 | x86_64-gcc.o: asm/x86_64-gcc.c | |
94 | asm/sparcv8.o: asm/sparcv8.S | 99 | $(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c |
95 | 100 | x86_64-mont.s: asm/x86_64-mont.pl | |
96 | asm/sparcv8plus.o: asm/sparcv8plus.S | 101 | $(PERL) asm/x86_64-mont.pl $@ |
97 | 102 | ||
98 | # Old GNU assembler doesn't understand V9 instructions, so we | 103 | bn-ia64.s: asm/ia64.S |
99 | # hire /usr/ccs/bin/as to do the job. Note that option is called | 104 | $(CC) $(CFLAGS) -E asm/ia64.S > $@ |
100 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | 105 | |
101 | # if they didn't bother to upgrade GNU assembler. Such users should | 106 | # GNU assembler fails to compile PA-RISC2 modules, insist on calling |
102 | # not choose this option, but be adviced to *remove* GNU assembler | 107 | # vendor assembler... |
103 | # or upgrade it. | 108 | pa-risc2W.o: asm/pa-risc2W.s |
104 | asm/sparcv8plus-gcc27.o: asm/sparcv8plus.S | 109 | /usr/ccs/bin/as -o pa-risc2W.o asm/pa-risc2W.s |
105 | $(CC) $(ASFLAGS) -E asm/sparcv8plus.S | \ | 110 | pa-risc2.o: asm/pa-risc2.s |
106 | /usr/ccs/bin/as -xarch=v8plus - -o asm/sparcv8plus-gcc27.o | 111 | /usr/ccs/bin/as -o pa-risc2.o asm/pa-risc2.s |
107 | 112 | ||
108 | 113 | # ppc - AIX, Linux, MacOS X... | |
109 | asm/ia64.o: asm/ia64.S | 114 | linux_ppc32.s: asm/ppc.pl; $(PERL) $< $@ |
110 | 115 | linux_ppc64.s: asm/ppc.pl; $(PERL) $< $@ | |
111 | # Some compiler drivers (most notably HP-UX and Intel C++) don't | 116 | aix_ppc32.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ |
112 | # understand .S extension:-( I wish I could pipe output from cc -E, | 117 | aix_ppc64.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ |
113 | # but it's too compiler driver/ABI dependent to cover with a single | 118 | osx_ppc32.s: asm/ppc.pl; $(PERL) $< $@ |
114 | # rule... <appro@fy.chalmers.se> | ||
115 | asm/ia64-cpp.o: asm/ia64.S | ||
116 | $(CC) $(ASFLAGS) -E asm/ia64.S > /tmp/ia64.$$$$.s && \ | ||
117 | $(CC) $(ASFLAGS) -c -o asm/ia64-cpp.o /tmp/ia64.$$$$.s; \ | ||
118 | rm -f /tmp/ia64.$$$$.s | ||
119 | |||
120 | asm/x86_64-gcc.o: asm/x86_64-gcc.c | ||
121 | $(CC) $(ASFLAGS) -c -o $@ $< | ||
122 | |||
123 | asm/pa-risc2W.o: asm/pa-risc2W.s | ||
124 | /usr/ccs/bin/as -o asm/pa-risc2W.o asm/pa-risc2W.s | ||
125 | |||
126 | asm/linux_ppc32.s: asm/ppc.pl; $(PERL) $< $@ | ||
127 | asm/linux_ppc64.s: asm/ppc.pl; $(PERL) $< $@ | ||
128 | asm/aix_ppc32.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ | ||
129 | asm/aix_ppc64.s: asm/ppc.pl; $(PERL) asm/ppc.pl $@ | ||
130 | asm/osx_ppc32.s: asm/ppc.pl; $(PERL) $< $@ | ||
131 | 119 | ||
132 | files: | 120 | files: |
133 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 121 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -138,6 +126,7 @@ links: | |||
138 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 126 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
139 | 127 | ||
140 | install: | 128 | install: |
129 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
141 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 130 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
142 | do \ | 131 | do \ |
143 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 132 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -161,6 +150,7 @@ lint: | |||
161 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 150 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
162 | 151 | ||
163 | depend: | 152 | depend: |
153 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
164 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 154 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
165 | 155 | ||
166 | dclean: | 156 | dclean: |
@@ -168,7 +158,7 @@ dclean: | |||
168 | mv -f Makefile.new $(MAKEFILE) | 158 | mv -f Makefile.new $(MAKEFILE) |
169 | 159 | ||
170 | clean: | 160 | clean: |
171 | rm -f asm/co86unix.cpp asm/bn86unix.cpp asm/*-elf.* *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff bn_asm.s | 161 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
172 | 162 | ||
173 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 163 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
174 | 164 | ||
@@ -176,101 +166,131 @@ bn_add.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | |||
176 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 166 | bn_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
177 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 167 | bn_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
178 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 168 | bn_add.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
179 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 169 | bn_add.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
180 | bn_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 170 | bn_add.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
181 | bn_add.o: ../cryptlib.h bn_add.c bn_lcl.h | 171 | bn_add.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_add.c bn_lcl.h |
182 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 172 | bn_asm.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
183 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 173 | bn_asm.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
184 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 174 | bn_asm.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
185 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 175 | bn_asm.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
186 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 176 | bn_asm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
187 | bn_asm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 177 | bn_asm.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
188 | bn_asm.o: ../cryptlib.h bn_asm.c bn_lcl.h | 178 | bn_asm.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_asm.c bn_lcl.h |
189 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 179 | bn_blind.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
190 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 180 | bn_blind.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
191 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 181 | bn_blind.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
192 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 182 | bn_blind.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
193 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 183 | bn_blind.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
194 | bn_blind.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 184 | bn_blind.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
195 | bn_blind.o: ../cryptlib.h bn_blind.c bn_lcl.h | 185 | bn_blind.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_blind.c bn_lcl.h |
186 | bn_const.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
187 | bn_const.o: ../../include/openssl/ossl_typ.h bn.h bn_const.c | ||
196 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 188 | bn_ctx.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
197 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 189 | bn_ctx.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
198 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 190 | bn_ctx.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
199 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 191 | bn_ctx.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
200 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 192 | bn_ctx.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
201 | bn_ctx.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 193 | bn_ctx.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
202 | bn_ctx.o: ../cryptlib.h bn_ctx.c bn_lcl.h | 194 | bn_ctx.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_ctx.c bn_lcl.h |
195 | bn_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
196 | bn_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
197 | bn_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
198 | bn_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
199 | bn_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
200 | bn_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
201 | bn_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
202 | bn_depr.o: ../cryptlib.h bn_depr.c bn_lcl.h | ||
203 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 203 | bn_div.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
204 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 204 | bn_div.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
205 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 205 | bn_div.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
206 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 206 | bn_div.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
207 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 207 | bn_div.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
208 | bn_div.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 208 | bn_div.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
209 | bn_div.o: ../cryptlib.h bn_div.c bn_lcl.h | 209 | bn_div.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_div.c bn_lcl.h |
210 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 210 | bn_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
211 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 211 | bn_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
212 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 212 | bn_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
213 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 213 | bn_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
214 | bn_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 214 | bn_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
215 | bn_err.o: ../../include/openssl/symhacks.h bn_err.c | 215 | bn_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
216 | bn_err.o: bn_err.c | ||
216 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 217 | bn_exp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
217 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 218 | bn_exp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
218 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 219 | bn_exp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
219 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 220 | bn_exp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
220 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 221 | bn_exp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
221 | bn_exp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 222 | bn_exp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
222 | bn_exp.o: ../cryptlib.h bn_exp.c bn_lcl.h | 223 | bn_exp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp.c bn_lcl.h |
223 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 224 | bn_exp2.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
224 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 225 | bn_exp2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
225 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 226 | bn_exp2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
226 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 227 | bn_exp2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
227 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 228 | bn_exp2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
228 | bn_exp2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 229 | bn_exp2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
229 | bn_exp2.o: ../cryptlib.h bn_exp2.c bn_lcl.h | 230 | bn_exp2.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_exp2.c bn_lcl.h |
230 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 231 | bn_gcd.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
231 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 232 | bn_gcd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
232 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 233 | bn_gcd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
233 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 234 | bn_gcd.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
234 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 235 | bn_gcd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
235 | bn_gcd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 236 | bn_gcd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
236 | bn_gcd.o: ../cryptlib.h bn_gcd.c bn_lcl.h | 237 | bn_gcd.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gcd.c bn_lcl.h |
237 | bn_kron.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | 238 | bn_gf2m.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
238 | bn_kron.o: ../../include/openssl/opensslconf.h bn_kron.c bn_lcl.h | 239 | bn_gf2m.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
240 | bn_gf2m.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
241 | bn_gf2m.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
242 | bn_gf2m.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
243 | bn_gf2m.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
244 | bn_gf2m.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_gf2m.c bn_lcl.h | ||
245 | bn_kron.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
246 | bn_kron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
247 | bn_kron.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
248 | bn_kron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
249 | bn_kron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
250 | bn_kron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
251 | bn_kron.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_kron.c bn_lcl.h | ||
239 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 252 | bn_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
240 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 253 | bn_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
241 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 254 | bn_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
242 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 255 | bn_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
243 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 256 | bn_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
244 | bn_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 257 | bn_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
245 | bn_lib.o: ../cryptlib.h bn_lcl.h bn_lib.c | 258 | bn_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_lib.c |
246 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 259 | bn_mod.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
247 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 260 | bn_mod.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
248 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 261 | bn_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
249 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 262 | bn_mod.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
250 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 263 | bn_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
251 | bn_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 264 | bn_mod.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
252 | bn_mod.o: ../cryptlib.h bn_lcl.h bn_mod.c | 265 | bn_mod.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mod.c |
253 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 266 | bn_mont.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
254 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 267 | bn_mont.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
255 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 268 | bn_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
256 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 269 | bn_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
257 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 270 | bn_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
258 | bn_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 271 | bn_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
259 | bn_mont.o: ../cryptlib.h bn_lcl.h bn_mont.c | 272 | bn_mont.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mont.c |
260 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 273 | bn_mpi.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
261 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 274 | bn_mpi.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
262 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 275 | bn_mpi.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
263 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 276 | bn_mpi.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
264 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 277 | bn_mpi.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
265 | bn_mpi.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 278 | bn_mpi.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
266 | bn_mpi.o: ../cryptlib.h bn_lcl.h bn_mpi.c | 279 | bn_mpi.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mpi.c |
267 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 280 | bn_mul.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
268 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 281 | bn_mul.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
269 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 282 | bn_mul.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
270 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 283 | bn_mul.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
271 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 284 | bn_mul.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
272 | bn_mul.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 285 | bn_mul.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
273 | bn_mul.o: ../cryptlib.h bn_lcl.h bn_mul.c | 286 | bn_mul.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_mul.c |
287 | bn_nist.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
288 | bn_nist.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
289 | bn_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
290 | bn_nist.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
291 | bn_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
292 | bn_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
293 | bn_nist.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_nist.c | ||
274 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 294 | bn_prime.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
275 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 295 | bn_prime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
276 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 296 | bn_prime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
@@ -283,9 +303,9 @@ bn_print.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | |||
283 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 303 | bn_print.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
284 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 304 | bn_print.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
285 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 305 | bn_print.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
286 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 306 | bn_print.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
287 | bn_print.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 307 | bn_print.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
288 | bn_print.o: ../cryptlib.h bn_lcl.h bn_print.c | 308 | bn_print.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_print.c |
289 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 309 | bn_rand.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
290 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 310 | bn_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
291 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 311 | bn_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
@@ -298,36 +318,34 @@ bn_recp.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | |||
298 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 318 | bn_recp.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
299 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 319 | bn_recp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
300 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 320 | bn_recp.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
301 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 321 | bn_recp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
302 | bn_recp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 322 | bn_recp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
303 | bn_recp.o: ../cryptlib.h bn_lcl.h bn_recp.c | 323 | bn_recp.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_recp.c |
304 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 324 | bn_shift.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
305 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 325 | bn_shift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
306 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 326 | bn_shift.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
307 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 327 | bn_shift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
308 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 328 | bn_shift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
309 | bn_shift.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 329 | bn_shift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
310 | bn_shift.o: ../cryptlib.h bn_lcl.h bn_shift.c | 330 | bn_shift.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_shift.c |
311 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 331 | bn_sqr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
312 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 332 | bn_sqr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
313 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 333 | bn_sqr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
314 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 334 | bn_sqr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
315 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 335 | bn_sqr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
316 | bn_sqr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 336 | bn_sqr.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
317 | bn_sqr.o: ../cryptlib.h bn_lcl.h bn_sqr.c | 337 | bn_sqr.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqr.c |
318 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 338 | bn_sqrt.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
319 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 339 | bn_sqrt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
320 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 340 | bn_sqrt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
321 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 341 | bn_sqrt.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
322 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 342 | bn_sqrt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
323 | bn_sqrt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 343 | bn_sqrt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
324 | bn_sqrt.o: ../cryptlib.h bn_lcl.h bn_sqrt.c | 344 | bn_sqrt.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_sqrt.c |
325 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 345 | bn_word.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
326 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 346 | bn_word.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
327 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 347 | bn_word.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
328 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 348 | bn_word.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
329 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 349 | bn_word.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
330 | bn_word.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 350 | bn_word.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
331 | bn_word.o: ../cryptlib.h bn_lcl.h bn_word.c | 351 | bn_word.o: ../../include/openssl/symhacks.h ../cryptlib.h bn_lcl.h bn_word.c |
332 | bn_x931p.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | ||
333 | bn_x931p.o: ../../include/openssl/opensslconf.h bn_x931p.c | ||
diff --git a/src/lib/libcrypto/bn/asm/mo-586.pl b/src/lib/libcrypto/bn/asm/mo-586.pl new file mode 100644 index 0000000000..0982293094 --- /dev/null +++ b/src/lib/libcrypto/bn/asm/mo-586.pl | |||
@@ -0,0 +1,603 @@ | |||
1 | #!/usr/bin/env perl | ||
2 | |||
3 | # This is crypto/bn/asm/x86-mont.pl (with asciz from crypto/perlasm/x86asm.pl) | ||
4 | # from OpenSSL 0.9.9-dev | ||
5 | |||
6 | sub ::asciz | ||
7 | { my @str=unpack("C*",shift); | ||
8 | push @str,0; | ||
9 | while ($#str>15) { | ||
10 | &data_byte(@str[0..15]); | ||
11 | foreach (0..15) { shift @str; } | ||
12 | } | ||
13 | &data_byte(@str) if (@str); | ||
14 | } | ||
15 | |||
16 | # ==================================================================== | ||
17 | # Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL | ||
18 | # project. The module is, however, dual licensed under OpenSSL and | ||
19 | # CRYPTOGAMS licenses depending on where you obtain it. For further | ||
20 | # details see http://www.openssl.org/~appro/cryptogams/. | ||
21 | # ==================================================================== | ||
22 | |||
23 | # October 2005 | ||
24 | # | ||
25 | # This is a "teaser" code, as it can be improved in several ways... | ||
26 | # First of all non-SSE2 path should be implemented (yes, for now it | ||
27 | # performs Montgomery multiplication/convolution only on SSE2-capable | ||
28 | # CPUs such as P4, others fall down to original code). Then inner loop | ||
29 | # can be unrolled and modulo-scheduled to improve ILP and possibly | ||
30 | # moved to 128-bit XMM register bank (though it would require input | ||
31 | # rearrangement and/or increase bus bandwidth utilization). Dedicated | ||
32 | # squaring procedure should give further performance improvement... | ||
33 | # Yet, for being draft, the code improves rsa512 *sign* benchmark by | ||
34 | # 110%(!), rsa1024 one - by 70% and rsa4096 - by 20%:-) | ||
35 | |||
36 | # December 2006 | ||
37 | # | ||
38 | # Modulo-scheduling SSE2 loops results in further 15-20% improvement. | ||
39 | # Integer-only code [being equipped with dedicated squaring procedure] | ||
40 | # gives ~40% on rsa512 sign benchmark... | ||
41 | |||
42 | push(@INC,"perlasm","../../perlasm"); | ||
43 | require "x86asm.pl"; | ||
44 | |||
45 | &asm_init($ARGV[0],$0); | ||
46 | |||
47 | $sse2=0; | ||
48 | for (@ARGV) { $sse2=1 if (/-DOPENSSL_IA32_SSE2/); } | ||
49 | |||
50 | &external_label("OPENSSL_ia32cap_P") if ($sse2); | ||
51 | |||
52 | &function_begin("bn_mul_mont"); | ||
53 | |||
54 | $i="edx"; | ||
55 | $j="ecx"; | ||
56 | $ap="esi"; $tp="esi"; # overlapping variables!!! | ||
57 | $rp="edi"; $bp="edi"; # overlapping variables!!! | ||
58 | $np="ebp"; | ||
59 | $num="ebx"; | ||
60 | |||
61 | $_num=&DWP(4*0,"esp"); # stack top layout | ||
62 | $_rp=&DWP(4*1,"esp"); | ||
63 | $_ap=&DWP(4*2,"esp"); | ||
64 | $_bp=&DWP(4*3,"esp"); | ||
65 | $_np=&DWP(4*4,"esp"); | ||
66 | $_n0=&DWP(4*5,"esp"); $_n0q=&QWP(4*5,"esp"); | ||
67 | $_sp=&DWP(4*6,"esp"); | ||
68 | $_bpend=&DWP(4*7,"esp"); | ||
69 | $frame=32; # size of above frame rounded up to 16n | ||
70 | |||
71 | &xor ("eax","eax"); | ||
72 | &mov ("edi",&wparam(5)); # int num | ||
73 | &cmp ("edi",4); | ||
74 | &jl (&label("just_leave")); | ||
75 | |||
76 | &lea ("esi",&wparam(0)); # put aside pointer to argument block | ||
77 | &lea ("edx",&wparam(1)); # load ap | ||
78 | &mov ("ebp","esp"); # saved stack pointer! | ||
79 | &add ("edi",2); # extra two words on top of tp | ||
80 | &neg ("edi"); | ||
81 | &lea ("esp",&DWP(-$frame,"esp","edi",4)); # alloca($frame+4*(num+2)) | ||
82 | &neg ("edi"); | ||
83 | |||
84 | # minimize cache contention by arraning 2K window between stack | ||
85 | # pointer and ap argument [np is also position sensitive vector, | ||
86 | # but it's assumed to be near ap, as it's allocated at ~same | ||
87 | # time]. | ||
88 | &mov ("eax","esp"); | ||
89 | &sub ("eax","edx"); | ||
90 | &and ("eax",2047); | ||
91 | &sub ("esp","eax"); # this aligns sp and ap modulo 2048 | ||
92 | |||
93 | &xor ("edx","esp"); | ||
94 | &and ("edx",2048); | ||
95 | &xor ("edx",2048); | ||
96 | &sub ("esp","edx"); # this splits them apart modulo 4096 | ||
97 | |||
98 | &and ("esp",-64); # align to cache line | ||
99 | |||
100 | ################################# load argument block... | ||
101 | &mov ("eax",&DWP(0*4,"esi"));# BN_ULONG *rp | ||
102 | &mov ("ebx",&DWP(1*4,"esi"));# const BN_ULONG *ap | ||
103 | &mov ("ecx",&DWP(2*4,"esi"));# const BN_ULONG *bp | ||
104 | &mov ("edx",&DWP(3*4,"esi"));# const BN_ULONG *np | ||
105 | &mov ("esi",&DWP(4*4,"esi"));# const BN_ULONG *n0 | ||
106 | #&mov ("edi",&DWP(5*4,"esi"));# int num | ||
107 | |||
108 | &mov ("esi",&DWP(0,"esi")); # pull n0[0] | ||
109 | &mov ($_rp,"eax"); # ... save a copy of argument block | ||
110 | &mov ($_ap,"ebx"); | ||
111 | &mov ($_bp,"ecx"); | ||
112 | &mov ($_np,"edx"); | ||
113 | &mov ($_n0,"esi"); | ||
114 | &lea ($num,&DWP(-3,"edi")); # num=num-1 to assist modulo-scheduling | ||
115 | #&mov ($_num,$num); # redundant as $num is not reused | ||
116 | &mov ($_sp,"ebp"); # saved stack pointer! | ||
117 | |||
118 | if($sse2) { | ||
119 | $acc0="mm0"; # mmx register bank layout | ||
120 | $acc1="mm1"; | ||
121 | $car0="mm2"; | ||
122 | $car1="mm3"; | ||
123 | $mul0="mm4"; | ||
124 | $mul1="mm5"; | ||
125 | $temp="mm6"; | ||
126 | $mask="mm7"; | ||
127 | |||
128 | &picmeup("eax","OPENSSL_ia32cap_P"); | ||
129 | &bt (&DWP(0,"eax"),26); | ||
130 | &jnc (&label("non_sse2")); | ||
131 | |||
132 | &mov ("eax",-1); | ||
133 | &movd ($mask,"eax"); # mask 32 lower bits | ||
134 | |||
135 | &mov ($ap,$_ap); # load input pointers | ||
136 | &mov ($bp,$_bp); | ||
137 | &mov ($np,$_np); | ||
138 | |||
139 | &xor ($i,$i); # i=0 | ||
140 | &xor ($j,$j); # j=0 | ||
141 | |||
142 | &movd ($mul0,&DWP(0,$bp)); # bp[0] | ||
143 | &movd ($mul1,&DWP(0,$ap)); # ap[0] | ||
144 | &movd ($car1,&DWP(0,$np)); # np[0] | ||
145 | |||
146 | &pmuludq($mul1,$mul0); # ap[0]*bp[0] | ||
147 | &movq ($car0,$mul1); | ||
148 | &movq ($acc0,$mul1); # I wish movd worked for | ||
149 | &pand ($acc0,$mask); # inter-register transfers | ||
150 | |||
151 | &pmuludq($mul1,$_n0q); # *=n0 | ||
152 | |||
153 | &pmuludq($car1,$mul1); # "t[0]"*np[0]*n0 | ||
154 | &paddq ($car1,$acc0); | ||
155 | |||
156 | &movd ($acc1,&DWP(4,$np)); # np[1] | ||
157 | &movd ($acc0,&DWP(4,$ap)); # ap[1] | ||
158 | |||
159 | &psrlq ($car0,32); | ||
160 | &psrlq ($car1,32); | ||
161 | |||
162 | &inc ($j); # j++ | ||
163 | &set_label("1st",16); | ||
164 | &pmuludq($acc0,$mul0); # ap[j]*bp[0] | ||
165 | &pmuludq($acc1,$mul1); # np[j]*m1 | ||
166 | &paddq ($car0,$acc0); # +=c0 | ||
167 | &paddq ($car1,$acc1); # +=c1 | ||
168 | |||
169 | &movq ($acc0,$car0); | ||
170 | &pand ($acc0,$mask); | ||
171 | &movd ($acc1,&DWP(4,$np,$j,4)); # np[j+1] | ||
172 | &paddq ($car1,$acc0); # +=ap[j]*bp[0]; | ||
173 | &movd ($acc0,&DWP(4,$ap,$j,4)); # ap[j+1] | ||
174 | &psrlq ($car0,32); | ||
175 | &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[j-1]= | ||
176 | &psrlq ($car1,32); | ||
177 | |||
178 | &lea ($j,&DWP(1,$j)); | ||
179 | &cmp ($j,$num); | ||
180 | &jl (&label("1st")); | ||
181 | |||
182 | &pmuludq($acc0,$mul0); # ap[num-1]*bp[0] | ||
183 | &pmuludq($acc1,$mul1); # np[num-1]*m1 | ||
184 | &paddq ($car0,$acc0); # +=c0 | ||
185 | &paddq ($car1,$acc1); # +=c1 | ||
186 | |||
187 | &movq ($acc0,$car0); | ||
188 | &pand ($acc0,$mask); | ||
189 | &paddq ($car1,$acc0); # +=ap[num-1]*bp[0]; | ||
190 | &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[num-2]= | ||
191 | |||
192 | &psrlq ($car0,32); | ||
193 | &psrlq ($car1,32); | ||
194 | |||
195 | &paddq ($car1,$car0); | ||
196 | &movq (&QWP($frame,"esp",$num,4),$car1); # tp[num].tp[num-1] | ||
197 | |||
198 | &inc ($i); # i++ | ||
199 | &set_label("outer"); | ||
200 | &xor ($j,$j); # j=0 | ||
201 | |||
202 | &movd ($mul0,&DWP(0,$bp,$i,4)); # bp[i] | ||
203 | &movd ($mul1,&DWP(0,$ap)); # ap[0] | ||
204 | &movd ($temp,&DWP($frame,"esp")); # tp[0] | ||
205 | &movd ($car1,&DWP(0,$np)); # np[0] | ||
206 | &pmuludq($mul1,$mul0); # ap[0]*bp[i] | ||
207 | |||
208 | &paddq ($mul1,$temp); # +=tp[0] | ||
209 | &movq ($acc0,$mul1); | ||
210 | &movq ($car0,$mul1); | ||
211 | &pand ($acc0,$mask); | ||
212 | |||
213 | &pmuludq($mul1,$_n0q); # *=n0 | ||
214 | |||
215 | &pmuludq($car1,$mul1); | ||
216 | &paddq ($car1,$acc0); | ||
217 | |||
218 | &movd ($temp,&DWP($frame+4,"esp")); # tp[1] | ||
219 | &movd ($acc1,&DWP(4,$np)); # np[1] | ||
220 | &movd ($acc0,&DWP(4,$ap)); # ap[1] | ||
221 | |||
222 | &psrlq ($car0,32); | ||
223 | &psrlq ($car1,32); | ||
224 | &paddq ($car0,$temp); # +=tp[1] | ||
225 | |||
226 | &inc ($j); # j++ | ||
227 | &dec ($num); | ||
228 | &set_label("inner"); | ||
229 | &pmuludq($acc0,$mul0); # ap[j]*bp[i] | ||
230 | &pmuludq($acc1,$mul1); # np[j]*m1 | ||
231 | &paddq ($car0,$acc0); # +=c0 | ||
232 | &paddq ($car1,$acc1); # +=c1 | ||
233 | |||
234 | &movq ($acc0,$car0); | ||
235 | &movd ($temp,&DWP($frame+4,"esp",$j,4));# tp[j+1] | ||
236 | &pand ($acc0,$mask); | ||
237 | &movd ($acc1,&DWP(4,$np,$j,4)); # np[j+1] | ||
238 | &paddq ($car1,$acc0); # +=ap[j]*bp[i]+tp[j] | ||
239 | &movd ($acc0,&DWP(4,$ap,$j,4)); # ap[j+1] | ||
240 | &psrlq ($car0,32); | ||
241 | &movd (&DWP($frame-4,"esp",$j,4),$car1);# tp[j-1]= | ||
242 | &psrlq ($car1,32); | ||
243 | &paddq ($car0,$temp); # +=tp[j+1] | ||
244 | |||
245 | &dec ($num); | ||
246 | &lea ($j,&DWP(1,$j)); # j++ | ||
247 | &jnz (&label("inner")); | ||
248 | |||
249 | &mov ($num,$j); | ||
250 | &pmuludq($acc0,$mul0); # ap[num-1]*bp[i] | ||
251 | &pmuludq($acc1,$mul1); # np[num-1]*m1 | ||
252 | &paddq ($car0,$acc0); # +=c0 | ||
253 | &paddq ($car1,$acc1); # +=c1 | ||
254 | |||
255 | &movq ($acc0,$car0); | ||
256 | &pand ($acc0,$mask); | ||
257 | &paddq ($car1,$acc0); # +=ap[num-1]*bp[i]+tp[num-1] | ||
258 | &movd (&DWP($frame-4,"esp",$j,4),$car1); # tp[num-2]= | ||
259 | &psrlq ($car0,32); | ||
260 | &psrlq ($car1,32); | ||
261 | |||
262 | &movd ($temp,&DWP($frame+4,"esp",$num,4)); # += tp[num] | ||
263 | &paddq ($car1,$car0); | ||
264 | &paddq ($car1,$temp); | ||
265 | &movq (&QWP($frame,"esp",$num,4),$car1); # tp[num].tp[num-1] | ||
266 | |||
267 | &lea ($i,&DWP(1,$i)); # i++ | ||
268 | &cmp ($i,$num); | ||
269 | &jle (&label("outer")); | ||
270 | |||
271 | &emms (); # done with mmx bank | ||
272 | &jmp (&label("common_tail")); | ||
273 | |||
274 | &set_label("non_sse2",16); | ||
275 | } | ||
276 | |||
277 | if (0) { | ||
278 | &mov ("esp",$_sp); | ||
279 | &xor ("eax","eax"); # signal "not fast enough [yet]" | ||
280 | &jmp (&label("just_leave")); | ||
281 | # While the below code provides competitive performance for | ||
282 | # all key lengthes on modern Intel cores, it's still more | ||
283 | # than 10% slower for 4096-bit key elsewhere:-( "Competitive" | ||
284 | # means compared to the original integer-only assembler. | ||
285 | # 512-bit RSA sign is better by ~40%, but that's about all | ||
286 | # one can say about all CPUs... | ||
287 | } else { | ||
288 | $inp="esi"; # integer path uses these registers differently | ||
289 | $word="edi"; | ||
290 | $carry="ebp"; | ||
291 | |||
292 | &mov ($inp,$_ap); | ||
293 | &lea ($carry,&DWP(1,$num)); | ||
294 | &mov ($word,$_bp); | ||
295 | &xor ($j,$j); # j=0 | ||
296 | &mov ("edx",$inp); | ||
297 | &and ($carry,1); # see if num is even | ||
298 | &sub ("edx",$word); # see if ap==bp | ||
299 | &lea ("eax",&DWP(4,$word,$num,4)); # &bp[num] | ||
300 | &or ($carry,"edx"); | ||
301 | &mov ($word,&DWP(0,$word)); # bp[0] | ||
302 | &jz (&label("bn_sqr_mont")); | ||
303 | &mov ($_bpend,"eax"); | ||
304 | &mov ("eax",&DWP(0,$inp)); | ||
305 | &xor ("edx","edx"); | ||
306 | |||
307 | &set_label("mull",16); | ||
308 | &mov ($carry,"edx"); | ||
309 | &mul ($word); # ap[j]*bp[0] | ||
310 | &add ($carry,"eax"); | ||
311 | &lea ($j,&DWP(1,$j)); | ||
312 | &adc ("edx",0); | ||
313 | &mov ("eax",&DWP(0,$inp,$j,4)); # ap[j+1] | ||
314 | &cmp ($j,$num); | ||
315 | &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j]= | ||
316 | &jl (&label("mull")); | ||
317 | |||
318 | &mov ($carry,"edx"); | ||
319 | &mul ($word); # ap[num-1]*bp[0] | ||
320 | &mov ($word,$_n0); | ||
321 | &add ("eax",$carry); | ||
322 | &mov ($inp,$_np); | ||
323 | &adc ("edx",0); | ||
324 | &imul ($word,&DWP($frame,"esp")); # n0*tp[0] | ||
325 | |||
326 | &mov (&DWP($frame,"esp",$num,4),"eax"); # tp[num-1]= | ||
327 | &xor ($j,$j); | ||
328 | &mov (&DWP($frame+4,"esp",$num,4),"edx"); # tp[num]= | ||
329 | &mov (&DWP($frame+8,"esp",$num,4),$j); # tp[num+1]= | ||
330 | |||
331 | &mov ("eax",&DWP(0,$inp)); # np[0] | ||
332 | &mul ($word); # np[0]*m | ||
333 | &add ("eax",&DWP($frame,"esp")); # +=tp[0] | ||
334 | &mov ("eax",&DWP(4,$inp)); # np[1] | ||
335 | &adc ("edx",0); | ||
336 | &inc ($j); | ||
337 | |||
338 | &jmp (&label("2ndmadd")); | ||
339 | |||
340 | &set_label("1stmadd",16); | ||
341 | &mov ($carry,"edx"); | ||
342 | &mul ($word); # ap[j]*bp[i] | ||
343 | &add ($carry,&DWP($frame,"esp",$j,4)); # +=tp[j] | ||
344 | &lea ($j,&DWP(1,$j)); | ||
345 | &adc ("edx",0); | ||
346 | &add ($carry,"eax"); | ||
347 | &mov ("eax",&DWP(0,$inp,$j,4)); # ap[j+1] | ||
348 | &adc ("edx",0); | ||
349 | &cmp ($j,$num); | ||
350 | &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j]= | ||
351 | &jl (&label("1stmadd")); | ||
352 | |||
353 | &mov ($carry,"edx"); | ||
354 | &mul ($word); # ap[num-1]*bp[i] | ||
355 | &add ("eax",&DWP($frame,"esp",$num,4)); # +=tp[num-1] | ||
356 | &mov ($word,$_n0); | ||
357 | &adc ("edx",0); | ||
358 | &mov ($inp,$_np); | ||
359 | &add ($carry,"eax"); | ||
360 | &adc ("edx",0); | ||
361 | &imul ($word,&DWP($frame,"esp")); # n0*tp[0] | ||
362 | |||
363 | &xor ($j,$j); | ||
364 | &add ("edx",&DWP($frame+4,"esp",$num,4)); # carry+=tp[num] | ||
365 | &mov (&DWP($frame,"esp",$num,4),$carry); # tp[num-1]= | ||
366 | &adc ($j,0); | ||
367 | &mov ("eax",&DWP(0,$inp)); # np[0] | ||
368 | &mov (&DWP($frame+4,"esp",$num,4),"edx"); # tp[num]= | ||
369 | &mov (&DWP($frame+8,"esp",$num,4),$j); # tp[num+1]= | ||
370 | |||
371 | &mul ($word); # np[0]*m | ||
372 | &add ("eax",&DWP($frame,"esp")); # +=tp[0] | ||
373 | &mov ("eax",&DWP(4,$inp)); # np[1] | ||
374 | &adc ("edx",0); | ||
375 | &mov ($j,1); | ||
376 | |||
377 | &set_label("2ndmadd",16); | ||
378 | &mov ($carry,"edx"); | ||
379 | &mul ($word); # np[j]*m | ||
380 | &add ($carry,&DWP($frame,"esp",$j,4)); # +=tp[j] | ||
381 | &lea ($j,&DWP(1,$j)); | ||
382 | &adc ("edx",0); | ||
383 | &add ($carry,"eax"); | ||
384 | &mov ("eax",&DWP(0,$inp,$j,4)); # np[j+1] | ||
385 | &adc ("edx",0); | ||
386 | &cmp ($j,$num); | ||
387 | &mov (&DWP($frame-8,"esp",$j,4),$carry); # tp[j-1]= | ||
388 | &jl (&label("2ndmadd")); | ||
389 | |||
390 | &mov ($carry,"edx"); | ||
391 | &mul ($word); # np[j]*m | ||
392 | &add ($carry,&DWP($frame,"esp",$num,4)); # +=tp[num-1] | ||
393 | &adc ("edx",0); | ||
394 | &add ($carry,"eax"); | ||
395 | &adc ("edx",0); | ||
396 | &mov (&DWP($frame-4,"esp",$num,4),$carry); # tp[num-2]= | ||
397 | |||
398 | &xor ("eax","eax"); | ||
399 | &mov ($j,$_bp); # &bp[i] | ||
400 | &add ("edx",&DWP($frame+4,"esp",$num,4)); # carry+=tp[num] | ||
401 | &adc ("eax",&DWP($frame+8,"esp",$num,4)); # +=tp[num+1] | ||
402 | &lea ($j,&DWP(4,$j)); | ||
403 | &mov (&DWP($frame,"esp",$num,4),"edx"); # tp[num-1]= | ||
404 | &cmp ($j,$_bpend); | ||
405 | &mov (&DWP($frame+4,"esp",$num,4),"eax"); # tp[num]= | ||
406 | &je (&label("common_tail")); | ||
407 | |||
408 | &mov ($word,&DWP(0,$j)); # bp[i+1] | ||
409 | &mov ($inp,$_ap); | ||
410 | &mov ($_bp,$j); # &bp[++i] | ||
411 | &xor ($j,$j); | ||
412 | &xor ("edx","edx"); | ||
413 | &mov ("eax",&DWP(0,$inp)); | ||
414 | &jmp (&label("1stmadd")); | ||
415 | |||
416 | &set_label("bn_sqr_mont",16); | ||
417 | $sbit=$num; | ||
418 | &mov ($_num,$num); | ||
419 | &mov ($_bp,$j); # i=0 | ||
420 | |||
421 | &mov ("eax",$word); # ap[0] | ||
422 | &mul ($word); # ap[0]*ap[0] | ||
423 | &mov (&DWP($frame,"esp"),"eax"); # tp[0]= | ||
424 | &mov ($sbit,"edx"); | ||
425 | &shr ("edx",1); | ||
426 | &and ($sbit,1); | ||
427 | &inc ($j); | ||
428 | &set_label("sqr",16); | ||
429 | &mov ("eax",&DWP(0,$inp,$j,4)); # ap[j] | ||
430 | &mov ($carry,"edx"); | ||
431 | &mul ($word); # ap[j]*ap[0] | ||
432 | &add ("eax",$carry); | ||
433 | &lea ($j,&DWP(1,$j)); | ||
434 | &adc ("edx",0); | ||
435 | &lea ($carry,&DWP(0,$sbit,"eax",2)); | ||
436 | &shr ("eax",31); | ||
437 | &cmp ($j,$_num); | ||
438 | &mov ($sbit,"eax"); | ||
439 | &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j]= | ||
440 | &jl (&label("sqr")); | ||
441 | |||
442 | &mov ("eax",&DWP(0,$inp,$j,4)); # ap[num-1] | ||
443 | &mov ($carry,"edx"); | ||
444 | &mul ($word); # ap[num-1]*ap[0] | ||
445 | &add ("eax",$carry); | ||
446 | &mov ($word,$_n0); | ||
447 | &adc ("edx",0); | ||
448 | &mov ($inp,$_np); | ||
449 | &lea ($carry,&DWP(0,$sbit,"eax",2)); | ||
450 | &imul ($word,&DWP($frame,"esp")); # n0*tp[0] | ||
451 | &shr ("eax",31); | ||
452 | &mov (&DWP($frame,"esp",$j,4),$carry); # tp[num-1]= | ||
453 | |||
454 | &lea ($carry,&DWP(0,"eax","edx",2)); | ||
455 | &mov ("eax",&DWP(0,$inp)); # np[0] | ||
456 | &shr ("edx",31); | ||
457 | &mov (&DWP($frame+4,"esp",$j,4),$carry); # tp[num]= | ||
458 | &mov (&DWP($frame+8,"esp",$j,4),"edx"); # tp[num+1]= | ||
459 | |||
460 | &mul ($word); # np[0]*m | ||
461 | &add ("eax",&DWP($frame,"esp")); # +=tp[0] | ||
462 | &mov ($num,$j); | ||
463 | &adc ("edx",0); | ||
464 | &mov ("eax",&DWP(4,$inp)); # np[1] | ||
465 | &mov ($j,1); | ||
466 | |||
467 | &set_label("3rdmadd",16); | ||
468 | &mov ($carry,"edx"); | ||
469 | &mul ($word); # np[j]*m | ||
470 | &add ($carry,&DWP($frame,"esp",$j,4)); # +=tp[j] | ||
471 | &adc ("edx",0); | ||
472 | &add ($carry,"eax"); | ||
473 | &mov ("eax",&DWP(4,$inp,$j,4)); # np[j+1] | ||
474 | &adc ("edx",0); | ||
475 | &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j-1]= | ||
476 | |||
477 | &mov ($carry,"edx"); | ||
478 | &mul ($word); # np[j+1]*m | ||
479 | &add ($carry,&DWP($frame+4,"esp",$j,4)); # +=tp[j+1] | ||
480 | &lea ($j,&DWP(2,$j)); | ||
481 | &adc ("edx",0); | ||
482 | &add ($carry,"eax"); | ||
483 | &mov ("eax",&DWP(0,$inp,$j,4)); # np[j+2] | ||
484 | &adc ("edx",0); | ||
485 | &cmp ($j,$num); | ||
486 | &mov (&DWP($frame-8,"esp",$j,4),$carry); # tp[j]= | ||
487 | &jl (&label("3rdmadd")); | ||
488 | |||
489 | &mov ($carry,"edx"); | ||
490 | &mul ($word); # np[j]*m | ||
491 | &add ($carry,&DWP($frame,"esp",$num,4)); # +=tp[num-1] | ||
492 | &adc ("edx",0); | ||
493 | &add ($carry,"eax"); | ||
494 | &adc ("edx",0); | ||
495 | &mov (&DWP($frame-4,"esp",$num,4),$carry); # tp[num-2]= | ||
496 | |||
497 | &mov ($j,$_bp); # i | ||
498 | &xor ("eax","eax"); | ||
499 | &mov ($inp,$_ap); | ||
500 | &add ("edx",&DWP($frame+4,"esp",$num,4)); # carry+=tp[num] | ||
501 | &adc ("eax",&DWP($frame+8,"esp",$num,4)); # +=tp[num+1] | ||
502 | &mov (&DWP($frame,"esp",$num,4),"edx"); # tp[num-1]= | ||
503 | &cmp ($j,$num); | ||
504 | &mov (&DWP($frame+4,"esp",$num,4),"eax"); # tp[num]= | ||
505 | &je (&label("common_tail")); | ||
506 | |||
507 | &mov ($word,&DWP(4,$inp,$j,4)); # ap[i] | ||
508 | &lea ($j,&DWP(1,$j)); | ||
509 | &mov ("eax",$word); | ||
510 | &mov ($_bp,$j); # ++i | ||
511 | &mul ($word); # ap[i]*ap[i] | ||
512 | &add ("eax",&DWP($frame,"esp",$j,4)); # +=tp[i] | ||
513 | &adc ("edx",0); | ||
514 | &mov (&DWP($frame,"esp",$j,4),"eax"); # tp[i]= | ||
515 | &xor ($carry,$carry); | ||
516 | &cmp ($j,$num); | ||
517 | &lea ($j,&DWP(1,$j)); | ||
518 | &je (&label("sqrlast")); | ||
519 | |||
520 | &mov ($sbit,"edx"); # zaps $num | ||
521 | &shr ("edx",1); | ||
522 | &and ($sbit,1); | ||
523 | &set_label("sqradd",16); | ||
524 | &mov ("eax",&DWP(0,$inp,$j,4)); # ap[j] | ||
525 | &mov ($carry,"edx"); | ||
526 | &mul ($word); # ap[j]*ap[i] | ||
527 | &add ("eax",$carry); | ||
528 | &lea ($carry,&DWP(0,"eax","eax")); | ||
529 | &adc ("edx",0); | ||
530 | &shr ("eax",31); | ||
531 | &add ($carry,&DWP($frame,"esp",$j,4)); # +=tp[j] | ||
532 | &lea ($j,&DWP(1,$j)); | ||
533 | &adc ("eax",0); | ||
534 | &add ($carry,$sbit); | ||
535 | &adc ("eax",0); | ||
536 | &cmp ($j,$_num); | ||
537 | &mov (&DWP($frame-4,"esp",$j,4),$carry); # tp[j]= | ||
538 | &mov ($sbit,"eax"); | ||
539 | &jle (&label("sqradd")); | ||
540 | |||
541 | &mov ($carry,"edx"); | ||
542 | &lea ("edx",&DWP(0,$sbit,"edx",2)); | ||
543 | &shr ($carry,31); | ||
544 | &set_label("sqrlast"); | ||
545 | &mov ($word,$_n0); | ||
546 | &mov ($inp,$_np); | ||
547 | &imul ($word,&DWP($frame,"esp")); # n0*tp[0] | ||
548 | |||
549 | &add ("edx",&DWP($frame,"esp",$j,4)); # +=tp[num] | ||
550 | &mov ("eax",&DWP(0,$inp)); # np[0] | ||
551 | &adc ($carry,0); | ||
552 | &mov (&DWP($frame,"esp",$j,4),"edx"); # tp[num]= | ||
553 | &mov (&DWP($frame+4,"esp",$j,4),$carry); # tp[num+1]= | ||
554 | |||
555 | &mul ($word); # np[0]*m | ||
556 | &add ("eax",&DWP($frame,"esp")); # +=tp[0] | ||
557 | &lea ($num,&DWP(-1,$j)); | ||
558 | &adc ("edx",0); | ||
559 | &mov ($j,1); | ||
560 | &mov ("eax",&DWP(4,$inp)); # np[1] | ||
561 | |||
562 | &jmp (&label("3rdmadd")); | ||
563 | } | ||
564 | |||
565 | &set_label("common_tail",16); | ||
566 | &mov ($np,$_np); # load modulus pointer | ||
567 | &mov ($rp,$_rp); # load result pointer | ||
568 | &lea ($tp,&DWP($frame,"esp")); # [$ap and $bp are zapped] | ||
569 | |||
570 | &mov ("eax",&DWP(0,$tp)); # tp[0] | ||
571 | &mov ($j,$num); # j=num-1 | ||
572 | &xor ($i,$i); # i=0 and clear CF! | ||
573 | |||
574 | &set_label("sub",16); | ||
575 | &sbb ("eax",&DWP(0,$np,$i,4)); | ||
576 | &mov (&DWP(0,$rp,$i,4),"eax"); # rp[i]=tp[i]-np[i] | ||
577 | &dec ($j); # doesn't affect CF! | ||
578 | &mov ("eax",&DWP(4,$tp,$i,4)); # tp[i+1] | ||
579 | &lea ($i,&DWP(1,$i)); # i++ | ||
580 | &jge (&label("sub")); | ||
581 | |||
582 | &sbb ("eax",0); # handle upmost overflow bit | ||
583 | &and ($tp,"eax"); | ||
584 | ¬ ("eax"); | ||
585 | &mov ($np,$rp); | ||
586 | &and ($np,"eax"); | ||
587 | &or ($tp,$np); # tp=carry?tp:rp | ||
588 | |||
589 | &set_label("copy",16); # copy or in-place refresh | ||
590 | &mov ("eax",&DWP(0,$tp,$num,4)); | ||
591 | &mov (&DWP(0,$rp,$num,4),"eax"); # rp[i]=tp[i] | ||
592 | &mov (&DWP($frame,"esp",$num,4),$j); # zap temporary vector | ||
593 | &dec ($num); | ||
594 | &jge (&label("copy")); | ||
595 | |||
596 | &mov ("esp",$_sp); # pull saved stack pointer | ||
597 | &mov ("eax",1); | ||
598 | &set_label("just_leave"); | ||
599 | &function_end("bn_mul_mont"); | ||
600 | |||
601 | &asciz("Montgomery Multiplication for x86, CRYPTOGAMS by <appro\@openssl.org>"); | ||
602 | |||
603 | &asm_finish(); | ||
diff --git a/src/lib/libcrypto/buffer/Makefile b/src/lib/libcrypto/buffer/Makefile index 4b53c595a3..9f3a88d2d6 100644 --- a/src/lib/libcrypto/buffer/Makefile +++ b/src/lib/libcrypto/buffer/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -81,12 +78,13 @@ buf_err.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
81 | buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 78 | buf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
82 | buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 79 | buf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
83 | buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 80 | buf_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
84 | buf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 81 | buf_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
85 | buf_err.o: ../../include/openssl/symhacks.h buf_err.c | 82 | buf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
83 | buf_err.o: buf_err.c | ||
86 | buffer.o: ../../e_os.h ../../include/openssl/bio.h | 84 | buffer.o: ../../e_os.h ../../include/openssl/bio.h |
87 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 85 | buffer.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
88 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 86 | buffer.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
89 | buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 87 | buffer.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
90 | buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 88 | buffer.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
91 | buffer.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 89 | buffer.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
92 | buffer.o: ../cryptlib.h buffer.c | 90 | buffer.o: ../../include/openssl/symhacks.h ../cryptlib.h buffer.c |
diff --git a/src/lib/libcrypto/cast/Makefile b/src/lib/libcrypto/cast/Makefile index b388f6271c..149956ee90 100644 --- a/src/lib/libcrypto/cast/Makefile +++ b/src/lib/libcrypto/cast/Makefile | |||
@@ -8,23 +8,14 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
19 | CAST_ENC=c_enc.o | 14 | CAST_ENC=c_enc.o |
20 | # or use | ||
21 | #CAST_ENC=asm/cx86-elf.o | ||
22 | #CAST_ENC=asm/cx86-out.o | ||
23 | #CAST_ENC=asm/cx86-sol.o | ||
24 | #CAST_ENC=asm/cx86bdsi.o | ||
25 | 15 | ||
26 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
27 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
18 | AFLAGS= $(ASFLAGS) | ||
28 | 19 | ||
29 | GENERAL=Makefile | 20 | GENERAL=Makefile |
30 | TEST=casttest.c | 21 | TEST=casttest.c |
@@ -51,20 +42,15 @@ lib: $(LIBOBJ) | |||
51 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
52 | @touch lib | 43 | @touch lib |
53 | 44 | ||
54 | # elf | 45 | # ELF |
55 | asm/cx86-elf.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 |
56 | (cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > cx86-elf.s) | 47 | (cd asm; $(PERL) cast-586.pl elf $(CLAGS) $(PROCESSOR) > ../$@) |
57 | 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) > ../$@) | ||
58 | # a.out | 51 | # a.out |
59 | asm/cx86-out.o: asm/cx86unix.cpp | 52 | cx86-out.s: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
60 | $(CPP) -DOUT asm/cx86unix.cpp | as -o asm/cx86-out.o | 53 | (cd asm; $(PERL) cast-586.pl a.out $(CLAGS) $(PROCESSOR) > ../$@) |
61 | |||
62 | # bsdi | ||
63 | asm/cx86bsdi.o: asm/cx86unix.cpp | ||
64 | $(CPP) -DBSDI asm/cx86unix.cpp | sed 's/ :/:/' | as -o asm/cx86bsdi.o | ||
65 | |||
66 | asm/cx86unix.cpp: asm/cast-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
67 | (cd asm; $(PERL) cast-586.pl cpp $(PROCESSOR) >cx86unix.cpp) | ||
68 | 54 | ||
69 | files: | 55 | files: |
70 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -75,6 +61,7 @@ links: | |||
75 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
76 | 62 | ||
77 | install: | 63 | install: |
64 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
78 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 65 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
79 | do \ | 66 | do \ |
80 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 67 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -90,6 +77,7 @@ lint: | |||
90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 77 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
91 | 78 | ||
92 | depend: | 79 | depend: |
80 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
93 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
94 | 82 | ||
95 | dclean: | 83 | dclean: |
@@ -97,7 +85,7 @@ dclean: | |||
97 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
98 | 86 | ||
99 | clean: | 87 | clean: |
100 | rm -f asm/cx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
101 | 89 | ||
102 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
103 | 91 | ||
@@ -114,8 +102,5 @@ c_ofb64.o: ../../e_os.h ../../include/openssl/cast.h | |||
114 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 102 | c_ofb64.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
115 | c_ofb64.o: c_ofb64.c cast_lcl.h | 103 | c_ofb64.o: c_ofb64.c cast_lcl.h |
116 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h | 104 | c_skey.o: ../../e_os.h ../../include/openssl/cast.h |
117 | c_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 105 | c_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
118 | c_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | ||
119 | c_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
120 | c_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
121 | c_skey.o: c_skey.c cast_lcl.h cast_s.h | 106 | c_skey.o: c_skey.c cast_lcl.h cast_s.h |
diff --git a/src/lib/libcrypto/comp/Makefile b/src/lib/libcrypto/comp/Makefile index df1babec5c..efda832dce 100644 --- a/src/lib/libcrypto/comp/Makefile +++ b/src/lib/libcrypto/comp/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -54,6 +49,7 @@ links: | |||
54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 49 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
55 | 50 | ||
56 | install: | 51 | install: |
52 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 53 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
58 | do \ | 54 | do \ |
59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 55 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -69,6 +65,7 @@ lint: | |||
69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 65 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
70 | 66 | ||
71 | depend: | 67 | depend: |
68 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) |
73 | 70 | ||
74 | dclean: | 71 | dclean: |
@@ -81,33 +78,31 @@ clean: | |||
81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
82 | 79 | ||
83 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 80 | c_rle.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
84 | c_rle.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 81 | c_rle.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h |
85 | c_rle.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 82 | c_rle.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h |
86 | c_rle.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 83 | c_rle.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
87 | c_rle.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 84 | c_rle.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
88 | c_rle.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 85 | c_rle.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
89 | c_rle.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h c_rle.c | 86 | c_rle.o: ../../include/openssl/symhacks.h c_rle.c |
90 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 87 | c_zlib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
91 | c_zlib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 88 | c_zlib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h |
92 | c_zlib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 89 | c_zlib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
93 | c_zlib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 90 | c_zlib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
94 | c_zlib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 91 | c_zlib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
95 | c_zlib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 92 | c_zlib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
96 | c_zlib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 93 | c_zlib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
97 | c_zlib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 94 | c_zlib.o: ../../include/openssl/symhacks.h c_zlib.c |
98 | c_zlib.o: c_zlib.c | ||
99 | comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h | 95 | comp_err.o: ../../include/openssl/bio.h ../../include/openssl/comp.h |
100 | comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 96 | comp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
101 | comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 97 | comp_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
102 | comp_err.o: ../../include/openssl/opensslconf.h | 98 | comp_err.o: ../../include/openssl/opensslconf.h |
103 | comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 99 | comp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
104 | comp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 100 | comp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
105 | comp_err.o: comp_err.c | 101 | comp_err.o: ../../include/openssl/symhacks.h comp_err.c |
106 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 102 | comp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
107 | comp_lib.o: ../../include/openssl/bn.h ../../include/openssl/comp.h | 103 | comp_lib.o: ../../include/openssl/comp.h ../../include/openssl/crypto.h |
108 | comp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 104 | comp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/obj_mac.h |
109 | comp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 105 | comp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
110 | comp_lib.o: ../../include/openssl/opensslconf.h | ||
111 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 106 | comp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
112 | comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 107 | comp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
113 | comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c | 108 | comp_lib.o: ../../include/openssl/symhacks.h comp_lib.c |
diff --git a/src/lib/libcrypto/conf/Makefile b/src/lib/libcrypto/conf/Makefile index 403d12b28c..78bb324106 100644 --- a/src/lib/libcrypto/conf/Makefile +++ b/src/lib/libcrypto/conf/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -54,6 +49,7 @@ links: | |||
54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 49 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
55 | 50 | ||
56 | install: | 51 | install: |
52 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 53 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
58 | do \ | 54 | do \ |
59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 55 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -69,6 +65,7 @@ lint: | |||
69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 65 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
70 | 66 | ||
71 | depend: | 67 | depend: |
68 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) |
73 | 70 | ||
74 | dclean: | 71 | dclean: |
@@ -84,98 +81,72 @@ conf_api.o: ../../e_os.h ../../include/openssl/bio.h | |||
84 | conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | 81 | conf_api.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h |
85 | conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 82 | conf_api.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
86 | conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 83 | conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
87 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 84 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
88 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 85 | conf_api.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
89 | conf_api.o: conf_api.c | 86 | conf_api.o: ../../include/openssl/symhacks.h conf_api.c |
90 | conf_def.o: ../../e_os.h ../../include/openssl/bio.h | 87 | conf_def.o: ../../e_os.h ../../include/openssl/bio.h |
91 | conf_def.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 88 | conf_def.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
92 | conf_def.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h | 89 | conf_def.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h |
93 | conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 90 | conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
94 | conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 91 | conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
95 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 92 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
96 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 93 | conf_def.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
97 | conf_def.o: ../cryptlib.h conf_def.c conf_def.h | 94 | conf_def.o: ../../include/openssl/symhacks.h ../cryptlib.h conf_def.c |
95 | conf_def.o: conf_def.h | ||
98 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | 96 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h |
99 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 97 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
100 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 98 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
101 | conf_err.o: ../../include/openssl/opensslconf.h | 99 | conf_err.o: ../../include/openssl/opensslconf.h |
102 | conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 100 | conf_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
103 | conf_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 101 | conf_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
104 | conf_err.o: conf_err.c | 102 | conf_err.o: ../../include/openssl/symhacks.h conf_err.c |
105 | conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | 103 | conf_lib.o: ../../include/openssl/bio.h ../../include/openssl/conf.h |
106 | conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h | 104 | conf_lib.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h |
107 | conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 105 | conf_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
108 | conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 106 | conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
109 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 107 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
110 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 108 | conf_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
111 | conf_lib.o: conf_lib.c | 109 | conf_lib.o: ../../include/openssl/symhacks.h conf_lib.c |
112 | conf_mall.o: ../../e_os.h ../../include/openssl/aes.h | 110 | conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h |
113 | conf_mall.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 111 | conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
114 | conf_mall.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
115 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
116 | conf_mall.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 112 | conf_mall.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
117 | conf_mall.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
118 | conf_mall.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
119 | conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 113 | conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
120 | conf_mall.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 114 | conf_mall.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
121 | conf_mall.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 115 | conf_mall.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
122 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 116 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
123 | conf_mall.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 117 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
124 | conf_mall.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
125 | conf_mall.o: ../../include/openssl/objects.h | 118 | conf_mall.o: ../../include/openssl/objects.h |
126 | conf_mall.o: ../../include/openssl/opensslconf.h | 119 | conf_mall.o: ../../include/openssl/opensslconf.h |
127 | 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 |
128 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 121 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
129 | conf_mall.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
130 | conf_mall.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
131 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
132 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 122 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
133 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 123 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
134 | conf_mall.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
135 | conf_mall.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mall.c | 124 | conf_mall.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mall.c |
136 | conf_mod.o: ../../e_os.h ../../include/openssl/aes.h | 125 | conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h |
137 | conf_mod.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 126 | conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
138 | conf_mod.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
139 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
140 | conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 127 | conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
141 | conf_mod.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
142 | conf_mod.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
143 | 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 |
144 | conf_mod.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 129 | conf_mod.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
145 | conf_mod.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 130 | conf_mod.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
146 | conf_mod.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 131 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
147 | conf_mod.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
148 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 132 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
149 | conf_mod.o: ../../include/openssl/opensslconf.h | 133 | conf_mod.o: ../../include/openssl/opensslconf.h |
150 | 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 |
151 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 135 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
152 | conf_mod.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 136 | conf_mod.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
153 | conf_mod.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 137 | conf_mod.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
154 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 138 | conf_mod.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mod.c |
155 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 139 | conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h |
156 | conf_mod.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 140 | conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
157 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
158 | conf_mod.o: ../cryptlib.h conf_mod.c | ||
159 | conf_sap.o: ../../e_os.h ../../include/openssl/aes.h | ||
160 | conf_sap.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
161 | conf_sap.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
162 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
163 | conf_sap.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 141 | conf_sap.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
164 | conf_sap.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
165 | conf_sap.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
166 | conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 142 | conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
167 | conf_sap.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 143 | conf_sap.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
168 | conf_sap.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 144 | conf_sap.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
169 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 145 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
170 | conf_sap.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 146 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
171 | conf_sap.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
172 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 147 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
173 | 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 |
174 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 149 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
175 | conf_sap.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
176 | conf_sap.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
177 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
178 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
179 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 151 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
180 | conf_sap.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
181 | conf_sap.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_sap.c | 152 | conf_sap.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_sap.c |
diff --git a/src/lib/libcrypto/des/FILES0 b/src/lib/libcrypto/des/FILES0 index 1c2e1f75b9..4c7ea2de7a 100644 --- a/src/lib/libcrypto/des/FILES0 +++ b/src/lib/libcrypto/des/FILES0 | |||
@@ -8,7 +8,7 @@ README - What this package is. | |||
8 | VERSION - Which version this is and what was changed. | 8 | VERSION - Which version this is and what was changed. |
9 | KERBEROS - Kerberos version 4 notes. | 9 | KERBEROS - Kerberos version 4 notes. |
10 | Makefile.PL - An old makefile to build with perl5, not current. | 10 | Makefile.PL - An old makefile to build with perl5, not current. |
11 | Makefile - The SSLeay makefile | 11 | Makefile.ssl - The SSLeay makefile |
12 | Makefile.uni - The normal unix makefile. | 12 | Makefile.uni - The normal unix makefile. |
13 | GNUmakefile - The makefile for use with glibc. | 13 | GNUmakefile - The makefile for use with glibc. |
14 | makefile.bc - A Borland C makefile | 14 | makefile.bc - A Borland C makefile |
diff --git a/src/lib/libcrypto/des/INSTALL b/src/lib/libcrypto/des/INSTALL index 32457d775c..8aebdfe110 100644 --- a/src/lib/libcrypto/des/INSTALL +++ b/src/lib/libcrypto/des/INSTALL | |||
@@ -25,7 +25,7 @@ and then you can use the 'DES_PTR' option. | |||
25 | 25 | ||
26 | The file options.txt has the options listed for best speed on quite a | 26 | The file options.txt has the options listed for best speed on quite a |
27 | few systems. Look and the options (UNROLL, PTR, RISC2 etc) and then | 27 | few systems. Look and the options (UNROLL, PTR, RISC2 etc) and then |
28 | turn on the relevent option in the Makefile | 28 | turn on the relevant option in the Makefile. |
29 | 29 | ||
30 | There are some special Makefile targets that make life easier. | 30 | There are some special Makefile targets that make life easier. |
31 | make cc - standard cc build | 31 | make cc - standard cc build |
diff --git a/src/lib/libcrypto/des/Makefile b/src/lib/libcrypto/des/Makefile index 800af0b123..523dfe38f2 100644 --- a/src/lib/libcrypto/des/Makefile +++ b/src/lib/libcrypto/des/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES=-I$(TOP) -I../../include | 9 | INCLUDES=-I$(TOP) -I../../include |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | RANLIB= ranlib | 13 | RANLIB= ranlib |
@@ -22,6 +17,7 @@ DES_ENC= des_enc.o fcrypt_b.o | |||
22 | 17 | ||
23 | CFLAGS= $(INCLUDES) $(CFLAG) | 18 | CFLAGS= $(INCLUDES) $(CFLAG) |
24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 19 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
20 | AFLAGS= $(ASFLAGS) | ||
25 | 21 | ||
26 | GENERAL=Makefile | 22 | GENERAL=Makefile |
27 | TEST=destest.c | 23 | TEST=destest.c |
@@ -65,32 +61,24 @@ lib: $(LIBOBJ) | |||
65 | des: des.o cbc3_enc.o lib | 61 | des: des.o cbc3_enc.o lib |
66 | $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB) | 62 | $(CC) $(CFLAGS) -o des des.o cbc3_enc.o $(LIB) |
67 | 63 | ||
68 | # elf | 64 | des_enc-sparc.S: asm/des_enc.m4 |
69 | asm/dx86-elf.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 65 | m4 -B 8192 asm/des_enc.m4 > des_enc-sparc.S |
70 | (cd asm; $(PERL) des-586.pl elf $(CFLAGS) > dx86-elf.s) | 66 | |
71 | 67 | # ELF | |
72 | asm/yx86-elf.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | 68 | dx86-elf.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
73 | (cd asm; $(PERL) crypt586.pl elf $(CFLAGS) > yx86-elf.s) | 69 | (cd asm; $(PERL) des-586.pl elf $(CFLAGS) > ../$@) |
74 | 70 | yx86-elf.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | |
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) > ../$@) | ||
75 | # a.out | 77 | # a.out |
76 | asm/dx86-out.o: asm/dx86unix.cpp | 78 | dx86-out.s: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
77 | $(CPP) -DOUT asm/dx86unix.cpp | as -o asm/dx86-out.o | 79 | (cd asm; $(PERL) des-586.pl a.out $(CFLAGS) > ../$@) |
78 | 80 | yx86-out.s: asm/crypt586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | |
79 | asm/yx86-out.o: asm/yx86unix.cpp | 81 | (cd asm; $(PERL) crypt586.pl a.out $(CFLAGS) > ../$@) |
80 | $(CPP) -DOUT asm/yx86unix.cpp | as -o asm/yx86-out.o | ||
81 | |||
82 | # bsdi | ||
83 | asm/dx86bsdi.o: asm/dx86unix.cpp | ||
84 | $(CPP) -DBSDI asm/dx86unix.cpp | sed 's/ :/:/' | as -o asm/dx86bsdi.o | ||
85 | |||
86 | asm/yx86bsdi.o: asm/yx86unix.cpp | ||
87 | $(CPP) -DBSDI asm/yx86unix.cpp | sed 's/ :/:/' | as -o asm/yx86bsdi.o | ||
88 | |||
89 | asm/dx86unix.cpp: asm/des-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
90 | (cd asm; $(PERL) des-586.pl cpp >dx86unix.cpp) | ||
91 | |||
92 | asm/yx86unix.cpp: asm/crypt586.pl ../perlasm/x86asm.pl | ||
93 | (cd asm; $(PERL) crypt586.pl cpp >yx86unix.cpp) | ||
94 | 82 | ||
95 | files: | 83 | files: |
96 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 84 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -100,9 +88,11 @@ links: | |||
100 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 88 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
101 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 89 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
102 | 90 | ||
103 | install: installs | 91 | # We need to use force because 'install' matches 'INSTALL' on case |
104 | 92 | # insensitive systems | |
105 | installs: | 93 | FRC.install: |
94 | install: FRC.install | ||
95 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
106 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 96 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
107 | do \ | 97 | do \ |
108 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 98 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -118,6 +108,7 @@ lint: | |||
118 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 108 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
119 | 109 | ||
120 | depend: | 110 | depend: |
111 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
121 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 112 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
122 | 113 | ||
123 | dclean: | 114 | dclean: |
@@ -125,83 +116,77 @@ dclean: | |||
125 | mv -f Makefile.new $(MAKEFILE) | 116 | mv -f Makefile.new $(MAKEFILE) |
126 | 117 | ||
127 | clean: | 118 | clean: |
128 | rm -f asm/dx86unix.cpp asm/yx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff | 119 | rm -f *.s *.o *.obj des lib tags core .pure .nfs* *.old *.bak fluff |
129 | 120 | ||
130 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 121 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
131 | 122 | ||
132 | cbc_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 123 | cbc_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
133 | cbc_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 124 | cbc_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
134 | cbc_cksm.o: ../../include/openssl/opensslconf.h | 125 | cbc_cksm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
135 | cbc_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
136 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 126 | cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
137 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 127 | cbc_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
138 | cbc_cksm.o: cbc_cksm.c des_locl.h | 128 | cbc_cksm.o: cbc_cksm.c des_locl.h |
139 | cbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 129 | cbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
140 | cbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 130 | cbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
141 | cbc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 131 | cbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
142 | cbc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 132 | cbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
143 | cbc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 133 | cbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
144 | cbc_enc.o: ../../include/openssl/ui_compat.h cbc_enc.c des_locl.h ncbc_enc.c | 134 | cbc_enc.o: cbc_enc.c des_locl.h ncbc_enc.c |
145 | cfb64ede.o: ../../e_os.h ../../include/openssl/crypto.h | 135 | cfb64ede.o: ../../e_os.h ../../include/openssl/des.h |
146 | cfb64ede.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 136 | cfb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
147 | cfb64ede.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 137 | cfb64ede.o: ../../include/openssl/opensslconf.h |
148 | cfb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 138 | cfb64ede.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
149 | cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 139 | cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
150 | cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 140 | cfb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
151 | cfb64ede.o: cfb64ede.c des_locl.h | 141 | cfb64ede.o: cfb64ede.c des_locl.h |
152 | cfb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 142 | cfb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
153 | cfb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 143 | cfb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
154 | cfb64enc.o: ../../include/openssl/opensslconf.h | 144 | cfb64enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
155 | cfb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
156 | cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 145 | cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
157 | cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 146 | cfb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
158 | cfb64enc.o: cfb64enc.c des_locl.h | 147 | cfb64enc.o: cfb64enc.c des_locl.h |
159 | cfb_enc.o: ../../e_os.h ../../include/openssl/crypto.h | 148 | cfb_enc.o: ../../e_os.h ../../include/openssl/des.h |
160 | cfb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 149 | cfb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
161 | cfb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 150 | cfb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/ossl_typ.h |
162 | cfb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 151 | cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
163 | cfb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 152 | cfb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
164 | cfb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 153 | cfb_enc.o: ../../include/openssl/ui_compat.h cfb_enc.c des_locl.h |
165 | cfb_enc.o: cfb_enc.c des_locl.h | 154 | des_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
166 | des_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 155 | des_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
167 | des_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 156 | des_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
168 | des_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 157 | des_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
169 | des_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 158 | des_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
170 | des_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 159 | des_enc.o: des_enc.c des_locl.h ncbc_enc.c |
171 | des_enc.o: ../../include/openssl/ui_compat.h des_enc.c des_locl.h ncbc_enc.c | 160 | des_old.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
172 | des_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 161 | des_old.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
173 | des_old.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
174 | des_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
175 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 162 | des_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
176 | des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 163 | des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
177 | des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 164 | des_old.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
178 | des_old.o: ../../include/openssl/ui_compat.h des_old.c | 165 | des_old.o: ../../include/openssl/ui_compat.h des_old.c |
179 | des_old2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 166 | des_old2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
180 | des_old2.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 167 | des_old2.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
181 | des_old2.o: ../../include/openssl/opensslconf.h | 168 | des_old2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
182 | des_old2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 169 | des_old2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
183 | des_old2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 170 | des_old2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
184 | des_old2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 171 | des_old2.o: ../../include/openssl/ui_compat.h des_old2.c |
185 | des_old2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 172 | ecb3_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
186 | des_old2.o: des_old2.c | 173 | ecb3_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
187 | ecb3_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 174 | ecb3_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
188 | ecb3_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | ||
189 | ecb3_enc.o: ../../include/openssl/opensslconf.h | ||
190 | ecb3_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
191 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 175 | ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
192 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 176 | ecb3_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
193 | ecb3_enc.o: des_locl.h ecb3_enc.c | 177 | ecb3_enc.o: des_locl.h ecb3_enc.c |
194 | ecb_enc.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 178 | ecb_enc.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
195 | ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 179 | ecb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
196 | ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 180 | ecb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
197 | ecb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 181 | ecb_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
198 | ecb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 182 | ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
199 | ecb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 183 | ecb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
200 | ecb_enc.o: des_locl.h des_ver.h ecb_enc.c spr.h | 184 | ecb_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h ecb_enc.c |
201 | ede_cbcm_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 185 | ecb_enc.o: spr.h |
202 | ede_cbcm_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 186 | ede_cbcm_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
187 | ede_cbcm_enc.o: ../../include/openssl/e_os2.h | ||
203 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h | 188 | ede_cbcm_enc.o: ../../include/openssl/opensslconf.h |
204 | ede_cbcm_enc.o: ../../include/openssl/opensslv.h | 189 | ede_cbcm_enc.o: ../../include/openssl/ossl_typ.h |
205 | ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 190 | ede_cbcm_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
206 | ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 191 | ede_cbcm_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
207 | ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c | 192 | ede_cbcm_enc.o: ../../include/openssl/ui_compat.h des_locl.h ede_cbcm_enc.c |
@@ -210,10 +195,11 @@ enc_read.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
210 | enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 195 | enc_read.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
211 | enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 196 | enc_read.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
212 | enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 197 | enc_read.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
213 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 198 | enc_read.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
214 | enc_read.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 199 | enc_read.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
215 | enc_read.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 200 | enc_read.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
216 | enc_read.o: ../cryptlib.h des_locl.h enc_read.c | 201 | enc_read.o: ../../include/openssl/ui_compat.h ../cryptlib.h des_locl.h |
202 | enc_read.o: enc_read.c | ||
217 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h | 203 | enc_writ.o: ../../e_os.h ../../include/openssl/bio.h |
218 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 204 | enc_writ.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
219 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 205 | enc_writ.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
@@ -224,91 +210,83 @@ enc_writ.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | |||
224 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 210 | enc_writ.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
225 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 211 | enc_writ.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
226 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c | 212 | enc_writ.o: ../cryptlib.h des_locl.h enc_writ.c |
227 | fcrypt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 213 | fcrypt.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
228 | fcrypt.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 214 | fcrypt.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
229 | fcrypt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 215 | fcrypt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
230 | fcrypt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 216 | fcrypt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
231 | fcrypt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 217 | fcrypt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
232 | fcrypt.o: ../../include/openssl/ui_compat.h des_locl.h fcrypt.c | 218 | fcrypt.o: des_locl.h fcrypt.c |
233 | fcrypt_b.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 219 | fcrypt_b.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
234 | fcrypt_b.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 220 | fcrypt_b.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
235 | fcrypt_b.o: ../../include/openssl/opensslconf.h | 221 | fcrypt_b.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
236 | fcrypt_b.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
237 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 222 | fcrypt_b.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
238 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 223 | fcrypt_b.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
239 | fcrypt_b.o: des_locl.h fcrypt_b.c | 224 | fcrypt_b.o: des_locl.h fcrypt_b.c |
240 | ofb64ede.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 225 | ofb64ede.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
241 | ofb64ede.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 226 | ofb64ede.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
242 | ofb64ede.o: ../../include/openssl/opensslconf.h | 227 | ofb64ede.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
243 | ofb64ede.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
244 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 228 | ofb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
245 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 229 | ofb64ede.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
246 | ofb64ede.o: des_locl.h ofb64ede.c | 230 | ofb64ede.o: des_locl.h ofb64ede.c |
247 | ofb64enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 231 | ofb64enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
248 | ofb64enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 232 | ofb64enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
249 | ofb64enc.o: ../../include/openssl/opensslconf.h | 233 | ofb64enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
250 | ofb64enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
251 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 234 | ofb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
252 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 235 | ofb64enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
253 | ofb64enc.o: des_locl.h ofb64enc.c | 236 | ofb64enc.o: des_locl.h ofb64enc.c |
254 | ofb_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 237 | ofb_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
255 | ofb_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 238 | ofb_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
256 | ofb_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 239 | ofb_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
257 | ofb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 240 | ofb_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
258 | ofb_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 241 | ofb_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
259 | ofb_enc.o: ../../include/openssl/ui_compat.h des_locl.h ofb_enc.c | 242 | ofb_enc.o: des_locl.h ofb_enc.c |
260 | pcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 243 | pcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
261 | pcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 244 | pcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
262 | pcbc_enc.o: ../../include/openssl/opensslconf.h | 245 | pcbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
263 | pcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
264 | pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 246 | pcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
265 | pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 247 | pcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
266 | pcbc_enc.o: des_locl.h pcbc_enc.c | 248 | pcbc_enc.o: des_locl.h pcbc_enc.c |
267 | qud_cksm.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 249 | qud_cksm.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
268 | qud_cksm.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 250 | qud_cksm.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
269 | qud_cksm.o: ../../include/openssl/opensslconf.h | 251 | qud_cksm.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
270 | qud_cksm.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
271 | qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 252 | qud_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
272 | qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 253 | qud_cksm.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
273 | qud_cksm.o: des_locl.h qud_cksm.c | 254 | qud_cksm.o: des_locl.h qud_cksm.c |
274 | rand_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 255 | rand_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
275 | rand_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 256 | rand_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
276 | rand_key.o: ../../include/openssl/opensslconf.h | 257 | rand_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
277 | rand_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 258 | rand_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
278 | rand_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 259 | rand_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
279 | rand_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 260 | rand_key.o: ../../include/openssl/ui_compat.h rand_key.c |
280 | rand_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
281 | rand_key.o: rand_key.c | ||
282 | read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 261 | read2pwd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
283 | read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 262 | read2pwd.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
284 | read2pwd.o: ../../include/openssl/opensslconf.h | 263 | read2pwd.o: ../../include/openssl/opensslconf.h |
285 | read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 264 | read2pwd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
286 | read2pwd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 265 | read2pwd.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
287 | read2pwd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 266 | read2pwd.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
288 | read2pwd.o: read2pwd.c | 267 | read2pwd.o: ../../include/openssl/ui_compat.h read2pwd.c |
289 | rpc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 268 | rpc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
290 | rpc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 269 | rpc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
291 | rpc_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 270 | rpc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
292 | rpc_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 271 | rpc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
293 | rpc_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 272 | rpc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
294 | rpc_enc.o: ../../include/openssl/ui_compat.h des_locl.h des_ver.h rpc_des.h | 273 | rpc_enc.o: des_locl.h des_ver.h rpc_des.h rpc_enc.c |
295 | rpc_enc.o: rpc_enc.c | 274 | set_key.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
296 | set_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 275 | set_key.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
297 | set_key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 276 | set_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
298 | set_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 277 | set_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
299 | set_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 278 | set_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
300 | set_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 279 | set_key.o: des_locl.h set_key.c |
301 | set_key.o: ../../include/openssl/ui_compat.h des_locl.h set_key.c | ||
302 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 280 | str2key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
303 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 281 | str2key.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
304 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 282 | str2key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
305 | str2key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 283 | str2key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
306 | str2key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 284 | str2key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
307 | str2key.o: ../../include/openssl/ui_compat.h des_locl.h str2key.c | 285 | str2key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
308 | xcbc_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 286 | str2key.o: des_locl.h str2key.c |
309 | xcbc_enc.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 287 | xcbc_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
310 | xcbc_enc.o: ../../include/openssl/opensslconf.h | 288 | xcbc_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
311 | xcbc_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 289 | xcbc_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
312 | xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 290 | xcbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
313 | xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 291 | xcbc_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
314 | xcbc_enc.o: des_locl.h xcbc_enc.c | 292 | xcbc_enc.o: des_locl.h xcbc_enc.c |
diff --git a/src/lib/libcrypto/dh/Makefile b/src/lib/libcrypto/dh/Makefile index 352678b94a..d368e33b4c 100644 --- a/src/lib/libcrypto/dh/Makefile +++ b/src/lib/libcrypto/dh/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -22,8 +17,8 @@ TEST= dhtest.c | |||
22 | APPS= | 17 | APPS= |
23 | 18 | ||
24 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c | 20 | LIBSRC= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c |
26 | LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o | 21 | LIBOBJ= dh_asn1.o dh_gen.o dh_key.o dh_lib.o dh_check.o dh_err.o dh_depr.o |
27 | 22 | ||
28 | SRC= $(LIBSRC) | 23 | SRC= $(LIBSRC) |
29 | 24 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -95,13 +92,21 @@ dh_check.o: ../../include/openssl/opensslconf.h | |||
95 | dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 92 | dh_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
96 | dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 93 | dh_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
97 | dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c | 94 | dh_check.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_check.c |
98 | dh_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 95 | dh_depr.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
99 | dh_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 96 | dh_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
100 | dh_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 97 | dh_depr.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h |
101 | dh_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 98 | dh_depr.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
102 | dh_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 99 | dh_depr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
103 | dh_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 100 | dh_depr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
104 | dh_err.o: ../../include/openssl/symhacks.h dh_err.c | 101 | dh_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
102 | dh_depr.o: ../cryptlib.h dh_depr.c | ||
103 | dh_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
104 | dh_err.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | ||
105 | dh_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
106 | dh_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
107 | dh_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
108 | dh_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
109 | dh_err.o: dh_err.c | ||
105 | dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 110 | dh_gen.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
106 | dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 111 | dh_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
107 | dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h | 112 | dh_gen.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h |
@@ -118,14 +123,11 @@ dh_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
118 | dh_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 123 | dh_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
119 | dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 124 | dh_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
120 | dh_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_key.c | 125 | dh_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_key.c |
121 | dh_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 126 | dh_lib.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
122 | dh_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 127 | dh_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
123 | dh_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 128 | dh_lib.o: ../../include/openssl/dh.h ../../include/openssl/e_os2.h |
124 | dh_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
125 | dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 129 | dh_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
126 | dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 130 | dh_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
127 | dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 131 | dh_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
128 | dh_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
129 | dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 132 | dh_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
130 | dh_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 133 | dh_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h dh_lib.c |
131 | dh_lib.o: ../cryptlib.h dh_lib.c | ||
diff --git a/src/lib/libcrypto/dsa/Makefile b/src/lib/libcrypto/dsa/Makefile index 4f10278039..676baf7d49 100644 --- a/src/lib/libcrypto/dsa/Makefile +++ b/src/lib/libcrypto/dsa/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -23,9 +18,9 @@ APPS= | |||
23 | 18 | ||
24 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \ | 20 | LIBSRC= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c \ |
26 | dsa_err.c dsa_ossl.c | 21 | dsa_err.c dsa_ossl.c dsa_depr.c |
27 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \ | 22 | LIBOBJ= dsa_gen.o dsa_key.o dsa_lib.o dsa_asn1.o dsa_vrf.o dsa_sign.o \ |
28 | dsa_err.o dsa_ossl.o | 23 | dsa_err.o dsa_ossl.o dsa_depr.o |
29 | 24 | ||
30 | SRC= $(LIBSRC) | 25 | SRC= $(LIBSRC) |
31 | 26 | ||
@@ -53,6 +48,7 @@ links: | |||
53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 48 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
54 | 49 | ||
55 | install: | 50 | install: |
51 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
56 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 52 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
57 | do \ | 53 | do \ |
58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 54 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -68,6 +64,7 @@ lint: | |||
68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 64 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
69 | 65 | ||
70 | depend: | 66 | depend: |
67 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
71 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 68 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
72 | 69 | ||
73 | dclean: | 70 | dclean: |
@@ -81,51 +78,50 @@ clean: | |||
81 | 78 | ||
82 | dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 79 | dsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
83 | dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 80 | dsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
84 | dsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 81 | dsa_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
85 | dsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
86 | dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 82 | dsa_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
87 | dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 83 | dsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
88 | dsa_asn1.o: ../../include/openssl/opensslconf.h | 84 | dsa_asn1.o: ../../include/openssl/opensslconf.h |
89 | dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 85 | dsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
90 | dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 86 | dsa_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
91 | dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c | 87 | dsa_asn1.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_asn1.c |
92 | dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 88 | dsa_depr.o: ../../e_os.h ../../include/openssl/asn1.h |
93 | dsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 89 | dsa_depr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
90 | dsa_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
91 | dsa_depr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
92 | dsa_depr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
93 | dsa_depr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
94 | dsa_depr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
95 | dsa_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
96 | dsa_depr.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | ||
97 | dsa_depr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
98 | dsa_depr.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_depr.c | ||
99 | dsa_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | ||
94 | dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 100 | dsa_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
95 | dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 101 | dsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
96 | dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 102 | dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
97 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 103 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
98 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 104 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
99 | dsa_err.o: dsa_err.c | 105 | dsa_err.o: dsa_err.c |
100 | dsa_gen.o: ../../e_os.h ../../include/openssl/aes.h | 106 | dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h |
101 | dsa_gen.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 107 | dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
102 | dsa_gen.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 108 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
103 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
104 | dsa_gen.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
105 | dsa_gen.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
106 | dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 109 | dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
107 | dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 110 | dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
108 | dsa_gen.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 111 | dsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
109 | dsa_gen.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 112 | dsa_gen.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
110 | dsa_gen.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 113 | dsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
111 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 114 | dsa_gen.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
112 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
113 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
114 | dsa_gen.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
115 | dsa_gen.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
116 | dsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
117 | dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 115 | dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
118 | dsa_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 116 | dsa_gen.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_gen.c |
119 | dsa_gen.o: ../../include/openssl/ui_compat.h ../cryptlib.h dsa_gen.c | ||
120 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 117 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
121 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 118 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
122 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 119 | dsa_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
123 | dsa_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 120 | dsa_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
124 | dsa_key.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 121 | dsa_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
125 | dsa_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 122 | dsa_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
126 | dsa_key.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 123 | dsa_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
127 | dsa_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 124 | dsa_key.o: ../../include/openssl/symhacks.h ../cryptlib.h dsa_key.c |
128 | dsa_key.o: ../cryptlib.h dsa_key.c | ||
129 | dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 125 | dsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
130 | dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 126 | dsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
131 | dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 127 | dsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -133,16 +129,15 @@ dsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | |||
133 | dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 129 | dsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
134 | dsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 130 | dsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
135 | dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 131 | dsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
136 | dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 132 | dsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
137 | dsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
138 | dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 133 | dsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
139 | dsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h dsa_lib.c | 134 | dsa_lib.o: ../cryptlib.h dsa_lib.c |
140 | dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h | 135 | dsa_ossl.o: ../../e_os.h ../../include/openssl/asn1.h |
141 | dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 136 | dsa_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
142 | dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 137 | dsa_ossl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
143 | dsa_ossl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 138 | dsa_ossl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
144 | dsa_ossl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 139 | dsa_ossl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
145 | dsa_ossl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 140 | dsa_ossl.o: ../../include/openssl/opensslconf.h |
146 | dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 141 | dsa_ossl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
147 | dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 142 | dsa_ossl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
148 | dsa_ossl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 143 | dsa_ossl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
@@ -150,24 +145,20 @@ dsa_ossl.o: ../cryptlib.h dsa_ossl.c | |||
150 | dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | 145 | dsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h |
151 | dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 146 | dsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
152 | dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 147 | dsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
153 | dsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 148 | dsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
154 | dsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 149 | dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
155 | dsa_sign.o: ../../include/openssl/err.h ../../include/openssl/fips.h | 150 | dsa_sign.o: ../../include/openssl/opensslconf.h |
156 | dsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
157 | dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 151 | dsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
158 | dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 152 | dsa_sign.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
159 | dsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 153 | dsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
160 | dsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
161 | dsa_sign.o: ../cryptlib.h dsa_sign.c | 154 | dsa_sign.o: ../cryptlib.h dsa_sign.c |
162 | dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h | 155 | dsa_vrf.o: ../../e_os.h ../../include/openssl/asn1.h |
163 | dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 156 | dsa_vrf.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
164 | dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 157 | dsa_vrf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
165 | dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 158 | dsa_vrf.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
166 | dsa_vrf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 159 | dsa_vrf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
167 | dsa_vrf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 160 | dsa_vrf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
168 | dsa_vrf.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 161 | dsa_vrf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
169 | dsa_vrf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 162 | dsa_vrf.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
170 | dsa_vrf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
171 | dsa_vrf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
172 | dsa_vrf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 163 | dsa_vrf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
173 | dsa_vrf.o: ../../include/openssl/ui.h ../cryptlib.h dsa_vrf.c | 164 | dsa_vrf.o: ../cryptlib.h dsa_vrf.c |
diff --git a/src/lib/libcrypto/dso/Makefile b/src/lib/libcrypto/dso/Makefile index c16278c3ff..07f5d8d159 100644 --- a/src/lib/libcrypto/dso/Makefile +++ b/src/lib/libcrypto/dso/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -53,6 +48,7 @@ links: | |||
53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 48 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
54 | 49 | ||
55 | install: | 50 | install: |
51 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
56 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 52 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
57 | do \ | 53 | do \ |
58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 54 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -68,6 +64,7 @@ lint: | |||
68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 64 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
69 | 65 | ||
70 | depend: | 66 | depend: |
67 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
71 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 68 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
72 | 69 | ||
73 | dclean: | 70 | dclean: |
@@ -84,43 +81,47 @@ dso_dl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
84 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 81 | dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
85 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 82 | dso_dl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
86 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 83 | dso_dl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
87 | dso_dl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 84 | dso_dl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
88 | dso_dl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dl.c | 85 | dso_dl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
86 | dso_dl.o: ../cryptlib.h dso_dl.c | ||
89 | dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h | 87 | dso_dlfcn.o: ../../e_os.h ../../include/openssl/bio.h |
90 | dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 88 | dso_dlfcn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
91 | dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 89 | dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
92 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 90 | dso_dlfcn.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
93 | dso_dlfcn.o: ../../include/openssl/opensslconf.h | 91 | dso_dlfcn.o: ../../include/openssl/opensslconf.h |
94 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 92 | dso_dlfcn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
95 | dso_dlfcn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 93 | dso_dlfcn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
96 | dso_dlfcn.o: ../cryptlib.h dso_dlfcn.c | 94 | dso_dlfcn.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_dlfcn.c |
97 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 95 | dso_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
98 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 96 | dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
99 | dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 97 | dso_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
100 | dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 98 | dso_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
101 | dso_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 99 | dso_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
102 | dso_err.o: ../../include/openssl/symhacks.h dso_err.c | 100 | dso_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
101 | dso_err.o: dso_err.c | ||
103 | dso_lib.o: ../../e_os.h ../../include/openssl/bio.h | 102 | dso_lib.o: ../../e_os.h ../../include/openssl/bio.h |
104 | dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 103 | dso_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
105 | dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 104 | dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
106 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 105 | dso_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
107 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 106 | dso_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
108 | dso_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 107 | dso_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
109 | dso_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_lib.c | 108 | dso_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
109 | dso_lib.o: ../cryptlib.h dso_lib.c | ||
110 | dso_null.o: ../../e_os.h ../../include/openssl/bio.h | 110 | dso_null.o: ../../e_os.h ../../include/openssl/bio.h |
111 | dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 111 | dso_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
112 | dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 112 | dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
113 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 113 | dso_null.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
114 | dso_null.o: ../../include/openssl/opensslconf.h | 114 | dso_null.o: ../../include/openssl/opensslconf.h |
115 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 115 | dso_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
116 | dso_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 116 | dso_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
117 | dso_null.o: ../cryptlib.h dso_null.c | 117 | dso_null.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_null.c |
118 | dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h | 118 | dso_openssl.o: ../../e_os.h ../../include/openssl/bio.h |
119 | dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 119 | dso_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
120 | dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 120 | dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
121 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 121 | dso_openssl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
122 | dso_openssl.o: ../../include/openssl/opensslconf.h | 122 | dso_openssl.o: ../../include/openssl/opensslconf.h |
123 | dso_openssl.o: ../../include/openssl/opensslv.h | 123 | dso_openssl.o: ../../include/openssl/opensslv.h |
124 | dso_openssl.o: ../../include/openssl/ossl_typ.h | ||
124 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 125 | dso_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
125 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c | 126 | dso_openssl.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_openssl.c |
126 | dso_vms.o: ../../e_os.h ../../include/openssl/bio.h | 127 | dso_vms.o: ../../e_os.h ../../include/openssl/bio.h |
@@ -128,13 +129,14 @@ dso_vms.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
128 | dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 129 | dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
129 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 130 | dso_vms.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
130 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 131 | dso_vms.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
131 | dso_vms.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 132 | dso_vms.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
132 | dso_vms.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_vms.c | 133 | dso_vms.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
134 | dso_vms.o: ../cryptlib.h dso_vms.c | ||
133 | dso_win32.o: ../../e_os.h ../../include/openssl/bio.h | 135 | dso_win32.o: ../../e_os.h ../../include/openssl/bio.h |
134 | dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 136 | dso_win32.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
135 | dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 137 | dso_win32.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
136 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 138 | dso_win32.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
137 | dso_win32.o: ../../include/openssl/opensslconf.h | 139 | dso_win32.o: ../../include/openssl/opensslconf.h |
138 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 140 | dso_win32.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
139 | dso_win32.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 141 | dso_win32.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
140 | dso_win32.o: ../cryptlib.h dso_win32.c | 142 | dso_win32.o: ../../include/openssl/symhacks.h ../cryptlib.h dso_win32.c |
diff --git a/src/lib/libcrypto/ec/Makefile b/src/lib/libcrypto/ec/Makefile index 8f03658ad4..42f7bb7fc8 100644 --- a/src/lib/libcrypto/ec/Makefile +++ b/src/lib/libcrypto/ec/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -22,11 +17,13 @@ TEST=ectest.c | |||
22 | APPS= | 17 | APPS= |
23 | 18 | ||
24 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= ec_lib.c ecp_smpl.c ecp_mont.c ecp_recp.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\ |
26 | ec_err.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 | ||
27 | 23 | ||
28 | LIBOBJ= ec_lib.o ecp_smpl.o ecp_mont.o ecp_recp.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\ |
29 | ec_err.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 | ||
30 | 27 | ||
31 | SRC= $(LIBSRC) | 28 | SRC= $(LIBSRC) |
32 | 29 | ||
@@ -54,6 +51,7 @@ links: | |||
54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
55 | 52 | ||
56 | install: | 53 | install: |
54 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 55 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
58 | do \ | 56 | do \ |
59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 57 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -69,6 +67,7 @@ lint: | |||
69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 67 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
70 | 68 | ||
71 | depend: | 69 | depend: |
70 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
73 | 72 | ||
74 | dclean: | 73 | dclean: |
@@ -80,47 +79,115 @@ clean: | |||
80 | 79 | ||
81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
82 | 81 | ||
83 | ec_cvt.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | 82 | ec2_mult.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
84 | ec_cvt.o: ../../include/openssl/ec.h ../../include/openssl/opensslconf.h | 83 | ec2_mult.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
84 | ec2_mult.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
85 | ec2_mult.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
86 | 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 | ||
88 | 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 | ||
90 | ec2_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
91 | ec2_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
92 | ec2_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
93 | ec2_smpl.o: ../../include/openssl/err.h ../../include/openssl/lhash.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 | ||
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 | ||
98 | ec2_smpt.o: ec2_smpt.c | ||
99 | ec_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
100 | ec_asn1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
101 | ec_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
102 | ec_asn1.o: ../../include/openssl/ec.h ../../include/openssl/err.h | ||
103 | ec_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
104 | ec_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
105 | ec_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
106 | ec_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
107 | ec_asn1.o: ../../include/openssl/symhacks.h ec_asn1.c ec_lcl.h | ||
108 | ec_check.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
109 | ec_check.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
110 | ec_check.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
111 | ec_check.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
112 | ec_check.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
113 | ec_check.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
114 | ec_check.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
115 | ec_check.o: ../../include/openssl/symhacks.h ec_check.c ec_lcl.h | ||
116 | ec_curve.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
117 | ec_curve.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
118 | ec_curve.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
119 | ec_curve.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
120 | ec_curve.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
121 | ec_curve.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
122 | ec_curve.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
123 | ec_curve.o: ../../include/openssl/symhacks.h ec_curve.c ec_lcl.h | ||
124 | ec_cvt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
125 | ec_cvt.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
126 | ec_cvt.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
127 | ec_cvt.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
128 | ec_cvt.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
129 | ec_cvt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
130 | ec_cvt.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
85 | ec_cvt.o: ../../include/openssl/symhacks.h ec_cvt.c ec_lcl.h | 131 | ec_cvt.o: ../../include/openssl/symhacks.h ec_cvt.c ec_lcl.h |
86 | ec_err.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 132 | ec_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
87 | ec_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 133 | ec_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
88 | ec_err.o: ../../include/openssl/ec.h ../../include/openssl/err.h | 134 | ec_err.o: ../../include/openssl/ec.h ../../include/openssl/err.h |
89 | ec_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 135 | ec_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
90 | ec_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 136 | ec_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
91 | ec_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 137 | ec_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
92 | ec_err.o: ec_err.c | 138 | ec_err.o: ../../include/openssl/symhacks.h ec_err.c |
93 | ec_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 139 | ec_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
94 | ec_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 140 | ec_key.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
95 | ec_lib.o: ../../include/openssl/ec.h ../../include/openssl/err.h | 141 | ec_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
96 | ec_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 142 | ec_key.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
97 | ec_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 143 | ec_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h |
98 | ec_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 144 | ec_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
99 | ec_lib.o: ec_lcl.h ec_lib.c | 145 | ec_key.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
100 | ec_mult.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 146 | ec_key.o: ../../include/openssl/symhacks.h ec_key.c ec_lcl.h |
101 | ec_mult.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 147 | ec_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
102 | ec_mult.o: ../../include/openssl/ec.h ../../include/openssl/err.h | 148 | ec_lib.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
103 | ec_mult.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 149 | ec_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
104 | ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 150 | ec_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
105 | ec_mult.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 151 | ec_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h |
106 | ec_mult.o: ec_lcl.h ec_mult.c | 152 | ec_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
107 | ecp_mont.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 153 | ec_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
108 | ecp_mont.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 154 | ec_lib.o: ../../include/openssl/symhacks.h ec_lcl.h ec_lib.c |
109 | ecp_mont.o: ../../include/openssl/ec.h ../../include/openssl/err.h | 155 | ec_mult.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
110 | ecp_mont.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 156 | ec_mult.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
111 | ecp_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 157 | ec_mult.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
112 | ecp_mont.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 158 | ec_mult.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
113 | ecp_mont.o: ec_lcl.h ecp_mont.c | 159 | ec_mult.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h |
114 | ecp_nist.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | 160 | ec_mult.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
115 | ecp_nist.o: ../../include/openssl/ec.h ../../include/openssl/opensslconf.h | 161 | 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 | ||
163 | ec_print.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
164 | ec_print.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
165 | ec_print.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
166 | 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 | ||
168 | 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 | ||
170 | ecp_mont.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
171 | ecp_mont.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
172 | ecp_mont.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
173 | ecp_mont.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
174 | ecp_mont.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
175 | ecp_mont.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
176 | ecp_mont.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
177 | ecp_mont.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_mont.c | ||
178 | ecp_nist.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
179 | ecp_nist.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
180 | ecp_nist.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
181 | ecp_nist.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
182 | ecp_nist.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h | ||
183 | ecp_nist.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
184 | ecp_nist.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
116 | ecp_nist.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_nist.c | 185 | ecp_nist.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_nist.c |
117 | ecp_recp.o: ../../include/openssl/bn.h ../../include/openssl/e_os2.h | 186 | ecp_smpl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
118 | ecp_recp.o: ../../include/openssl/ec.h ../../include/openssl/opensslconf.h | 187 | ecp_smpl.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
119 | ecp_recp.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_recp.c | 188 | ecp_smpl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
120 | ecp_smpl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 189 | ecp_smpl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
121 | ecp_smpl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 190 | ecp_smpl.o: ../../include/openssl/obj_mac.h ../../include/openssl/opensslconf.h |
122 | ecp_smpl.o: ../../include/openssl/ec.h ../../include/openssl/err.h | 191 | ecp_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
123 | ecp_smpl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 192 | ecp_smpl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
124 | ecp_smpl.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 193 | ecp_smpl.o: ../../include/openssl/symhacks.h ec_lcl.h ecp_smpl.c |
125 | ecp_smpl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
126 | ecp_smpl.o: ec_lcl.h ecp_smpl.c | ||
diff --git a/src/lib/libcrypto/ec/ec2_smpt.c b/src/lib/libcrypto/ec/ec2_smpt.c new file mode 100644 index 0000000000..59d52bf663 --- /dev/null +++ b/src/lib/libcrypto/ec/ec2_smpt.c | |||
@@ -0,0 +1,74 @@ | |||
1 | /* crypto/ec/ec2_smpt.c */ | ||
2 | /* This code was originally written by Douglas Stebila | ||
3 | * <dstebila@student.math.uwaterloo.ca> for the OpenSSL project. | ||
4 | */ | ||
5 | /* ==================================================================== | ||
6 | * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved. | ||
7 | * | ||
8 | * Redistribution and use in source and binary forms, with or without | ||
9 | * modification, are permitted provided that the following conditions | ||
10 | * are met: | ||
11 | * | ||
12 | * 1. Redistributions of source code must retain the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer. | ||
14 | * | ||
15 | * 2. Redistributions in binary form must reproduce the above copyright | ||
16 | * notice, this list of conditions and the following disclaimer in | ||
17 | * the documentation and/or other materials provided with the | ||
18 | * distribution. | ||
19 | * | ||
20 | * 3. All advertising materials mentioning features or use of this | ||
21 | * software must display the following acknowledgment: | ||
22 | * "This product includes software developed by the OpenSSL Project | ||
23 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" | ||
24 | * | ||
25 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
26 | * endorse or promote products derived from this software without | ||
27 | * prior written permission. For written permission, please contact | ||
28 | * openssl-core@openssl.org. | ||
29 | * | ||
30 | * 5. Products derived from this software may not be called "OpenSSL" | ||
31 | * nor may "OpenSSL" appear in their names without prior written | ||
32 | * permission of the OpenSSL Project. | ||
33 | * | ||
34 | * 6. Redistributions of any form whatsoever must retain the following | ||
35 | * acknowledgment: | ||
36 | * "This product includes software developed by the OpenSSL Project | ||
37 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" | ||
38 | * | ||
39 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
40 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
41 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
42 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
43 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
44 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
45 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
46 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
47 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
48 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
49 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
50 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
51 | * ==================================================================== | ||
52 | * | ||
53 | * This product includes cryptographic software written by Eric Young | ||
54 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
55 | * Hudson (tjh@cryptsoft.com). | ||
56 | * | ||
57 | */ | ||
58 | |||
59 | |||
60 | /* Calaculates and sets the affine coordinates of an EC_POINT from the given | ||
61 | * compressed coordinates. Uses algorithm 2.3.4 of SEC 1. | ||
62 | * Note that the simple implementation only uses affine coordinates. | ||
63 | * | ||
64 | * This algorithm is patented by Certicom Corp. under US Patent 6,141,420 | ||
65 | * (for licensing information, contact licensing@certicom.com). | ||
66 | * This function is disabled by default and can be enabled by defining the | ||
67 | * preprocessor macro OPENSSL_EC_BIN_PT_COMP at Configure-time. | ||
68 | */ | ||
69 | int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, | ||
70 | const BIGNUM *x_, int y_bit, BN_CTX *ctx) | ||
71 | { | ||
72 | ECerr(EC_F_EC_GF2M_SIMPLE_SET_COMPRESSED_COORDINATES, ERR_R_DISABLED); | ||
73 | return 0; | ||
74 | } | ||
diff --git a/src/lib/libcrypto/engine/Makefile b/src/lib/libcrypto/engine/Makefile index 38f83f1654..13f211a0ae 100644 --- a/src/lib/libcrypto/engine/Makefile +++ b/src/lib/libcrypto/engine/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -24,16 +19,14 @@ APPS= | |||
24 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ | 20 | LIBSRC= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c \ |
26 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ | 21 | eng_table.c eng_pkey.c eng_fat.c eng_all.c \ |
27 | tb_rsa.c tb_dsa.c tb_dh.c tb_rand.c tb_cipher.c tb_digest.c \ | 22 | tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c \ |
28 | eng_openssl.c eng_dyn.c eng_cnf.c \ | 23 | tb_cipher.c tb_digest.c \ |
29 | hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c hw_ubsec.c \ | 24 | eng_openssl.c eng_cnf.c eng_dyn.c eng_cryptodev.c eng_padlock.c |
30 | hw_cryptodev.c hw_aep.c hw_sureware.c hw_4758_cca.c | ||
31 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ | 25 | LIBOBJ= eng_err.o eng_lib.o eng_list.o eng_init.o eng_ctrl.o \ |
32 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ | 26 | eng_table.o eng_pkey.o eng_fat.o eng_all.o \ |
33 | tb_rsa.o tb_dsa.o tb_dh.o tb_rand.o tb_cipher.o tb_digest.o \ | 27 | tb_rsa.o tb_dsa.o tb_ecdsa.o tb_dh.o tb_ecdh.o tb_rand.o tb_store.o \ |
34 | eng_openssl.o eng_dyn.o eng_cnf.o \ | 28 | tb_cipher.o tb_digest.o \ |
35 | hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o hw_ubsec.o \ | 29 | eng_openssl.o eng_cnf.o eng_dyn.o eng_cryptodev.o eng_padlock.o |
36 | hw_cryptodev.o hw_aep.o hw_sureware.o hw_4758_cca.o | ||
37 | 30 | ||
38 | SRC= $(LIBSRC) | 31 | SRC= $(LIBSRC) |
39 | 32 | ||
@@ -61,6 +54,7 @@ links: | |||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
62 | 55 | ||
63 | install: | 56 | install: |
57 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
64 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 58 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
65 | do \ | 59 | do \ |
66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -70,16 +64,13 @@ install: | |||
70 | tags: | 64 | tags: |
71 | ctags $(SRC) | 65 | ctags $(SRC) |
72 | 66 | ||
73 | errors: | ||
74 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ | ||
75 | -nostatic -staticloader -write hw_*.c | ||
76 | |||
77 | tests: | 67 | tests: |
78 | 68 | ||
79 | lint: | 69 | lint: |
80 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
81 | 71 | ||
82 | depend: | 72 | depend: |
73 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
83 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 74 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
84 | 75 | ||
85 | dclean: | 76 | dclean: |
@@ -91,446 +82,207 @@ clean: | |||
91 | 82 | ||
92 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
93 | 84 | ||
94 | eng_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 85 | eng_all.o: ../../e_os.h ../../include/openssl/bio.h |
95 | eng_all.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 86 | eng_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
96 | eng_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
97 | eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 87 | eng_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
98 | eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 88 | eng_all.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
99 | eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 89 | eng_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
100 | eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 90 | eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
101 | eng_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
102 | eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 91 | eng_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
103 | eng_all.o: ../../include/openssl/ui.h eng_all.c eng_int.h | 92 | eng_all.o: ../cryptlib.h eng_all.c eng_int.h |
104 | eng_cnf.o: ../../e_os.h ../../include/openssl/asn1.h | 93 | eng_cnf.o: ../../e_os.h ../../include/openssl/bio.h |
105 | eng_cnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
106 | eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 94 | eng_cnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
107 | eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 95 | eng_cnf.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
108 | eng_cnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
109 | eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 96 | eng_cnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
110 | eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 97 | eng_cnf.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
111 | eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 98 | eng_cnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
112 | eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
113 | eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 99 | eng_cnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
114 | eng_cnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 100 | eng_cnf.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_cnf.c eng_int.h |
115 | eng_cnf.o: ../cryptlib.h eng_cnf.c | 101 | eng_cryptodev.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
116 | eng_ctrl.o: ../../e_os.h ../../include/openssl/asn1.h | 102 | eng_cryptodev.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h |
117 | eng_ctrl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 103 | eng_cryptodev.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
104 | eng_cryptodev.o: ../../include/openssl/evp.h ../../include/openssl/obj_mac.h | ||
105 | eng_cryptodev.o: ../../include/openssl/objects.h | ||
106 | eng_cryptodev.o: ../../include/openssl/opensslconf.h | ||
107 | eng_cryptodev.o: ../../include/openssl/opensslv.h | ||
108 | eng_cryptodev.o: ../../include/openssl/ossl_typ.h | ||
109 | eng_cryptodev.o: ../../include/openssl/safestack.h | ||
110 | eng_cryptodev.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
111 | eng_cryptodev.o: eng_cryptodev.c | ||
112 | eng_ctrl.o: ../../e_os.h ../../include/openssl/bio.h | ||
118 | eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 113 | eng_ctrl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
119 | eng_ctrl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
120 | eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 114 | eng_ctrl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
121 | eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 115 | eng_ctrl.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
122 | eng_ctrl.o: ../../include/openssl/opensslconf.h | 116 | eng_ctrl.o: ../../include/openssl/opensslconf.h |
123 | eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 117 | eng_ctrl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
124 | eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
125 | eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 118 | eng_ctrl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
126 | eng_ctrl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 119 | eng_ctrl.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_ctrl.c eng_int.h |
127 | eng_ctrl.o: ../cryptlib.h eng_ctrl.c eng_int.h | 120 | eng_dyn.o: ../../e_os.h ../../include/openssl/bio.h |
128 | eng_dyn.o: ../../e_os.h ../../include/openssl/asn1.h | ||
129 | eng_dyn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
130 | eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 121 | eng_dyn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
131 | eng_dyn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
132 | eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 122 | eng_dyn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
133 | eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 123 | eng_dyn.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
134 | eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 124 | eng_dyn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
135 | eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 125 | eng_dyn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
136 | eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
137 | eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 126 | eng_dyn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
138 | eng_dyn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 127 | eng_dyn.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_dyn.c eng_int.h |
139 | eng_dyn.o: ../cryptlib.h eng_dyn.c eng_int.h | 128 | eng_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
140 | eng_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
141 | eng_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
142 | eng_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
143 | eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 129 | eng_err.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
144 | eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 130 | eng_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
145 | eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 131 | eng_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
146 | eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 132 | eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
147 | eng_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
148 | eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 133 | eng_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
149 | eng_err.o: ../../include/openssl/ui.h eng_err.c | 134 | eng_err.o: eng_err.c |
150 | eng_fat.o: ../../e_os.h ../../include/openssl/asn1.h | 135 | eng_fat.o: ../../e_os.h ../../include/openssl/bio.h |
151 | eng_fat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
152 | eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 136 | eng_fat.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
153 | eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 137 | eng_fat.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
154 | eng_fat.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
155 | eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 138 | eng_fat.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
156 | eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 139 | eng_fat.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
157 | eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 140 | eng_fat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
158 | eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
159 | eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 141 | eng_fat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
160 | eng_fat.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 142 | eng_fat.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_fat.c eng_int.h |
161 | eng_fat.o: ../cryptlib.h eng_fat.c eng_int.h | 143 | eng_init.o: ../../e_os.h ../../include/openssl/bio.h |
162 | eng_init.o: ../../e_os.h ../../include/openssl/asn1.h | ||
163 | eng_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
164 | eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 144 | eng_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
165 | eng_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
166 | eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 145 | eng_init.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
167 | eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 146 | eng_init.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
168 | eng_init.o: ../../include/openssl/opensslconf.h | 147 | eng_init.o: ../../include/openssl/opensslconf.h |
169 | eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 | eng_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
170 | eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
171 | eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 149 | eng_init.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
172 | eng_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 150 | eng_init.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_init.c eng_int.h |
173 | eng_init.o: ../cryptlib.h eng_init.c eng_int.h | 151 | eng_lib.o: ../../e_os.h ../../include/openssl/bio.h |
174 | eng_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
175 | eng_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
176 | eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 152 | eng_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
177 | eng_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
178 | eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 153 | eng_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
179 | eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 154 | eng_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
180 | eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 155 | eng_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
181 | eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 156 | eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
182 | eng_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 157 | eng_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
183 | eng_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 158 | eng_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_lib.c |
184 | eng_lib.o: ../../include/openssl/ui.h ../cryptlib.h eng_int.h eng_lib.c | 159 | eng_list.o: ../../e_os.h ../../include/openssl/bio.h |
185 | eng_list.o: ../../e_os.h ../../include/openssl/asn1.h | ||
186 | eng_list.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
187 | eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 160 | eng_list.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
188 | eng_list.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
189 | eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 161 | eng_list.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
190 | eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 162 | eng_list.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
191 | eng_list.o: ../../include/openssl/opensslconf.h | 163 | eng_list.o: ../../include/openssl/opensslconf.h |
192 | eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 164 | eng_list.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
193 | eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
194 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 165 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
195 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 166 | eng_list.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_list.c |
196 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c | 167 | eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h |
197 | eng_openssl.o: ../../e_os.h ../../include/openssl/aes.h | 168 | eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
198 | eng_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 169 | eng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
199 | eng_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
200 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
201 | eng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
202 | eng_openssl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
203 | eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 170 | eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
204 | eng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 171 | eng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
205 | eng_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 172 | eng_openssl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
206 | eng_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 173 | eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
207 | eng_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 174 | eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
208 | eng_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
209 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 175 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
210 | eng_openssl.o: ../../include/openssl/opensslconf.h | 176 | eng_openssl.o: ../../include/openssl/opensslconf.h |
211 | eng_openssl.o: ../../include/openssl/opensslv.h | 177 | eng_openssl.o: ../../include/openssl/opensslv.h |
212 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 178 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
213 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 179 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
214 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 180 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h |
215 | eng_openssl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 181 | eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
216 | eng_openssl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 182 | eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
217 | eng_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 183 | eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
218 | eng_openssl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 184 | eng_openssl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_openssl.c |
219 | eng_openssl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 185 | eng_padlock.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
220 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 186 | eng_padlock.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
221 | eng_openssl.o: ../cryptlib.h eng_openssl.c | 187 | eng_padlock.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
222 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 188 | eng_padlock.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
223 | eng_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 189 | eng_padlock.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
190 | eng_padlock.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
191 | eng_padlock.o: ../../include/openssl/opensslconf.h | ||
192 | eng_padlock.o: ../../include/openssl/opensslv.h | ||
193 | eng_padlock.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
194 | eng_padlock.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
195 | eng_padlock.o: ../../include/openssl/symhacks.h eng_padlock.c | ||
196 | eng_pkey.o: ../../e_os.h ../../include/openssl/bio.h | ||
224 | eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 197 | eng_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
225 | eng_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
226 | eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 198 | eng_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
227 | eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 199 | eng_pkey.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
228 | eng_pkey.o: ../../include/openssl/opensslconf.h | 200 | eng_pkey.o: ../../include/openssl/opensslconf.h |
229 | eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 201 | eng_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
230 | eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
231 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 202 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
232 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 203 | eng_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h eng_pkey.c |
233 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c | 204 | eng_table.o: ../../e_os.h ../../include/openssl/asn1.h |
234 | eng_table.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 205 | eng_table.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
235 | eng_table.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 206 | eng_table.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
236 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
237 | eng_table.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
238 | eng_table.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
239 | eng_table.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
240 | eng_table.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 207 | eng_table.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
241 | eng_table.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 208 | eng_table.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
242 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 209 | eng_table.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
243 | eng_table.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
244 | eng_table.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
245 | eng_table.o: ../../include/openssl/objects.h | ||
246 | eng_table.o: ../../include/openssl/opensslconf.h | 210 | eng_table.o: ../../include/openssl/opensslconf.h |
247 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 211 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
248 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 212 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
249 | eng_table.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 213 | eng_table.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h |
250 | eng_table.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 214 | eng_table.o: eng_table.c |
251 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 215 | tb_cipher.o: ../../e_os.h ../../include/openssl/bio.h |
252 | eng_table.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 216 | tb_cipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
253 | eng_table.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 217 | tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
254 | eng_table.o: eng_int.h eng_table.c | 218 | tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
255 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/aes.h | ||
256 | hw_4758_cca.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
257 | hw_4758_cca.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
258 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
259 | hw_4758_cca.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
260 | hw_4758_cca.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
261 | hw_4758_cca.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
262 | hw_4758_cca.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
263 | hw_4758_cca.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
264 | hw_4758_cca.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
265 | hw_4758_cca.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
266 | hw_4758_cca.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
267 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
268 | hw_4758_cca.o: ../../include/openssl/opensslconf.h | ||
269 | hw_4758_cca.o: ../../include/openssl/opensslv.h | ||
270 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
271 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
272 | hw_4758_cca.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
273 | hw_4758_cca.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
274 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
275 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
276 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
277 | hw_4758_cca.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
278 | hw_4758_cca.o: ../cryptlib.h hw_4758_cca.c hw_4758_cca_err.c hw_4758_cca_err.h | ||
279 | hw_4758_cca.o: vendor_defns/hw_4758_cca.h | ||
280 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
281 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
282 | hw_aep.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | ||
283 | hw_aep.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
284 | hw_aep.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
285 | hw_aep.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
286 | hw_aep.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
287 | hw_aep.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
288 | hw_aep.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
289 | hw_aep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
290 | hw_aep.o: ../../include/openssl/ui.h hw_aep.c hw_aep_err.c hw_aep_err.h | ||
291 | hw_aep.o: vendor_defns/aep.h | ||
292 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h | ||
293 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
294 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
295 | hw_atalla.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
296 | hw_atalla.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
297 | hw_atalla.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
298 | hw_atalla.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
299 | hw_atalla.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
300 | hw_atalla.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
301 | hw_atalla.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
302 | hw_atalla.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
303 | hw_atalla.o: ../cryptlib.h hw_atalla.c hw_atalla_err.c hw_atalla_err.h | ||
304 | hw_atalla.o: vendor_defns/atalla.h | ||
305 | hw_cryptodev.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
306 | hw_cryptodev.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
307 | hw_cryptodev.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
308 | hw_cryptodev.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
309 | hw_cryptodev.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
310 | hw_cryptodev.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
311 | hw_cryptodev.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
312 | hw_cryptodev.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
313 | hw_cryptodev.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
314 | hw_cryptodev.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
315 | hw_cryptodev.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
316 | hw_cryptodev.o: ../../include/openssl/objects.h | ||
317 | hw_cryptodev.o: ../../include/openssl/opensslconf.h | ||
318 | hw_cryptodev.o: ../../include/openssl/opensslv.h | ||
319 | hw_cryptodev.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
320 | hw_cryptodev.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
321 | hw_cryptodev.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
322 | hw_cryptodev.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
323 | hw_cryptodev.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
324 | hw_cryptodev.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
325 | hw_cryptodev.o: ../../include/openssl/ui_compat.h hw_cryptodev.c | ||
326 | hw_cswift.o: ../../e_os.h ../../include/openssl/asn1.h | ||
327 | hw_cswift.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
328 | hw_cswift.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
329 | hw_cswift.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
330 | hw_cswift.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
331 | hw_cswift.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
332 | hw_cswift.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
333 | hw_cswift.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
334 | hw_cswift.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
335 | hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
336 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
337 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h | ||
338 | hw_cswift.o: vendor_defns/cswift.h | ||
339 | hw_ncipher.o: ../../e_os.h ../../include/openssl/aes.h | ||
340 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
341 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
342 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
343 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
344 | hw_ncipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
345 | hw_ncipher.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
346 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
347 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
348 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
349 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
350 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
351 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
352 | hw_ncipher.o: ../../include/openssl/opensslconf.h | ||
353 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
354 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | ||
355 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
356 | hw_ncipher.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
357 | hw_ncipher.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
358 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
359 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
360 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
361 | hw_ncipher.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
362 | hw_ncipher.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_ncipher.c | ||
363 | hw_ncipher.o: hw_ncipher_err.c hw_ncipher_err.h vendor_defns/hwcryptohook.h | ||
364 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h | ||
365 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
366 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
367 | hw_nuron.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
368 | hw_nuron.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
369 | hw_nuron.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
370 | hw_nuron.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
371 | hw_nuron.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
372 | hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
373 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
374 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
375 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h | ||
376 | hw_sureware.o: ../../e_os.h ../../include/openssl/aes.h | ||
377 | hw_sureware.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
378 | hw_sureware.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
379 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
380 | hw_sureware.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
381 | hw_sureware.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
382 | hw_sureware.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
383 | hw_sureware.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
384 | hw_sureware.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
385 | hw_sureware.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
386 | hw_sureware.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
387 | hw_sureware.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
388 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
389 | hw_sureware.o: ../../include/openssl/opensslconf.h | ||
390 | hw_sureware.o: ../../include/openssl/opensslv.h | ||
391 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | ||
392 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | ||
393 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
394 | hw_sureware.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
395 | hw_sureware.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
396 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
397 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
398 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
399 | hw_sureware.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
400 | hw_sureware.o: ../cryptlib.h eng_int.h engine.h hw_sureware.c hw_sureware_err.c | ||
401 | hw_sureware.o: hw_sureware_err.h vendor_defns/sureware.h | ||
402 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h | ||
403 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
404 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
405 | hw_ubsec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
406 | hw_ubsec.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
407 | hw_ubsec.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
408 | hw_ubsec.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
409 | hw_ubsec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
410 | hw_ubsec.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
411 | hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
412 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
413 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h | ||
414 | hw_ubsec.o: vendor_defns/hw_ubsec.h | ||
415 | tb_cipher.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
416 | tb_cipher.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
417 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
418 | tb_cipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
419 | tb_cipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
420 | tb_cipher.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
421 | tb_cipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
422 | tb_cipher.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
423 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
424 | tb_cipher.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
425 | tb_cipher.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
426 | tb_cipher.o: ../../include/openssl/objects.h | ||
427 | tb_cipher.o: ../../include/openssl/opensslconf.h | 219 | tb_cipher.o: ../../include/openssl/opensslconf.h |
428 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 220 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
429 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 221 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
430 | tb_cipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 222 | tb_cipher.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h |
431 | tb_cipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 223 | tb_cipher.o: tb_cipher.c |
432 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 224 | tb_dh.o: ../../e_os.h ../../include/openssl/bio.h |
433 | tb_cipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 225 | tb_dh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
434 | tb_cipher.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 226 | tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
435 | tb_cipher.o: eng_int.h tb_cipher.c | 227 | tb_dh.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
436 | tb_dh.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 228 | tb_dh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
437 | tb_dh.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 229 | tb_dh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
438 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
439 | tb_dh.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
440 | tb_dh.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
441 | tb_dh.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
442 | tb_dh.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
443 | tb_dh.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
444 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
445 | tb_dh.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
446 | tb_dh.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
447 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
448 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
449 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
450 | tb_dh.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
451 | tb_dh.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
452 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
453 | tb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 230 | tb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
454 | tb_dh.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h eng_int.h | 231 | tb_dh.o: ../cryptlib.h eng_int.h tb_dh.c |
455 | tb_dh.o: tb_dh.c | 232 | tb_digest.o: ../../e_os.h ../../include/openssl/bio.h |
456 | tb_digest.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 233 | tb_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
457 | tb_digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 234 | tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
458 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | 235 | tb_digest.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
459 | tb_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
460 | tb_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
461 | tb_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
462 | tb_digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
463 | tb_digest.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
464 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
465 | tb_digest.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
466 | tb_digest.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
467 | tb_digest.o: ../../include/openssl/objects.h | ||
468 | tb_digest.o: ../../include/openssl/opensslconf.h | 236 | tb_digest.o: ../../include/openssl/opensslconf.h |
469 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 237 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
470 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 238 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
471 | tb_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 239 | tb_digest.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h |
472 | tb_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 240 | tb_digest.o: tb_digest.c |
473 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 241 | tb_dsa.o: ../../e_os.h ../../include/openssl/bio.h |
474 | tb_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 242 | tb_dsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
475 | tb_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 243 | tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
476 | tb_digest.o: eng_int.h tb_digest.c | 244 | tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
477 | tb_dsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 245 | tb_dsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
478 | tb_dsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 246 | tb_dsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
479 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
480 | tb_dsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
481 | tb_dsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
482 | tb_dsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
483 | tb_dsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
484 | tb_dsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
485 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
486 | tb_dsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
487 | tb_dsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
488 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
489 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
490 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
491 | tb_dsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
492 | tb_dsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
493 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
494 | tb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 247 | tb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
495 | tb_dsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 248 | tb_dsa.o: ../cryptlib.h eng_int.h tb_dsa.c |
496 | tb_dsa.o: eng_int.h tb_dsa.c | 249 | tb_ecdh.o: ../../e_os.h ../../include/openssl/bio.h |
497 | tb_rand.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 250 | tb_ecdh.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
498 | tb_rand.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 251 | tb_ecdh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
499 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | 252 | tb_ecdh.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
500 | tb_rand.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 253 | tb_ecdh.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
501 | tb_rand.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 254 | tb_ecdh.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
502 | tb_rand.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 255 | tb_ecdh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
503 | tb_rand.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 256 | tb_ecdh.o: ../cryptlib.h eng_int.h tb_ecdh.c |
504 | tb_rand.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 257 | tb_ecdsa.o: ../../e_os.h ../../include/openssl/bio.h |
505 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 258 | tb_ecdsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
506 | tb_rand.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 259 | tb_ecdsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
507 | tb_rand.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 260 | tb_ecdsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
508 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 261 | tb_ecdsa.o: ../../include/openssl/opensslconf.h |
509 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 262 | tb_ecdsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
510 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 263 | tb_ecdsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
511 | tb_rand.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 264 | tb_ecdsa.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h tb_ecdsa.c |
512 | tb_rand.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 265 | tb_rand.o: ../../e_os.h ../../include/openssl/bio.h |
513 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 266 | tb_rand.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
267 | tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
268 | tb_rand.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
269 | tb_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
270 | tb_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | ||
514 | tb_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 271 | tb_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
515 | tb_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 272 | tb_rand.o: ../cryptlib.h eng_int.h tb_rand.c |
516 | tb_rand.o: eng_int.h tb_rand.c | 273 | tb_rsa.o: ../../e_os.h ../../include/openssl/bio.h |
517 | tb_rsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 274 | tb_rsa.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
518 | tb_rsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 275 | tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
519 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | 276 | tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
520 | tb_rsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 277 | tb_rsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
521 | tb_rsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 278 | tb_rsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
522 | tb_rsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
523 | tb_rsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
524 | tb_rsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
525 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
526 | tb_rsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
527 | tb_rsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
528 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
529 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
530 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
531 | tb_rsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
532 | tb_rsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
533 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
534 | tb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 279 | tb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
535 | tb_rsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 280 | tb_rsa.o: ../cryptlib.h eng_int.h tb_rsa.c |
536 | tb_rsa.o: eng_int.h tb_rsa.c | 281 | tb_store.o: ../../e_os.h ../../include/openssl/bio.h |
282 | tb_store.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
283 | tb_store.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
284 | tb_store.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
285 | tb_store.o: ../../include/openssl/opensslconf.h | ||
286 | tb_store.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
287 | tb_store.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
288 | tb_store.o: ../../include/openssl/symhacks.h ../cryptlib.h eng_int.h tb_store.c | ||
diff --git a/src/lib/libcrypto/engine/eng_cryptodev.c b/src/lib/libcrypto/engine/eng_cryptodev.c new file mode 100644 index 0000000000..ab38cd52f0 --- /dev/null +++ b/src/lib/libcrypto/engine/eng_cryptodev.c | |||
@@ -0,0 +1,1133 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2002 Bob Beck <beck@openbsd.org> | ||
3 | * Copyright (c) 2002 Theo de Raadt | ||
4 | * Copyright (c) 2002 Markus Friedl | ||
5 | * All rights reserved. | ||
6 | * | ||
7 | * Redistribution and use in source and binary forms, with or without | ||
8 | * modification, are permitted provided that the following conditions | ||
9 | * are met: | ||
10 | * 1. Redistributions of source code must retain the above copyright | ||
11 | * notice, this list of conditions and the following disclaimer. | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in the | ||
14 | * documentation and/or other materials provided with the distribution. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
25 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | |||
29 | #include <openssl/objects.h> | ||
30 | #include <openssl/engine.h> | ||
31 | #include <openssl/evp.h> | ||
32 | #include <openssl/bn.h> | ||
33 | |||
34 | #if (defined(__unix__) || defined(unix)) && !defined(USG) && \ | ||
35 | (defined(OpenBSD) || defined(__FreeBSD_version)) | ||
36 | #include <sys/param.h> | ||
37 | # if (OpenBSD >= 200112) || ((__FreeBSD_version >= 470101 && __FreeBSD_version < 500000) || __FreeBSD_version >= 500041) | ||
38 | # define HAVE_CRYPTODEV | ||
39 | # endif | ||
40 | # if (OpenBSD >= 200110) | ||
41 | # define HAVE_SYSLOG_R | ||
42 | # endif | ||
43 | #endif | ||
44 | |||
45 | #ifndef HAVE_CRYPTODEV | ||
46 | |||
47 | void | ||
48 | ENGINE_load_cryptodev(void) | ||
49 | { | ||
50 | /* This is a NOP on platforms without /dev/crypto */ | ||
51 | return; | ||
52 | } | ||
53 | |||
54 | #else | ||
55 | |||
56 | #include <sys/types.h> | ||
57 | #include <crypto/cryptodev.h> | ||
58 | #include <sys/ioctl.h> | ||
59 | #include <errno.h> | ||
60 | #include <stdio.h> | ||
61 | #include <unistd.h> | ||
62 | #include <fcntl.h> | ||
63 | #include <stdarg.h> | ||
64 | #include <syslog.h> | ||
65 | #include <errno.h> | ||
66 | #include <string.h> | ||
67 | |||
68 | struct dev_crypto_state { | ||
69 | struct session_op d_sess; | ||
70 | int d_fd; | ||
71 | }; | ||
72 | |||
73 | static u_int32_t cryptodev_asymfeat = 0; | ||
74 | |||
75 | static int get_asym_dev_crypto(void); | ||
76 | static int open_dev_crypto(void); | ||
77 | 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); | ||
82 | static int get_cryptodev_digests(const int **cnids); | ||
83 | static int cryptodev_usable_ciphers(const int **nids); | ||
84 | static int cryptodev_usable_digests(const int **nids); | ||
85 | static int cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | ||
86 | const unsigned char *in, unsigned int inl); | ||
87 | static int cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | ||
88 | const unsigned char *iv, int enc); | ||
89 | static int cryptodev_cleanup(EVP_CIPHER_CTX *ctx); | ||
90 | static int cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher, | ||
91 | const int **nids, int nid); | ||
92 | static int cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest, | ||
93 | const int **nids, int nid); | ||
94 | static int bn2crparam(const BIGNUM *a, struct crparam *crp); | ||
95 | static int crparam2bn(struct crparam *crp, BIGNUM *a); | ||
96 | static void zapparams(struct crypt_kop *kop); | ||
97 | static int cryptodev_asym(struct crypt_kop *kop, int rlen, BIGNUM *r, | ||
98 | int slen, BIGNUM *s); | ||
99 | |||
100 | 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); | ||
102 | static int cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, | ||
103 | RSA *rsa); | ||
104 | 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, | ||
106 | const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); | ||
107 | static int cryptodev_dsa_dsa_mod_exp(DSA *dsa, BIGNUM *t1, BIGNUM *g, | ||
108 | BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p, | ||
109 | BN_CTX *ctx, BN_MONT_CTX *mont); | ||
110 | static DSA_SIG *cryptodev_dsa_do_sign(const unsigned char *dgst, | ||
111 | int dlen, DSA *dsa); | ||
112 | static int cryptodev_dsa_verify(const unsigned char *dgst, int dgst_len, | ||
113 | DSA_SIG *sig, DSA *dsa); | ||
114 | static int cryptodev_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a, | ||
115 | const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, | ||
116 | BN_MONT_CTX *m_ctx); | ||
117 | static int cryptodev_dh_compute_key(unsigned char *key, | ||
118 | const BIGNUM *pub_key, DH *dh); | ||
119 | static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, | ||
120 | void (*f)()); | ||
121 | void ENGINE_load_cryptodev(void); | ||
122 | |||
123 | static const ENGINE_CMD_DEFN cryptodev_defns[] = { | ||
124 | { 0, NULL, NULL, 0 } | ||
125 | }; | ||
126 | |||
127 | static struct { | ||
128 | int id; | ||
129 | int nid; | ||
130 | int ivmax; | ||
131 | int keylen; | ||
132 | } ciphers[] = { | ||
133 | { CRYPTO_DES_CBC, NID_des_cbc, 8, 8, }, | ||
134 | { CRYPTO_3DES_CBC, NID_des_ede3_cbc, 8, 24, }, | ||
135 | { CRYPTO_AES_CBC, NID_aes_128_cbc, 16, 16, }, | ||
136 | { CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16, }, | ||
137 | { CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16, }, | ||
138 | { CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0, }, | ||
139 | { 0, NID_undef, 0, 0, }, | ||
140 | }; | ||
141 | |||
142 | static struct { | ||
143 | int id; | ||
144 | int nid; | ||
145 | } digests[] = { | ||
146 | { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, }, | ||
147 | { CRYPTO_RIPEMD160_HMAC, NID_ripemd160, }, | ||
148 | { CRYPTO_MD5_KPDK, NID_undef, }, | ||
149 | { CRYPTO_SHA1_KPDK, NID_undef, }, | ||
150 | { CRYPTO_MD5, NID_md5, }, | ||
151 | { CRYPTO_SHA1, NID_undef, }, | ||
152 | { 0, NID_undef, }, | ||
153 | }; | ||
154 | |||
155 | /* | ||
156 | * Return a fd if /dev/crypto seems usable, 0 otherwise. | ||
157 | */ | ||
158 | static int | ||
159 | open_dev_crypto(void) | ||
160 | { | ||
161 | static int fd = -1; | ||
162 | |||
163 | if (fd == -1) { | ||
164 | if ((fd = open("/dev/crypto", O_RDWR, 0)) == -1) | ||
165 | return (-1); | ||
166 | /* close on exec */ | ||
167 | if (fcntl(fd, F_SETFD, 1) == -1) { | ||
168 | close(fd); | ||
169 | fd = -1; | ||
170 | return (-1); | ||
171 | } | ||
172 | } | ||
173 | return (fd); | ||
174 | } | ||
175 | |||
176 | static int | ||
177 | get_dev_crypto(void) | ||
178 | { | ||
179 | int fd, retfd; | ||
180 | |||
181 | if ((fd = open_dev_crypto()) == -1) | ||
182 | return (-1); | ||
183 | if (ioctl(fd, CRIOGET, &retfd) == -1) | ||
184 | return (-1); | ||
185 | |||
186 | /* close on exec */ | ||
187 | if (fcntl(retfd, F_SETFD, 1) == -1) { | ||
188 | close(retfd); | ||
189 | return (-1); | ||
190 | } | ||
191 | return (retfd); | ||
192 | } | ||
193 | |||
194 | /* Caching version for asym operations */ | ||
195 | static int | ||
196 | get_asym_dev_crypto(void) | ||
197 | { | ||
198 | static int fd = -1; | ||
199 | |||
200 | if (fd == -1) | ||
201 | fd = get_dev_crypto(); | ||
202 | return fd; | ||
203 | } | ||
204 | |||
205 | /* | ||
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. | ||
251 | * XXX note, that some of these openssl doesn't deal with yet! | ||
252 | * returning them here is harmless, as long as we return NULL | ||
253 | * when asked for a handler in the cryptodev_engine_ciphers routine | ||
254 | */ | ||
255 | static int | ||
256 | get_cryptodev_ciphers(const int **cnids) | ||
257 | { | ||
258 | static int nids[CRYPTO_ALGORITHM_MAX]; | ||
259 | struct session_op sess; | ||
260 | int fd, i, count = 0; | ||
261 | |||
262 | if ((fd = get_dev_crypto()) < 0) { | ||
263 | *cnids = NULL; | ||
264 | return (0); | ||
265 | } | ||
266 | memset(&sess, 0, sizeof(sess)); | ||
267 | sess.key = (caddr_t)"123456781234567812345678"; | ||
268 | |||
269 | for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { | ||
270 | if (ciphers[i].nid == NID_undef) | ||
271 | continue; | ||
272 | sess.cipher = ciphers[i].id; | ||
273 | sess.keylen = ciphers[i].keylen; | ||
274 | sess.mac = 0; | ||
275 | if (ioctl(fd, CIOCGSESSION, &sess) != -1 && | ||
276 | ioctl(fd, CIOCFSESSION, &sess.ses) != -1) | ||
277 | nids[count++] = ciphers[i].nid; | ||
278 | } | ||
279 | close(fd); | ||
280 | |||
281 | if (count > 0) | ||
282 | *cnids = nids; | ||
283 | else | ||
284 | *cnids = NULL; | ||
285 | return (count); | ||
286 | } | ||
287 | |||
288 | /* | ||
289 | * 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! | ||
291 | * returning them here is harmless, as long as we return NULL | ||
292 | * when asked for a handler in the cryptodev_engine_digests routine | ||
293 | */ | ||
294 | static int | ||
295 | get_cryptodev_digests(const int **cnids) | ||
296 | { | ||
297 | static int nids[CRYPTO_ALGORITHM_MAX]; | ||
298 | struct session_op sess; | ||
299 | int fd, i, count = 0; | ||
300 | |||
301 | if ((fd = get_dev_crypto()) < 0) { | ||
302 | *cnids = NULL; | ||
303 | return (0); | ||
304 | } | ||
305 | memset(&sess, 0, sizeof(sess)); | ||
306 | for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) { | ||
307 | if (digests[i].nid == NID_undef) | ||
308 | continue; | ||
309 | sess.mac = digests[i].id; | ||
310 | sess.cipher = 0; | ||
311 | if (ioctl(fd, CIOCGSESSION, &sess) != -1 && | ||
312 | ioctl(fd, CIOCFSESSION, &sess.ses) != -1) | ||
313 | nids[count++] = digests[i].nid; | ||
314 | } | ||
315 | close(fd); | ||
316 | |||
317 | if (count > 0) | ||
318 | *cnids = nids; | ||
319 | else | ||
320 | *cnids = NULL; | ||
321 | return (count); | ||
322 | } | ||
323 | |||
324 | /* | ||
325 | * Find the useable ciphers|digests from dev/crypto - this is the first | ||
326 | * thing called by the engine init crud which determines what it | ||
327 | * can use for ciphers from this engine. We want to return | ||
328 | * only what we can do, anythine else is handled by software. | ||
329 | * | ||
330 | * If we can't initialize the device to do anything useful for | ||
331 | * any reason, we want to return a NULL array, and 0 length, | ||
332 | * which forces everything to be done is software. By putting | ||
333 | * the initalization of the device in here, we ensure we can | ||
334 | * use this engine as the default, and if for whatever reason | ||
335 | * /dev/crypto won't do what we want it will just be done in | ||
336 | * software | ||
337 | * | ||
338 | * This can (should) be greatly expanded to perhaps take into | ||
339 | * account speed of the device, and what we want to do. | ||
340 | * (although the disabling of particular alg's could be controlled | ||
341 | * by the device driver with sysctl's.) - this is where we | ||
342 | * want most of the decisions made about what we actually want | ||
343 | * to use from /dev/crypto. | ||
344 | */ | ||
345 | static int | ||
346 | cryptodev_usable_ciphers(const int **nids) | ||
347 | { | ||
348 | return (get_cryptodev_ciphers(nids)); | ||
349 | } | ||
350 | |||
351 | static int | ||
352 | cryptodev_usable_digests(const int **nids) | ||
353 | { | ||
354 | /* | ||
355 | * XXXX just disable all digests for now, because it sucks. | ||
356 | * we need a better way to decide this - i.e. I may not | ||
357 | * want digests on slow cards like hifn on fast machines, | ||
358 | * but might want them on slow or loaded machines, etc. | ||
359 | * will also want them when using crypto cards that don't | ||
360 | * suck moose gonads - would be nice to be able to decide something | ||
361 | * as reasonable default without having hackery that's card dependent. | ||
362 | * of course, the default should probably be just do everything, | ||
363 | * with perhaps a sysctl to turn algoritms off (or have them off | ||
364 | * by default) on cards that generally suck like the hifn. | ||
365 | */ | ||
366 | *nids = NULL; | ||
367 | return (0); | ||
368 | } | ||
369 | |||
370 | static int | ||
371 | cryptodev_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | ||
372 | const unsigned char *in, unsigned int inl) | ||
373 | { | ||
374 | struct crypt_op cryp; | ||
375 | struct dev_crypto_state *state = ctx->cipher_data; | ||
376 | struct session_op *sess = &state->d_sess; | ||
377 | void *iiv; | ||
378 | unsigned char save_iv[EVP_MAX_IV_LENGTH]; | ||
379 | |||
380 | if (state->d_fd < 0) | ||
381 | return (0); | ||
382 | if (!inl) | ||
383 | return (1); | ||
384 | if ((inl % ctx->cipher->block_size) != 0) | ||
385 | return (0); | ||
386 | |||
387 | memset(&cryp, 0, sizeof(cryp)); | ||
388 | |||
389 | cryp.ses = sess->ses; | ||
390 | cryp.flags = 0; | ||
391 | cryp.len = inl; | ||
392 | cryp.src = (caddr_t) in; | ||
393 | cryp.dst = (caddr_t) out; | ||
394 | cryp.mac = 0; | ||
395 | |||
396 | cryp.op = ctx->encrypt ? COP_ENCRYPT : COP_DECRYPT; | ||
397 | |||
398 | if (ctx->cipher->iv_len) { | ||
399 | cryp.iv = (caddr_t) ctx->iv; | ||
400 | if (!ctx->encrypt) { | ||
401 | iiv = (void *) in + inl - ctx->cipher->iv_len; | ||
402 | memcpy(save_iv, iiv, ctx->cipher->iv_len); | ||
403 | } | ||
404 | } else | ||
405 | cryp.iv = NULL; | ||
406 | |||
407 | if (ioctl(state->d_fd, CIOCCRYPT, &cryp) == -1) { | ||
408 | /* XXX need better errror handling | ||
409 | * this can fail for a number of different reasons. | ||
410 | */ | ||
411 | return (0); | ||
412 | } | ||
413 | |||
414 | if (ctx->cipher->iv_len) { | ||
415 | if (ctx->encrypt) | ||
416 | iiv = (void *) out + inl - ctx->cipher->iv_len; | ||
417 | else | ||
418 | iiv = save_iv; | ||
419 | memcpy(ctx->iv, iiv, ctx->cipher->iv_len); | ||
420 | } | ||
421 | return (1); | ||
422 | } | ||
423 | |||
424 | static int | ||
425 | cryptodev_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | ||
426 | const unsigned char *iv, int enc) | ||
427 | { | ||
428 | struct dev_crypto_state *state = ctx->cipher_data; | ||
429 | struct session_op *sess = &state->d_sess; | ||
430 | int cipher; | ||
431 | |||
432 | if ((cipher = cipher_nid_to_cryptodev(ctx->cipher->nid)) == NID_undef) | ||
433 | return (0); | ||
434 | |||
435 | if (ctx->cipher->iv_len > cryptodev_max_iv(cipher)) | ||
436 | return (0); | ||
437 | |||
438 | if (!cryptodev_key_length_valid(cipher, ctx->key_len)) | ||
439 | return (0); | ||
440 | |||
441 | memset(sess, 0, sizeof(struct session_op)); | ||
442 | |||
443 | if ((state->d_fd = get_dev_crypto()) < 0) | ||
444 | return (0); | ||
445 | |||
446 | sess->key = (unsigned char *)key; | ||
447 | sess->keylen = ctx->key_len; | ||
448 | sess->cipher = cipher; | ||
449 | |||
450 | if (ioctl(state->d_fd, CIOCGSESSION, sess) == -1) { | ||
451 | close(state->d_fd); | ||
452 | state->d_fd = -1; | ||
453 | return (0); | ||
454 | } | ||
455 | return (1); | ||
456 | } | ||
457 | |||
458 | /* | ||
459 | * free anything we allocated earlier when initting a | ||
460 | * session, and close the session. | ||
461 | */ | ||
462 | static int | ||
463 | cryptodev_cleanup(EVP_CIPHER_CTX *ctx) | ||
464 | { | ||
465 | int ret = 0; | ||
466 | struct dev_crypto_state *state = ctx->cipher_data; | ||
467 | struct session_op *sess = &state->d_sess; | ||
468 | |||
469 | if (state->d_fd < 0) | ||
470 | return (0); | ||
471 | |||
472 | /* XXX if this ioctl fails, someting's wrong. the invoker | ||
473 | * may have called us with a bogus ctx, or we could | ||
474 | * have a device that for whatever reason just doesn't | ||
475 | * want to play ball - it's not clear what's right | ||
476 | * here - should this be an error? should it just | ||
477 | * increase a counter, hmm. For right now, we return | ||
478 | * 0 - I don't believe that to be "right". we could | ||
479 | * call the gorpy openssl lib error handlers that | ||
480 | * print messages to users of the library. hmm.. | ||
481 | */ | ||
482 | |||
483 | if (ioctl(state->d_fd, CIOCFSESSION, &sess->ses) == -1) { | ||
484 | ret = 0; | ||
485 | } else { | ||
486 | ret = 1; | ||
487 | } | ||
488 | close(state->d_fd); | ||
489 | state->d_fd = -1; | ||
490 | |||
491 | return (ret); | ||
492 | } | ||
493 | |||
494 | /* | ||
495 | * libcrypto EVP stuff - this is how we get wired to EVP so the engine | ||
496 | * gets called when libcrypto requests a cipher NID. | ||
497 | */ | ||
498 | |||
499 | /* DES CBC EVP */ | ||
500 | const EVP_CIPHER cryptodev_des_cbc = { | ||
501 | NID_des_cbc, | ||
502 | 8, 8, 8, | ||
503 | EVP_CIPH_CBC_MODE, | ||
504 | cryptodev_init_key, | ||
505 | cryptodev_cipher, | ||
506 | cryptodev_cleanup, | ||
507 | sizeof(struct dev_crypto_state), | ||
508 | EVP_CIPHER_set_asn1_iv, | ||
509 | EVP_CIPHER_get_asn1_iv, | ||
510 | NULL | ||
511 | }; | ||
512 | |||
513 | /* 3DES CBC EVP */ | ||
514 | const EVP_CIPHER cryptodev_3des_cbc = { | ||
515 | NID_des_ede3_cbc, | ||
516 | 8, 24, 8, | ||
517 | EVP_CIPH_CBC_MODE, | ||
518 | cryptodev_init_key, | ||
519 | cryptodev_cipher, | ||
520 | cryptodev_cleanup, | ||
521 | sizeof(struct dev_crypto_state), | ||
522 | EVP_CIPHER_set_asn1_iv, | ||
523 | EVP_CIPHER_get_asn1_iv, | ||
524 | NULL | ||
525 | }; | ||
526 | |||
527 | const EVP_CIPHER cryptodev_bf_cbc = { | ||
528 | NID_bf_cbc, | ||
529 | 8, 16, 8, | ||
530 | EVP_CIPH_CBC_MODE, | ||
531 | cryptodev_init_key, | ||
532 | cryptodev_cipher, | ||
533 | cryptodev_cleanup, | ||
534 | sizeof(struct dev_crypto_state), | ||
535 | EVP_CIPHER_set_asn1_iv, | ||
536 | EVP_CIPHER_get_asn1_iv, | ||
537 | NULL | ||
538 | }; | ||
539 | |||
540 | const EVP_CIPHER cryptodev_cast_cbc = { | ||
541 | NID_cast5_cbc, | ||
542 | 8, 16, 8, | ||
543 | EVP_CIPH_CBC_MODE, | ||
544 | cryptodev_init_key, | ||
545 | cryptodev_cipher, | ||
546 | cryptodev_cleanup, | ||
547 | sizeof(struct dev_crypto_state), | ||
548 | EVP_CIPHER_set_asn1_iv, | ||
549 | EVP_CIPHER_get_asn1_iv, | ||
550 | NULL | ||
551 | }; | ||
552 | |||
553 | const EVP_CIPHER cryptodev_aes_cbc = { | ||
554 | NID_aes_128_cbc, | ||
555 | 16, 16, 16, | ||
556 | EVP_CIPH_CBC_MODE, | ||
557 | cryptodev_init_key, | ||
558 | cryptodev_cipher, | ||
559 | cryptodev_cleanup, | ||
560 | sizeof(struct dev_crypto_state), | ||
561 | EVP_CIPHER_set_asn1_iv, | ||
562 | EVP_CIPHER_get_asn1_iv, | ||
563 | NULL | ||
564 | }; | ||
565 | |||
566 | /* | ||
567 | * 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 | ||
569 | * top level - note, that list is restricted by what we answer with | ||
570 | */ | ||
571 | static int | ||
572 | cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher, | ||
573 | const int **nids, int nid) | ||
574 | { | ||
575 | if (!cipher) | ||
576 | return (cryptodev_usable_ciphers(nids)); | ||
577 | |||
578 | switch (nid) { | ||
579 | case NID_des_ede3_cbc: | ||
580 | *cipher = &cryptodev_3des_cbc; | ||
581 | break; | ||
582 | case NID_des_cbc: | ||
583 | *cipher = &cryptodev_des_cbc; | ||
584 | break; | ||
585 | case NID_bf_cbc: | ||
586 | *cipher = &cryptodev_bf_cbc; | ||
587 | break; | ||
588 | case NID_cast5_cbc: | ||
589 | *cipher = &cryptodev_cast_cbc; | ||
590 | break; | ||
591 | case NID_aes_128_cbc: | ||
592 | *cipher = &cryptodev_aes_cbc; | ||
593 | break; | ||
594 | default: | ||
595 | *cipher = NULL; | ||
596 | break; | ||
597 | } | ||
598 | return (*cipher != NULL); | ||
599 | } | ||
600 | |||
601 | static int | ||
602 | cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest, | ||
603 | const int **nids, int nid) | ||
604 | { | ||
605 | if (!digest) | ||
606 | return (cryptodev_usable_digests(nids)); | ||
607 | |||
608 | switch (nid) { | ||
609 | case NID_md5: | ||
610 | *digest = NULL; /* need to make a clean md5 critter */ | ||
611 | break; | ||
612 | default: | ||
613 | *digest = NULL; | ||
614 | break; | ||
615 | } | ||
616 | return (*digest != NULL); | ||
617 | } | ||
618 | |||
619 | /* | ||
620 | * Convert a BIGNUM to the representation that /dev/crypto needs. | ||
621 | * Upon completion of use, the caller is responsible for freeing | ||
622 | * crp->crp_p. | ||
623 | */ | ||
624 | static int | ||
625 | bn2crparam(const BIGNUM *a, struct crparam *crp) | ||
626 | { | ||
627 | int i, j, k; | ||
628 | ssize_t words, bytes, bits; | ||
629 | u_char *b; | ||
630 | |||
631 | crp->crp_p = NULL; | ||
632 | crp->crp_nbits = 0; | ||
633 | |||
634 | bits = BN_num_bits(a); | ||
635 | bytes = (bits + 7) / 8; | ||
636 | |||
637 | b = malloc(bytes); | ||
638 | if (b == NULL) | ||
639 | return (1); | ||
640 | |||
641 | crp->crp_p = b; | ||
642 | crp->crp_nbits = bits; | ||
643 | |||
644 | for (i = 0, j = 0; i < a->top; i++) { | ||
645 | for (k = 0; k < BN_BITS2 / 8; k++) { | ||
646 | if ((j + k) >= bytes) | ||
647 | return (0); | ||
648 | b[j + k] = a->d[i] >> (k * 8); | ||
649 | } | ||
650 | j += BN_BITS2 / 8; | ||
651 | } | ||
652 | return (0); | ||
653 | } | ||
654 | |||
655 | /* Convert a /dev/crypto parameter to a BIGNUM */ | ||
656 | static int | ||
657 | crparam2bn(struct crparam *crp, BIGNUM *a) | ||
658 | { | ||
659 | u_int8_t *pd; | ||
660 | int i, bytes; | ||
661 | |||
662 | bytes = (crp->crp_nbits + 7) / 8; | ||
663 | |||
664 | if (bytes == 0) | ||
665 | return (-1); | ||
666 | |||
667 | if ((pd = (u_int8_t *) malloc(bytes)) == NULL) | ||
668 | return (-1); | ||
669 | |||
670 | for (i = 0; i < bytes; i++) | ||
671 | pd[i] = crp->crp_p[bytes - i - 1]; | ||
672 | |||
673 | BN_bin2bn(pd, bytes, a); | ||
674 | free(pd); | ||
675 | |||
676 | return (0); | ||
677 | } | ||
678 | |||
679 | static void | ||
680 | zapparams(struct crypt_kop *kop) | ||
681 | { | ||
682 | int i; | ||
683 | |||
684 | for (i = 0; i <= kop->crk_iparams + kop->crk_oparams; i++) { | ||
685 | if (kop->crk_param[i].crp_p) | ||
686 | free(kop->crk_param[i].crp_p); | ||
687 | kop->crk_param[i].crp_p = NULL; | ||
688 | kop->crk_param[i].crp_nbits = 0; | ||
689 | } | ||
690 | } | ||
691 | |||
692 | static int | ||
693 | cryptodev_asym(struct crypt_kop *kop, int rlen, BIGNUM *r, int slen, BIGNUM *s) | ||
694 | { | ||
695 | int fd, ret = -1; | ||
696 | |||
697 | if ((fd = get_asym_dev_crypto()) < 0) | ||
698 | return (ret); | ||
699 | |||
700 | if (r) { | ||
701 | kop->crk_param[kop->crk_iparams].crp_p = calloc(rlen, sizeof(char)); | ||
702 | kop->crk_param[kop->crk_iparams].crp_nbits = rlen * 8; | ||
703 | kop->crk_oparams++; | ||
704 | } | ||
705 | if (s) { | ||
706 | kop->crk_param[kop->crk_iparams+1].crp_p = calloc(slen, sizeof(char)); | ||
707 | kop->crk_param[kop->crk_iparams+1].crp_nbits = slen * 8; | ||
708 | kop->crk_oparams++; | ||
709 | } | ||
710 | |||
711 | if (ioctl(fd, CIOCKEY, kop) == 0) { | ||
712 | if (r) | ||
713 | crparam2bn(&kop->crk_param[kop->crk_iparams], r); | ||
714 | if (s) | ||
715 | crparam2bn(&kop->crk_param[kop->crk_iparams+1], s); | ||
716 | ret = 0; | ||
717 | } | ||
718 | |||
719 | return (ret); | ||
720 | } | ||
721 | |||
722 | static int | ||
723 | cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, | ||
724 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *in_mont) | ||
725 | { | ||
726 | struct crypt_kop kop; | ||
727 | int ret = 1; | ||
728 | |||
729 | /* Currently, we know we can do mod exp iff we can do any | ||
730 | * asymmetric operations at all. | ||
731 | */ | ||
732 | if (cryptodev_asymfeat == 0) { | ||
733 | ret = BN_mod_exp(r, a, p, m, ctx); | ||
734 | return (ret); | ||
735 | } | ||
736 | |||
737 | memset(&kop, 0, sizeof kop); | ||
738 | kop.crk_op = CRK_MOD_EXP; | ||
739 | |||
740 | /* inputs: a^p % m */ | ||
741 | if (bn2crparam(a, &kop.crk_param[0])) | ||
742 | goto err; | ||
743 | if (bn2crparam(p, &kop.crk_param[1])) | ||
744 | goto err; | ||
745 | if (bn2crparam(m, &kop.crk_param[2])) | ||
746 | goto err; | ||
747 | kop.crk_iparams = 3; | ||
748 | |||
749 | if (cryptodev_asym(&kop, BN_num_bytes(m), r, 0, NULL) == -1) { | ||
750 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); | ||
751 | ret = meth->bn_mod_exp(r, a, p, m, ctx, in_mont); | ||
752 | } | ||
753 | err: | ||
754 | zapparams(&kop); | ||
755 | return (ret); | ||
756 | } | ||
757 | |||
758 | static int | ||
759 | cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa) | ||
760 | { | ||
761 | int r; | ||
762 | BN_CTX *ctx; | ||
763 | |||
764 | ctx = BN_CTX_new(); | ||
765 | r = cryptodev_bn_mod_exp(r0, I, rsa->d, rsa->n, ctx, NULL); | ||
766 | BN_CTX_free(ctx); | ||
767 | return (r); | ||
768 | } | ||
769 | |||
770 | static int | ||
771 | cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx) | ||
772 | { | ||
773 | struct crypt_kop kop; | ||
774 | int ret = 1; | ||
775 | |||
776 | if (!rsa->p || !rsa->q || !rsa->dmp1 || !rsa->dmq1 || !rsa->iqmp) { | ||
777 | /* XXX 0 means failure?? */ | ||
778 | return (0); | ||
779 | } | ||
780 | |||
781 | memset(&kop, 0, sizeof kop); | ||
782 | kop.crk_op = CRK_MOD_EXP_CRT; | ||
783 | /* inputs: rsa->p rsa->q I rsa->dmp1 rsa->dmq1 rsa->iqmp */ | ||
784 | if (bn2crparam(rsa->p, &kop.crk_param[0])) | ||
785 | goto err; | ||
786 | if (bn2crparam(rsa->q, &kop.crk_param[1])) | ||
787 | goto err; | ||
788 | if (bn2crparam(I, &kop.crk_param[2])) | ||
789 | goto err; | ||
790 | if (bn2crparam(rsa->dmp1, &kop.crk_param[3])) | ||
791 | goto err; | ||
792 | if (bn2crparam(rsa->dmq1, &kop.crk_param[4])) | ||
793 | goto err; | ||
794 | if (bn2crparam(rsa->iqmp, &kop.crk_param[5])) | ||
795 | goto err; | ||
796 | kop.crk_iparams = 6; | ||
797 | |||
798 | if (cryptodev_asym(&kop, BN_num_bytes(rsa->n), r0, 0, NULL) == -1) { | ||
799 | const RSA_METHOD *meth = RSA_PKCS1_SSLeay(); | ||
800 | ret = (*meth->rsa_mod_exp)(r0, I, rsa, ctx); | ||
801 | } | ||
802 | err: | ||
803 | zapparams(&kop); | ||
804 | return (ret); | ||
805 | } | ||
806 | |||
807 | static RSA_METHOD cryptodev_rsa = { | ||
808 | "cryptodev RSA method", | ||
809 | NULL, /* rsa_pub_enc */ | ||
810 | NULL, /* rsa_pub_dec */ | ||
811 | NULL, /* rsa_priv_enc */ | ||
812 | NULL, /* rsa_priv_dec */ | ||
813 | NULL, | ||
814 | NULL, | ||
815 | NULL, /* init */ | ||
816 | NULL, /* finish */ | ||
817 | 0, /* flags */ | ||
818 | NULL, /* app_data */ | ||
819 | NULL, /* rsa_sign */ | ||
820 | NULL /* rsa_verify */ | ||
821 | }; | ||
822 | |||
823 | static int | ||
824 | cryptodev_dsa_bn_mod_exp(DSA *dsa, BIGNUM *r, BIGNUM *a, const BIGNUM *p, | ||
825 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx) | ||
826 | { | ||
827 | return (cryptodev_bn_mod_exp(r, a, p, m, ctx, m_ctx)); | ||
828 | } | ||
829 | |||
830 | static int | ||
831 | cryptodev_dsa_dsa_mod_exp(DSA *dsa, BIGNUM *t1, BIGNUM *g, | ||
832 | BIGNUM *u1, BIGNUM *pub_key, BIGNUM *u2, BIGNUM *p, | ||
833 | BN_CTX *ctx, BN_MONT_CTX *mont) | ||
834 | { | ||
835 | BIGNUM t2; | ||
836 | int ret = 0; | ||
837 | |||
838 | BN_init(&t2); | ||
839 | |||
840 | /* v = ( g^u1 * y^u2 mod p ) mod q */ | ||
841 | /* let t1 = g ^ u1 mod p */ | ||
842 | ret = 0; | ||
843 | |||
844 | if (!dsa->meth->bn_mod_exp(dsa,t1,dsa->g,u1,dsa->p,ctx,mont)) | ||
845 | goto err; | ||
846 | |||
847 | /* let t2 = y ^ u2 mod p */ | ||
848 | if (!dsa->meth->bn_mod_exp(dsa,&t2,dsa->pub_key,u2,dsa->p,ctx,mont)) | ||
849 | goto err; | ||
850 | /* let u1 = t1 * t2 mod p */ | ||
851 | if (!BN_mod_mul(u1,t1,&t2,dsa->p,ctx)) | ||
852 | goto err; | ||
853 | |||
854 | BN_copy(t1,u1); | ||
855 | |||
856 | ret = 1; | ||
857 | err: | ||
858 | BN_free(&t2); | ||
859 | return(ret); | ||
860 | } | ||
861 | |||
862 | static DSA_SIG * | ||
863 | cryptodev_dsa_do_sign(const unsigned char *dgst, int dlen, DSA *dsa) | ||
864 | { | ||
865 | struct crypt_kop kop; | ||
866 | BIGNUM *r = NULL, *s = NULL; | ||
867 | DSA_SIG *dsaret = NULL; | ||
868 | |||
869 | if ((r = BN_new()) == NULL) | ||
870 | goto err; | ||
871 | if ((s = BN_new()) == NULL) { | ||
872 | BN_free(r); | ||
873 | goto err; | ||
874 | } | ||
875 | |||
876 | memset(&kop, 0, sizeof kop); | ||
877 | kop.crk_op = CRK_DSA_SIGN; | ||
878 | |||
879 | /* inputs: dgst dsa->p dsa->q dsa->g dsa->priv_key */ | ||
880 | kop.crk_param[0].crp_p = (caddr_t)dgst; | ||
881 | kop.crk_param[0].crp_nbits = dlen * 8; | ||
882 | if (bn2crparam(dsa->p, &kop.crk_param[1])) | ||
883 | goto err; | ||
884 | if (bn2crparam(dsa->q, &kop.crk_param[2])) | ||
885 | goto err; | ||
886 | if (bn2crparam(dsa->g, &kop.crk_param[3])) | ||
887 | goto err; | ||
888 | if (bn2crparam(dsa->priv_key, &kop.crk_param[4])) | ||
889 | goto err; | ||
890 | kop.crk_iparams = 5; | ||
891 | |||
892 | if (cryptodev_asym(&kop, BN_num_bytes(dsa->q), r, | ||
893 | BN_num_bytes(dsa->q), s) == 0) { | ||
894 | dsaret = DSA_SIG_new(); | ||
895 | dsaret->r = r; | ||
896 | dsaret->s = s; | ||
897 | } else { | ||
898 | const DSA_METHOD *meth = DSA_OpenSSL(); | ||
899 | BN_free(r); | ||
900 | BN_free(s); | ||
901 | dsaret = (meth->dsa_do_sign)(dgst, dlen, dsa); | ||
902 | } | ||
903 | err: | ||
904 | kop.crk_param[0].crp_p = NULL; | ||
905 | zapparams(&kop); | ||
906 | return (dsaret); | ||
907 | } | ||
908 | |||
909 | static int | ||
910 | cryptodev_dsa_verify(const unsigned char *dgst, int dlen, | ||
911 | DSA_SIG *sig, DSA *dsa) | ||
912 | { | ||
913 | struct crypt_kop kop; | ||
914 | int dsaret = 1; | ||
915 | |||
916 | memset(&kop, 0, sizeof kop); | ||
917 | kop.crk_op = CRK_DSA_VERIFY; | ||
918 | |||
919 | /* inputs: dgst dsa->p dsa->q dsa->g dsa->pub_key sig->r sig->s */ | ||
920 | kop.crk_param[0].crp_p = (caddr_t)dgst; | ||
921 | kop.crk_param[0].crp_nbits = dlen * 8; | ||
922 | if (bn2crparam(dsa->p, &kop.crk_param[1])) | ||
923 | goto err; | ||
924 | if (bn2crparam(dsa->q, &kop.crk_param[2])) | ||
925 | goto err; | ||
926 | if (bn2crparam(dsa->g, &kop.crk_param[3])) | ||
927 | goto err; | ||
928 | if (bn2crparam(dsa->pub_key, &kop.crk_param[4])) | ||
929 | goto err; | ||
930 | if (bn2crparam(sig->r, &kop.crk_param[5])) | ||
931 | goto err; | ||
932 | if (bn2crparam(sig->s, &kop.crk_param[6])) | ||
933 | goto err; | ||
934 | kop.crk_iparams = 7; | ||
935 | |||
936 | if (cryptodev_asym(&kop, 0, NULL, 0, NULL) == 0) { | ||
937 | dsaret = kop.crk_status; | ||
938 | } else { | ||
939 | const DSA_METHOD *meth = DSA_OpenSSL(); | ||
940 | |||
941 | dsaret = (meth->dsa_do_verify)(dgst, dlen, sig, dsa); | ||
942 | } | ||
943 | err: | ||
944 | kop.crk_param[0].crp_p = NULL; | ||
945 | zapparams(&kop); | ||
946 | return (dsaret); | ||
947 | } | ||
948 | |||
949 | static DSA_METHOD cryptodev_dsa = { | ||
950 | "cryptodev DSA method", | ||
951 | NULL, | ||
952 | NULL, /* dsa_sign_setup */ | ||
953 | NULL, | ||
954 | NULL, /* dsa_mod_exp */ | ||
955 | NULL, | ||
956 | NULL, /* init */ | ||
957 | NULL, /* finish */ | ||
958 | 0, /* flags */ | ||
959 | NULL /* app_data */ | ||
960 | }; | ||
961 | |||
962 | static int | ||
963 | cryptodev_mod_exp_dh(const DH *dh, BIGNUM *r, const BIGNUM *a, | ||
964 | const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, | ||
965 | BN_MONT_CTX *m_ctx) | ||
966 | { | ||
967 | return (cryptodev_bn_mod_exp(r, a, p, m, ctx, m_ctx)); | ||
968 | } | ||
969 | |||
970 | static int | ||
971 | cryptodev_dh_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) | ||
972 | { | ||
973 | struct crypt_kop kop; | ||
974 | int dhret = 1; | ||
975 | int fd, keylen; | ||
976 | |||
977 | if ((fd = get_asym_dev_crypto()) < 0) { | ||
978 | const DH_METHOD *meth = DH_OpenSSL(); | ||
979 | |||
980 | return ((meth->compute_key)(key, pub_key, dh)); | ||
981 | } | ||
982 | |||
983 | keylen = BN_num_bits(dh->p); | ||
984 | |||
985 | memset(&kop, 0, sizeof kop); | ||
986 | kop.crk_op = CRK_DH_COMPUTE_KEY; | ||
987 | |||
988 | /* inputs: dh->priv_key pub_key dh->p key */ | ||
989 | if (bn2crparam(dh->priv_key, &kop.crk_param[0])) | ||
990 | goto err; | ||
991 | if (bn2crparam(pub_key, &kop.crk_param[1])) | ||
992 | goto err; | ||
993 | if (bn2crparam(dh->p, &kop.crk_param[2])) | ||
994 | goto err; | ||
995 | kop.crk_iparams = 3; | ||
996 | |||
997 | kop.crk_param[3].crp_p = key; | ||
998 | kop.crk_param[3].crp_nbits = keylen * 8; | ||
999 | kop.crk_oparams = 1; | ||
1000 | |||
1001 | if (ioctl(fd, CIOCKEY, &kop) == -1) { | ||
1002 | const DH_METHOD *meth = DH_OpenSSL(); | ||
1003 | |||
1004 | dhret = (meth->compute_key)(key, pub_key, dh); | ||
1005 | } | ||
1006 | err: | ||
1007 | kop.crk_param[3].crp_p = NULL; | ||
1008 | zapparams(&kop); | ||
1009 | return (dhret); | ||
1010 | } | ||
1011 | |||
1012 | static DH_METHOD cryptodev_dh = { | ||
1013 | "cryptodev DH method", | ||
1014 | NULL, /* cryptodev_dh_generate_key */ | ||
1015 | NULL, | ||
1016 | NULL, | ||
1017 | NULL, | ||
1018 | NULL, | ||
1019 | 0, /* flags */ | ||
1020 | NULL /* app_data */ | ||
1021 | }; | ||
1022 | |||
1023 | /* | ||
1024 | * ctrl right now is just a wrapper that doesn't do much | ||
1025 | * but I expect we'll want some options soon. | ||
1026 | */ | ||
1027 | static int | ||
1028 | cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | ||
1029 | { | ||
1030 | #ifdef HAVE_SYSLOG_R | ||
1031 | struct syslog_data sd = SYSLOG_DATA_INIT; | ||
1032 | #endif | ||
1033 | |||
1034 | switch (cmd) { | ||
1035 | default: | ||
1036 | #ifdef HAVE_SYSLOG_R | ||
1037 | syslog_r(LOG_ERR, &sd, | ||
1038 | "cryptodev_ctrl: unknown command %d", cmd); | ||
1039 | #else | ||
1040 | syslog(LOG_ERR, "cryptodev_ctrl: unknown command %d", cmd); | ||
1041 | #endif | ||
1042 | break; | ||
1043 | } | ||
1044 | return (1); | ||
1045 | } | ||
1046 | |||
1047 | void | ||
1048 | ENGINE_load_cryptodev(void) | ||
1049 | { | ||
1050 | ENGINE *engine = ENGINE_new(); | ||
1051 | int fd; | ||
1052 | |||
1053 | if (engine == NULL) | ||
1054 | return; | ||
1055 | if ((fd = get_dev_crypto()) < 0) { | ||
1056 | ENGINE_free(engine); | ||
1057 | return; | ||
1058 | } | ||
1059 | |||
1060 | /* | ||
1061 | * find out what asymmetric crypto algorithms we support | ||
1062 | */ | ||
1063 | if (ioctl(fd, CIOCASYMFEAT, &cryptodev_asymfeat) == -1) { | ||
1064 | close(fd); | ||
1065 | ENGINE_free(engine); | ||
1066 | return; | ||
1067 | } | ||
1068 | close(fd); | ||
1069 | |||
1070 | if (!ENGINE_set_id(engine, "cryptodev") || | ||
1071 | !ENGINE_set_name(engine, "BSD cryptodev engine") || | ||
1072 | !ENGINE_set_ciphers(engine, cryptodev_engine_ciphers) || | ||
1073 | !ENGINE_set_digests(engine, cryptodev_engine_digests) || | ||
1074 | !ENGINE_set_ctrl_function(engine, cryptodev_ctrl) || | ||
1075 | !ENGINE_set_cmd_defns(engine, cryptodev_defns)) { | ||
1076 | ENGINE_free(engine); | ||
1077 | return; | ||
1078 | } | ||
1079 | |||
1080 | if (ENGINE_set_RSA(engine, &cryptodev_rsa)) { | ||
1081 | const RSA_METHOD *rsa_meth = RSA_PKCS1_SSLeay(); | ||
1082 | |||
1083 | cryptodev_rsa.bn_mod_exp = rsa_meth->bn_mod_exp; | ||
1084 | cryptodev_rsa.rsa_mod_exp = rsa_meth->rsa_mod_exp; | ||
1085 | cryptodev_rsa.rsa_pub_enc = rsa_meth->rsa_pub_enc; | ||
1086 | cryptodev_rsa.rsa_pub_dec = rsa_meth->rsa_pub_dec; | ||
1087 | cryptodev_rsa.rsa_priv_enc = rsa_meth->rsa_priv_enc; | ||
1088 | cryptodev_rsa.rsa_priv_dec = rsa_meth->rsa_priv_dec; | ||
1089 | if (cryptodev_asymfeat & CRF_MOD_EXP) { | ||
1090 | cryptodev_rsa.bn_mod_exp = cryptodev_bn_mod_exp; | ||
1091 | if (cryptodev_asymfeat & CRF_MOD_EXP_CRT) | ||
1092 | cryptodev_rsa.rsa_mod_exp = | ||
1093 | cryptodev_rsa_mod_exp; | ||
1094 | else | ||
1095 | cryptodev_rsa.rsa_mod_exp = | ||
1096 | cryptodev_rsa_nocrt_mod_exp; | ||
1097 | } | ||
1098 | } | ||
1099 | |||
1100 | if (ENGINE_set_DSA(engine, &cryptodev_dsa)) { | ||
1101 | const DSA_METHOD *meth = DSA_OpenSSL(); | ||
1102 | |||
1103 | memcpy(&cryptodev_dsa, meth, sizeof(DSA_METHOD)); | ||
1104 | if (cryptodev_asymfeat & CRF_DSA_SIGN) | ||
1105 | cryptodev_dsa.dsa_do_sign = cryptodev_dsa_do_sign; | ||
1106 | if (cryptodev_asymfeat & CRF_MOD_EXP) { | ||
1107 | cryptodev_dsa.bn_mod_exp = cryptodev_dsa_bn_mod_exp; | ||
1108 | cryptodev_dsa.dsa_mod_exp = cryptodev_dsa_dsa_mod_exp; | ||
1109 | } | ||
1110 | if (cryptodev_asymfeat & CRF_DSA_VERIFY) | ||
1111 | cryptodev_dsa.dsa_do_verify = cryptodev_dsa_verify; | ||
1112 | } | ||
1113 | |||
1114 | if (ENGINE_set_DH(engine, &cryptodev_dh)){ | ||
1115 | const DH_METHOD *dh_meth = DH_OpenSSL(); | ||
1116 | |||
1117 | cryptodev_dh.generate_key = dh_meth->generate_key; | ||
1118 | cryptodev_dh.compute_key = dh_meth->compute_key; | ||
1119 | cryptodev_dh.bn_mod_exp = dh_meth->bn_mod_exp; | ||
1120 | if (cryptodev_asymfeat & CRF_MOD_EXP) { | ||
1121 | cryptodev_dh.bn_mod_exp = cryptodev_mod_exp_dh; | ||
1122 | if (cryptodev_asymfeat & CRF_DH_COMPUTE_KEY) | ||
1123 | cryptodev_dh.compute_key = | ||
1124 | cryptodev_dh_compute_key; | ||
1125 | } | ||
1126 | } | ||
1127 | |||
1128 | ENGINE_add(engine); | ||
1129 | ENGINE_free(engine); | ||
1130 | ERR_clear_error(); | ||
1131 | } | ||
1132 | |||
1133 | #endif /* HAVE_CRYPTODEV */ | ||
diff --git a/src/lib/libcrypto/err/Makefile b/src/lib/libcrypto/err/Makefile index 4adec55302..23e38409c8 100644 --- a/src/lib/libcrypto/err/Makefile +++ b/src/lib/libcrypto/err/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -81,38 +78,32 @@ err.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/buffer.h | |||
81 | err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 78 | err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
82 | err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 79 | err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
83 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 80 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
84 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 81 | err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
85 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c | 82 | err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
86 | err_all.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 83 | err.o: ../cryptlib.h err.c |
87 | err_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 84 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
88 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 85 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
89 | err_all.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 86 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
90 | err_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 87 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
91 | err_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 88 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
92 | err_all.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 89 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
93 | err_all.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 90 | err_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/engine.h |
94 | err_all.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 91 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
95 | err_all.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 92 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
96 | err_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 93 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
97 | err_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 94 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
98 | err_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 95 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h |
99 | err_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 96 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
100 | err_all.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 97 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
101 | err_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 98 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
102 | err_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 99 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
103 | err_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 100 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h |
104 | err_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
105 | err_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
106 | err_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
107 | err_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
108 | err_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
109 | err_all.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
110 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 101 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
111 | err_all.o: err_all.c | 102 | err_all.o: err_all.c |
112 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | 103 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h |
113 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 104 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
114 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 105 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
115 | err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 106 | err_prn.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
116 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 107 | err_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
117 | err_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 108 | err_prn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
118 | err_prn.o: ../cryptlib.h err_prn.c | 109 | err_prn.o: ../../include/openssl/symhacks.h ../cryptlib.h err_prn.c |
diff --git a/src/lib/libcrypto/evp/Makefile b/src/lib/libcrypto/evp/Makefile index d1c2a272bb..8f2555c7e5 100644 --- a/src/lib/libcrypto/evp/Makefile +++ b/src/lib/libcrypto/evp/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -24,11 +19,11 @@ APPS= | |||
24 | 19 | ||
25 | LIB=$(TOP)/libcrypto.a | 20 | LIB=$(TOP)/libcrypto.a |
26 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \ | 21 | LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \ |
27 | e_des.c e_bf.c e_idea.c e_des3.c \ | 22 | e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c\ |
28 | e_rc4.c e_aes.c names.c \ | 23 | e_rc4.c e_aes.c names.c e_seed.c \ |
29 | e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \ | 24 | e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c \ |
30 | m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c \ | 25 | m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c \ |
31 | m_dss.c m_dss1.c m_mdc2.c m_ripemd.c \ | 26 | m_dss.c m_dss1.c m_mdc2.c m_ripemd.c m_ecdsa.c\ |
32 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ | 27 | p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c \ |
33 | bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \ | 28 | bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \ |
34 | c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \ | 29 | c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c \ |
@@ -36,11 +31,11 @@ LIBSRC= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c \ | |||
36 | e_old.c | 31 | e_old.c |
37 | 32 | ||
38 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o \ | 33 | LIBOBJ= encode.o digest.o evp_enc.o evp_key.o evp_acnf.o \ |
39 | e_des.o e_bf.o e_idea.o e_des3.o \ | 34 | e_des.o e_bf.o e_idea.o e_des3.o e_camellia.o\ |
40 | e_rc4.o e_aes.o names.o \ | 35 | e_rc4.o e_aes.o names.o e_seed.o \ |
41 | e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \ | 36 | e_xcbc_d.o e_rc2.o e_cast.o e_rc5.o \ |
42 | m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o \ | 37 | m_null.o m_md2.o m_md4.o m_md5.o m_sha.o m_sha1.o \ |
43 | m_dss.o m_dss1.o m_mdc2.o m_ripemd.o \ | 38 | m_dss.o m_dss1.o m_mdc2.o m_ripemd.o m_ecdsa.o\ |
44 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ | 39 | p_open.o p_seal.o p_sign.o p_verify.o p_lib.o p_enc.o p_dec.o \ |
45 | bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \ | 40 | bio_md.o bio_b64.o bio_enc.o evp_err.o e_null.o \ |
46 | c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \ | 41 | c_all.o c_allc.o c_alld.o evp_lib.o bio_ok.o \ |
@@ -74,6 +69,7 @@ links: | |||
74 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 69 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
75 | 70 | ||
76 | install: | 71 | install: |
72 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
77 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 73 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
78 | do \ | 74 | do \ |
79 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 75 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -89,6 +85,7 @@ lint: | |||
89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 85 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
90 | 86 | ||
91 | depend: | 87 | depend: |
88 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
92 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | 89 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) |
93 | 90 | ||
94 | dclean: | 91 | dclean: |
@@ -100,977 +97,550 @@ clean: | |||
100 | 97 | ||
101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 98 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
102 | 99 | ||
103 | bio_b64.o: ../../e_os.h ../../include/openssl/aes.h | 100 | bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h |
104 | bio_b64.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 101 | bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
105 | bio_b64.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 102 | bio_b64.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
106 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
107 | bio_b64.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
108 | bio_b64.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
109 | bio_b64.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
110 | bio_b64.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 103 | bio_b64.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
111 | bio_b64.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 104 | bio_b64.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
112 | bio_b64.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 105 | bio_b64.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
113 | bio_b64.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 106 | bio_b64.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
114 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 107 | bio_b64.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
115 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 108 | bio_b64.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_b64.c |
116 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | 109 | bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h |
117 | bio_b64.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 110 | bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
118 | bio_b64.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 111 | bio_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
119 | bio_b64.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
120 | bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
121 | bio_b64.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
122 | bio_b64.o: ../cryptlib.h bio_b64.c | ||
123 | bio_enc.o: ../../e_os.h ../../include/openssl/aes.h | ||
124 | bio_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
125 | bio_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
126 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
127 | bio_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
128 | bio_enc.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
129 | bio_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
130 | bio_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 112 | bio_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
131 | bio_enc.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 113 | bio_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
132 | bio_enc.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 114 | bio_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
133 | bio_enc.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 115 | bio_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
134 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 116 | bio_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
135 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 117 | bio_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_enc.c |
136 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | 118 | bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
137 | bio_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 119 | bio_md.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
138 | bio_enc.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
139 | bio_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
140 | bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
141 | bio_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
142 | bio_enc.o: ../cryptlib.h bio_enc.c | ||
143 | bio_md.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
144 | bio_md.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
145 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
146 | bio_md.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
147 | bio_md.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
148 | bio_md.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
149 | bio_md.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 120 | bio_md.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
150 | bio_md.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 121 | bio_md.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
151 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 122 | bio_md.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
152 | bio_md.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 123 | bio_md.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
153 | bio_md.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 124 | bio_md.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
154 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 125 | bio_md.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
155 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 126 | bio_md.o: ../cryptlib.h bio_md.c |
156 | bio_md.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 127 | bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
157 | bio_md.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 128 | bio_ok.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
158 | bio_md.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
159 | bio_md.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
160 | bio_md.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
161 | bio_md.o: ../../include/openssl/ui_compat.h ../cryptlib.h bio_md.c | ||
162 | bio_ok.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
163 | bio_ok.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
164 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
165 | bio_ok.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
166 | bio_ok.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
167 | bio_ok.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
168 | bio_ok.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 129 | bio_ok.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
169 | bio_ok.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 130 | bio_ok.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
170 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 131 | bio_ok.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
171 | bio_ok.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 132 | bio_ok.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
172 | bio_ok.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 133 | bio_ok.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
173 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 134 | bio_ok.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
174 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 135 | bio_ok.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_ok.c |
175 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 136 | c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
176 | bio_ok.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 137 | c_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
177 | bio_ok.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
178 | bio_ok.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
179 | bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
180 | bio_ok.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
181 | bio_ok.o: ../cryptlib.h bio_ok.c | ||
182 | c_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
183 | c_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
184 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
185 | c_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
186 | c_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
187 | c_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
188 | c_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 138 | c_all.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
189 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 139 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
190 | c_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 140 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
191 | c_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 141 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
192 | c_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 142 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
193 | c_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 143 | c_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
194 | c_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 144 | c_all.o: ../../include/openssl/symhacks.h ../cryptlib.h c_all.c |
195 | c_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 145 | c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
196 | c_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 146 | c_allc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
197 | c_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 147 | c_allc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
198 | c_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 148 | c_allc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
199 | c_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 149 | c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
200 | c_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 150 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
201 | c_all.o: ../../include/openssl/ui_compat.h ../cryptlib.h c_all.c | ||
202 | c_allc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
203 | c_allc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
204 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
205 | c_allc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
206 | c_allc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
207 | c_allc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
208 | c_allc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
209 | c_allc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
210 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
211 | c_allc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
212 | c_allc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
213 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 151 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
214 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 152 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
215 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 153 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
216 | c_allc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 154 | c_allc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
217 | c_allc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 155 | c_allc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
218 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 156 | c_allc.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
219 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 157 | c_allc.o: ../cryptlib.h c_allc.c |
220 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 158 | c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
221 | c_allc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 159 | c_alld.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
222 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c | 160 | c_alld.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
223 | c_alld.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 161 | c_alld.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
224 | c_alld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 162 | c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
225 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 163 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
226 | c_alld.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
227 | c_alld.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
228 | c_alld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
229 | c_alld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
230 | c_alld.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
231 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
232 | c_alld.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
233 | c_alld.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
234 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 164 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
235 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 165 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
236 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 166 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
237 | c_alld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 167 | c_alld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
238 | c_alld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 168 | c_alld.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
239 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 169 | c_alld.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
240 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 170 | c_alld.o: ../cryptlib.h c_alld.c |
241 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 171 | digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
242 | c_alld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 172 | digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
243 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c | ||
244 | digest.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
245 | digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
246 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
247 | digest.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
248 | digest.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
249 | digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
250 | digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 173 | digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
251 | digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 174 | digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
252 | digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 175 | digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
253 | digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 176 | digest.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
254 | digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 177 | digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
255 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 178 | digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
256 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 179 | digest.o: ../../include/openssl/symhacks.h ../cryptlib.h digest.c |
257 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
258 | digest.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
259 | digest.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
260 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
261 | digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
262 | digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
263 | digest.o: ../../include/openssl/ui_compat.h ../cryptlib.h digest.c | ||
264 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 180 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
265 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 181 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
266 | e_aes.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | 182 | e_aes.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
267 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 183 | e_aes.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
268 | e_aes.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
269 | e_aes.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
270 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
271 | e_aes.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
272 | e_aes.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
273 | e_aes.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
274 | e_aes.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 184 | e_aes.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
275 | e_aes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 185 | e_aes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
276 | e_aes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | 186 | e_aes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
277 | e_aes.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 187 | e_aes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h e_aes.c |
278 | e_aes.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
279 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
280 | e_aes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
281 | e_aes.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h e_aes.c | ||
282 | e_aes.o: evp_locl.h | 188 | e_aes.o: evp_locl.h |
283 | e_bf.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 189 | e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
284 | e_bf.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 190 | e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/buffer.h |
285 | e_bf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 191 | e_bf.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
286 | e_bf.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 192 | e_bf.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
287 | e_bf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 193 | e_bf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
288 | e_bf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
289 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
290 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
291 | e_bf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
292 | e_bf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
293 | e_bf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
294 | e_bf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 194 | e_bf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
295 | e_bf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 195 | e_bf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
296 | e_bf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 196 | e_bf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
297 | e_bf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 197 | e_bf.o: ../../include/openssl/symhacks.h ../cryptlib.h e_bf.c evp_locl.h |
298 | e_bf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 198 | e_camellia.o: ../../include/openssl/opensslconf.h e_camellia.c |
299 | e_bf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 199 | e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
300 | e_bf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 200 | e_cast.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
301 | e_bf.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_bf.c evp_locl.h | 201 | e_cast.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
302 | e_cast.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 202 | e_cast.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
303 | e_cast.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 203 | e_cast.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
304 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
305 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
306 | e_cast.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
307 | e_cast.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
308 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
309 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
310 | e_cast.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
311 | e_cast.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
312 | e_cast.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
313 | e_cast.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 204 | e_cast.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
314 | e_cast.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 205 | e_cast.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
315 | e_cast.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 206 | e_cast.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
316 | e_cast.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 207 | e_cast.o: ../../include/openssl/symhacks.h ../cryptlib.h e_cast.c evp_locl.h |
317 | e_cast.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 208 | e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
318 | e_cast.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 209 | e_des.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
319 | e_cast.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
320 | e_cast.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_cast.c evp_locl.h | ||
321 | e_des.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
322 | e_des.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
323 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
324 | e_des.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
325 | e_des.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 210 | e_des.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
326 | e_des.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
327 | e_des.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 211 | e_des.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
328 | e_des.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 212 | e_des.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
329 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 213 | e_des.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
330 | e_des.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 214 | e_des.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
331 | e_des.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 215 | e_des.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
332 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 216 | e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
333 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
334 | e_des.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
335 | e_des.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
336 | e_des.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
337 | e_des.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
338 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 217 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
339 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h | 218 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h |
340 | e_des3.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 219 | e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
341 | e_des3.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 220 | e_des3.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
342 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
343 | e_des3.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
344 | e_des3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 221 | e_des3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
345 | e_des3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
346 | e_des3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 222 | e_des3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
347 | e_des3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 223 | e_des3.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
348 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 224 | e_des3.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
349 | e_des3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 225 | e_des3.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
350 | e_des3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 226 | e_des3.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
351 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 227 | e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
352 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
353 | e_des3.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
354 | e_des3.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
355 | e_des3.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
356 | e_des3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
357 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 228 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
358 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h | 229 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h |
359 | e_idea.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 230 | e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
360 | e_idea.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 231 | e_idea.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
361 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
362 | e_idea.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
363 | e_idea.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
364 | e_idea.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
365 | e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 232 | e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
366 | e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 233 | e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
367 | e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 234 | e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
368 | e_idea.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
369 | e_idea.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
370 | e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 235 | e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
371 | e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 236 | e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
372 | e_idea.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 237 | e_idea.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
373 | e_idea.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 238 | e_idea.o: ../../include/openssl/symhacks.h ../cryptlib.h e_idea.c evp_locl.h |
374 | e_idea.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 239 | e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
375 | e_idea.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 240 | e_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
376 | e_idea.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
377 | e_idea.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_idea.c evp_locl.h | ||
378 | e_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
379 | e_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
380 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
381 | e_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
382 | e_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
383 | e_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
384 | e_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 241 | e_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
385 | e_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 242 | e_null.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
386 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 243 | e_null.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
387 | e_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 244 | e_null.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
388 | e_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 245 | e_null.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
389 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 246 | e_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
390 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 247 | e_null.o: ../cryptlib.h e_null.c |
391 | e_null.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 248 | e_old.o: e_old.c |
392 | e_null.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 249 | e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
393 | e_null.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 250 | e_rc2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
394 | e_null.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
395 | e_null.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
396 | e_null.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_null.c | ||
397 | e_old.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
398 | e_old.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
399 | e_old.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
400 | e_old.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
401 | e_old.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
402 | e_old.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
403 | e_old.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
404 | e_old.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
405 | e_old.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
406 | e_old.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
407 | e_old.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
408 | e_old.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
409 | e_old.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
410 | e_old.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
411 | e_old.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
412 | e_old.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
413 | e_old.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h e_old.c | ||
414 | e_rc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
415 | e_rc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
416 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
417 | e_rc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
418 | e_rc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
419 | e_rc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
420 | e_rc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 251 | e_rc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
421 | e_rc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 252 | e_rc2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
422 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 253 | e_rc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
423 | e_rc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 254 | e_rc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
424 | e_rc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 255 | e_rc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
425 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 256 | e_rc2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
426 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 257 | e_rc2.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc2.c evp_locl.h |
427 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 258 | e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
428 | e_rc2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 259 | e_rc4.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
429 | e_rc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
430 | e_rc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
431 | e_rc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
432 | e_rc2.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc2.c evp_locl.h | ||
433 | e_rc4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
434 | e_rc4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
435 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
436 | e_rc4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
437 | e_rc4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
438 | e_rc4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
439 | e_rc4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 260 | e_rc4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
440 | e_rc4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 261 | e_rc4.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
441 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 262 | e_rc4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
442 | e_rc4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 263 | e_rc4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
443 | e_rc4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 264 | e_rc4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc4.h |
444 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 265 | e_rc4.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
445 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 266 | e_rc4.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc4.c |
446 | e_rc4.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 267 | e_rc5.o: ../../e_os.h ../../include/openssl/bio.h |
447 | e_rc4.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 268 | e_rc5.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
448 | e_rc4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
449 | e_rc4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
450 | e_rc4.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
451 | e_rc4.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc4.c evp_locl.h | ||
452 | e_rc5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
453 | e_rc5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
454 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
455 | e_rc5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
456 | e_rc5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
457 | e_rc5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
458 | e_rc5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 269 | e_rc5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
459 | e_rc5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 270 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
460 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
461 | e_rc5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
462 | e_rc5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
463 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
464 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 271 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
465 | e_rc5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 272 | e_rc5.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
466 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 273 | e_rc5.o: ../../include/openssl/symhacks.h ../cryptlib.h e_rc5.c |
467 | e_rc5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 274 | e_seed.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
468 | e_rc5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 275 | e_seed.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
469 | e_rc5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 276 | e_seed.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
470 | e_rc5.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc5.c evp_locl.h | 277 | e_seed.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
471 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/aes.h | 278 | e_seed.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
472 | e_xcbc_d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 279 | e_seed.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
473 | e_xcbc_d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 280 | e_seed.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
474 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 281 | e_seed.o: ../../include/openssl/symhacks.h e_seed.c |
282 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h | ||
283 | e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
475 | e_xcbc_d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 284 | e_xcbc_d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
476 | e_xcbc_d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 285 | e_xcbc_d.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
477 | e_xcbc_d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
478 | e_xcbc_d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 286 | e_xcbc_d.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
479 | e_xcbc_d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 287 | e_xcbc_d.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
480 | e_xcbc_d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 288 | e_xcbc_d.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
481 | e_xcbc_d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
482 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
483 | e_xcbc_d.o: ../../include/openssl/opensslconf.h | ||
484 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 289 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
485 | e_xcbc_d.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 290 | e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
486 | e_xcbc_d.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
487 | e_xcbc_d.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
488 | e_xcbc_d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
489 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 291 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
490 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c | 292 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c |
491 | encode.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 293 | encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
492 | encode.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 294 | encode.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
493 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
494 | encode.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
495 | encode.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
496 | encode.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
497 | encode.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 295 | encode.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
498 | encode.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 296 | encode.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
499 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 297 | encode.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
500 | encode.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 298 | encode.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
501 | encode.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 299 | encode.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
502 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 300 | encode.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
503 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 301 | encode.o: ../cryptlib.h encode.c |
504 | encode.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 302 | evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h |
505 | encode.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 303 | evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
506 | encode.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
507 | encode.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
508 | encode.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
509 | encode.o: ../../include/openssl/ui_compat.h ../cryptlib.h encode.c | ||
510 | evp_acnf.o: ../../e_os.h ../../include/openssl/aes.h | ||
511 | evp_acnf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
512 | evp_acnf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
513 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
514 | evp_acnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 304 | evp_acnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
515 | evp_acnf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
516 | evp_acnf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
517 | evp_acnf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 305 | evp_acnf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
518 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 306 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
519 | evp_acnf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 307 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
520 | evp_acnf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 308 | evp_acnf.o: ../../include/openssl/opensslconf.h |
521 | evp_acnf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
522 | evp_acnf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
523 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 309 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
524 | evp_acnf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 310 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
525 | evp_acnf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 311 | evp_acnf.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_acnf.c |
526 | evp_acnf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 312 | evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h |
527 | evp_acnf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 313 | evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
528 | evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 314 | evp_enc.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
529 | evp_acnf.o: ../../include/openssl/ui_compat.h ../cryptlib.h evp_acnf.c | ||
530 | evp_enc.o: ../../e_os.h ../../include/openssl/aes.h | ||
531 | evp_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
532 | evp_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
533 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
534 | evp_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
535 | evp_enc.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
536 | evp_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
537 | evp_enc.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 315 | evp_enc.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
538 | evp_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 316 | evp_enc.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
539 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 317 | evp_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
540 | evp_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 318 | evp_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
541 | evp_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 319 | evp_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
542 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 320 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
543 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 321 | evp_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_enc.c evp_locl.h |
544 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 322 | evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
545 | evp_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 323 | evp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
546 | evp_enc.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
547 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
548 | evp_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
549 | evp_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
550 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h | ||
551 | evp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
552 | evp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
553 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/cast.h | ||
554 | evp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
555 | evp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
556 | evp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
557 | evp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 324 | evp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
558 | evp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 325 | evp_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
559 | evp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 326 | evp_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
560 | evp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 327 | evp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
561 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 328 | evp_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
562 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 329 | evp_err.o: ../../include/openssl/symhacks.h evp_err.c |
563 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | 330 | evp_key.o: ../../e_os.h ../../include/openssl/asn1.h |
564 | evp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 331 | evp_key.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
565 | evp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 332 | evp_key.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
566 | evp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 333 | evp_key.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
567 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 334 | evp_key.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
568 | evp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 335 | evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
569 | evp_err.o: evp_err.c | ||
570 | evp_key.o: ../../e_os.h ../../include/openssl/aes.h | ||
571 | evp_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
572 | evp_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
573 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
574 | evp_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
575 | evp_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
576 | evp_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
577 | evp_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
578 | evp_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
579 | evp_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
580 | evp_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
581 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 336 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
582 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 337 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
583 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 338 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
584 | evp_key.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 339 | evp_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
585 | evp_key.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 340 | evp_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
586 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 341 | evp_key.o: ../../include/openssl/ui.h ../../include/openssl/x509.h |
587 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
588 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
589 | evp_key.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
590 | evp_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_key.c | 342 | evp_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_key.c |
591 | evp_lib.o: ../../e_os.h ../../include/openssl/aes.h | 343 | evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
592 | evp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 344 | evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
593 | evp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 345 | evp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
594 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
595 | evp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
596 | evp_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
597 | evp_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
598 | evp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 346 | evp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
599 | evp_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 347 | evp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
600 | evp_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 348 | evp_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
601 | evp_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 349 | evp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
602 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 350 | evp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
603 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 351 | evp_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h evp_lib.c |
604 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | 352 | evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h |
605 | evp_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 353 | evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
606 | evp_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 354 | evp_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
607 | evp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 355 | evp_pbe.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
608 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 356 | evp_pbe.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
609 | evp_lib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 357 | evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
610 | evp_lib.o: ../cryptlib.h evp_lib.c | ||
611 | evp_pbe.o: ../../e_os.h ../../include/openssl/aes.h | ||
612 | evp_pbe.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
613 | evp_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
614 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
615 | evp_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
616 | evp_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
617 | evp_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
618 | evp_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
619 | evp_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
620 | evp_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
621 | evp_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
622 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 358 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
623 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 359 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
624 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 360 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
625 | evp_pbe.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 361 | evp_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
626 | evp_pbe.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 362 | evp_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
627 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 363 | evp_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
628 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 364 | evp_pbe.o: ../cryptlib.h evp_pbe.c |
629 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 365 | evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
630 | evp_pbe.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 366 | evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
631 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c | 367 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
632 | evp_pkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
633 | evp_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
634 | evp_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
635 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
636 | evp_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
637 | evp_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
638 | evp_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 368 | evp_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
639 | evp_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 369 | evp_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
640 | evp_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 370 | evp_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
641 | evp_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 371 | evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
642 | evp_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
643 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 372 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
644 | evp_pkey.o: ../../include/openssl/opensslconf.h | 373 | evp_pkey.o: ../../include/openssl/opensslconf.h |
645 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 374 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
646 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 375 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
647 | evp_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
648 | evp_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
649 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 376 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
650 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 377 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
651 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 378 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
652 | evp_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
653 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c | 379 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c |
654 | m_dss.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 380 | m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
655 | m_dss.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 381 | m_dss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
656 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 382 | m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
657 | m_dss.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 383 | m_dss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
658 | m_dss.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 384 | m_dss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
659 | m_dss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 385 | m_dss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
660 | m_dss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 386 | m_dss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
661 | m_dss.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 387 | m_dss.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
662 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 388 | m_dss.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
663 | m_dss.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
664 | m_dss.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
665 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
666 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
667 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
668 | m_dss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
669 | m_dss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
670 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 389 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
671 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 390 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
672 | m_dss.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
673 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 391 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
674 | m_dss.o: ../cryptlib.h m_dss.c | 392 | m_dss.o: ../cryptlib.h m_dss.c |
675 | m_dss1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 393 | m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
676 | m_dss1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 394 | m_dss1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
677 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 395 | m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
678 | m_dss1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 396 | m_dss1.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
679 | m_dss1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 397 | m_dss1.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
680 | m_dss1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 398 | m_dss1.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
681 | m_dss1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 399 | m_dss1.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
682 | m_dss1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 400 | m_dss1.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
683 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 401 | m_dss1.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
684 | m_dss1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
685 | m_dss1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
686 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
687 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
688 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
689 | m_dss1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
690 | m_dss1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
691 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 402 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
692 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 403 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
693 | m_dss1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
694 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 404 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
695 | m_dss1.o: ../cryptlib.h m_dss1.c | 405 | m_dss1.o: ../cryptlib.h m_dss1.c |
696 | m_md2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 406 | m_ecdsa.o: ../../e_os.h ../../include/openssl/asn1.h |
697 | m_md2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 407 | m_ecdsa.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
698 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 408 | m_ecdsa.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
699 | m_md2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 409 | m_ecdsa.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
700 | m_md2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 410 | m_ecdsa.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
701 | m_md2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 411 | m_ecdsa.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
702 | m_md2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 412 | m_ecdsa.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
703 | m_md2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 413 | m_ecdsa.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
414 | m_ecdsa.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
415 | m_ecdsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
416 | m_ecdsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
417 | m_ecdsa.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
418 | m_ecdsa.o: ../cryptlib.h m_ecdsa.c | ||
419 | m_md2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
420 | m_md2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
421 | m_md2.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
422 | m_md2.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
423 | m_md2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
704 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 424 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
705 | m_md2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 425 | m_md2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
706 | m_md2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 426 | m_md2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
707 | m_md2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 427 | m_md2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
708 | m_md2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 428 | m_md2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
709 | m_md2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 429 | m_md2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
710 | m_md2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 430 | m_md2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
711 | m_md2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 431 | m_md2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md2.c |
712 | m_md2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 432 | m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
713 | m_md2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 433 | m_md4.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
714 | m_md2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 434 | m_md4.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
715 | m_md2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 435 | m_md4.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
716 | m_md2.o: ../cryptlib.h evp_locl.h m_md2.c | 436 | m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
717 | m_md4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 437 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h |
718 | m_md4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 438 | m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
719 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 439 | m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
720 | m_md4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 440 | m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
721 | m_md4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 441 | m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
722 | m_md4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 442 | m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
723 | m_md4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 443 | m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
724 | m_md4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 444 | m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md4.c |
725 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 445 | m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
726 | m_md4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 446 | m_md5.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
727 | m_md4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 447 | m_md5.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
728 | m_md4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 448 | m_md5.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
729 | m_md4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 449 | m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
730 | m_md4.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 450 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h |
731 | m_md4.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 451 | m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
732 | m_md4.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 452 | m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
733 | m_md4.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 453 | m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
734 | m_md4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 454 | m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
735 | m_md4.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 455 | m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
736 | m_md4.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 456 | m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
737 | m_md4.o: ../cryptlib.h evp_locl.h m_md4.c | 457 | m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md5.c |
738 | m_md5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 458 | m_mdc2.o: ../../e_os.h ../../include/openssl/bio.h |
739 | m_md5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 459 | m_mdc2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
740 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
741 | m_md5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
742 | m_md5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
743 | m_md5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
744 | m_md5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
745 | m_md5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
746 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
747 | m_md5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
748 | m_md5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
749 | m_md5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
750 | m_md5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
751 | m_md5.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
752 | m_md5.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
753 | m_md5.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
754 | m_md5.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
755 | m_md5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
756 | m_md5.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
757 | m_md5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
758 | m_md5.o: ../cryptlib.h evp_locl.h m_md5.c | ||
759 | m_mdc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
760 | m_mdc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
761 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
762 | m_mdc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
763 | m_mdc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
764 | m_mdc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
765 | m_mdc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 460 | m_mdc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
766 | m_mdc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 461 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
767 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
768 | m_mdc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
769 | m_mdc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
770 | m_mdc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
771 | m_mdc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 462 | m_mdc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
772 | m_mdc2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 463 | m_mdc2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
773 | m_mdc2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 464 | m_mdc2.o: ../../include/openssl/symhacks.h ../cryptlib.h m_mdc2.c |
774 | m_mdc2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 465 | m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
775 | m_mdc2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 466 | m_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
776 | m_mdc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 467 | m_null.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
777 | m_mdc2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 468 | m_null.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
778 | m_mdc2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 469 | m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
779 | m_mdc2.o: ../cryptlib.h evp_locl.h m_mdc2.c | 470 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
780 | m_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
781 | m_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
782 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
783 | m_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
784 | m_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
785 | m_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
786 | m_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
787 | m_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
788 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
789 | m_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
790 | m_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
791 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 471 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
792 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 472 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
793 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 473 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
794 | m_null.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 474 | m_null.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
795 | m_null.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 475 | m_null.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
796 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 476 | m_null.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_null.c |
797 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 477 | m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h |
798 | m_null.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 478 | m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
799 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 479 | m_ripemd.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
800 | m_null.o: ../cryptlib.h m_null.c | 480 | m_ripemd.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
801 | m_ripemd.o: ../../e_os.h ../../include/openssl/aes.h | 481 | m_ripemd.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
802 | m_ripemd.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 482 | m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
803 | m_ripemd.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
804 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
805 | m_ripemd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
806 | m_ripemd.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
807 | m_ripemd.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
808 | m_ripemd.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
809 | m_ripemd.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
810 | m_ripemd.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
811 | m_ripemd.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
812 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 483 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
813 | m_ripemd.o: ../../include/openssl/opensslconf.h | 484 | m_ripemd.o: ../../include/openssl/opensslconf.h |
814 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 485 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
815 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 486 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h |
816 | m_ripemd.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 487 | m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
817 | m_ripemd.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 488 | m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
818 | m_ripemd.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 489 | m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
819 | m_ripemd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 490 | m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_ripemd.c |
820 | m_ripemd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 491 | m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
821 | m_ripemd.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 492 | m_sha.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
822 | m_ripemd.o: ../cryptlib.h m_ripemd.c | 493 | m_sha.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
823 | m_sha.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 494 | m_sha.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
824 | m_sha.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 495 | m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
825 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 496 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
826 | m_sha.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
827 | m_sha.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
828 | m_sha.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
829 | m_sha.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
830 | m_sha.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
831 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
832 | m_sha.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
833 | m_sha.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
834 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 497 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
835 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 498 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
836 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 499 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
837 | m_sha.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
838 | m_sha.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
839 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 500 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
840 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 501 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
841 | m_sha.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
842 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 502 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
843 | m_sha.o: ../cryptlib.h evp_locl.h m_sha.c | 503 | m_sha.o: ../cryptlib.h m_sha.c |
844 | m_sha1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 504 | m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
845 | m_sha1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 505 | m_sha1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
846 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 506 | m_sha1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
847 | m_sha1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 507 | m_sha1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
848 | m_sha1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 508 | m_sha1.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
849 | m_sha1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 509 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
850 | m_sha1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
851 | m_sha1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
852 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
853 | m_sha1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
854 | m_sha1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
855 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 510 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
856 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 511 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
857 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 512 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
858 | m_sha1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
859 | m_sha1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
860 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 513 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
861 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 514 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
862 | m_sha1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
863 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 515 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
864 | m_sha1.o: ../cryptlib.h m_sha1.c | 516 | m_sha1.o: ../cryptlib.h m_sha1.c |
865 | names.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 517 | names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
866 | names.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 518 | names.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
867 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 519 | names.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
868 | names.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 520 | names.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
869 | names.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 521 | names.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
870 | names.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 522 | names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
871 | names.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
872 | names.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
873 | names.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
874 | names.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
875 | names.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
876 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 523 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
877 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 524 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
878 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 525 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
879 | names.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 526 | names.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
880 | names.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 527 | names.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
881 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 528 | names.o: ../../include/openssl/x509_vfy.h ../cryptlib.h names.c |
882 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 529 | p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h |
883 | names.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 530 | p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
884 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 531 | p5_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
885 | names.o: ../cryptlib.h names.c | 532 | p5_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
886 | p5_crpt.o: ../../e_os.h ../../include/openssl/aes.h | 533 | p5_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
887 | p5_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 534 | p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
888 | p5_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
889 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
890 | p5_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
891 | p5_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
892 | p5_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
893 | p5_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
894 | p5_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
895 | p5_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
896 | p5_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
897 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 535 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
898 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 536 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
899 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 537 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
900 | p5_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 538 | p5_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
901 | p5_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 539 | p5_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
902 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 540 | p5_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
903 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 541 | p5_crpt.o: ../cryptlib.h p5_crpt.c |
904 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 542 | p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h |
905 | p5_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 543 | p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
906 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c | 544 | p5_crpt2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
907 | p5_crpt2.o: ../../e_os.h ../../include/openssl/aes.h | 545 | p5_crpt2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
908 | p5_crpt2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 546 | p5_crpt2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
909 | p5_crpt2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 547 | p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
910 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 548 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
911 | p5_crpt2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
912 | p5_crpt2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
913 | p5_crpt2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
914 | p5_crpt2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
915 | p5_crpt2.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
916 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
917 | p5_crpt2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
918 | p5_crpt2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
919 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 549 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
920 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 550 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
921 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 551 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
922 | p5_crpt2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 552 | p5_crpt2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
923 | p5_crpt2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 553 | p5_crpt2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
924 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 554 | p5_crpt2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt2.c |
925 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 555 | p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
926 | p5_crpt2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 556 | p_dec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
927 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 557 | p_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
928 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c | 558 | p_dec.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
929 | p_dec.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 559 | p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
930 | p_dec.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 560 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
931 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
932 | p_dec.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
933 | p_dec.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
934 | p_dec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
935 | p_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
936 | p_dec.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
937 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
938 | p_dec.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
939 | p_dec.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
940 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 561 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
941 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 562 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
942 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 563 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
943 | p_dec.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
944 | p_dec.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
945 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 564 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
946 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 565 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
947 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 566 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
948 | p_dec.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
949 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c | 567 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c |
950 | p_enc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 568 | p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
951 | p_enc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 569 | p_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
952 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 570 | p_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
953 | p_enc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 571 | p_enc.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
954 | p_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 572 | p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
955 | p_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 573 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
956 | p_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
957 | p_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
958 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
959 | p_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
960 | p_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
961 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 574 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
962 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 575 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
963 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 576 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
964 | p_enc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
965 | p_enc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
966 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 577 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
967 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 578 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
968 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 579 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
969 | p_enc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
970 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c | 580 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c |
971 | p_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 581 | p_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
972 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 582 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
973 | p_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 583 | p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
974 | p_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 584 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
975 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
976 | p_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
977 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 585 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
978 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 586 | p_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
979 | p_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 587 | p_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
980 | p_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 588 | p_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
981 | p_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
982 | p_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 589 | p_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
983 | p_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 590 | p_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
984 | p_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 591 | p_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
985 | p_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
986 | p_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
987 | p_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 592 | p_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
988 | p_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 593 | p_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
989 | p_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 594 | p_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
990 | p_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
991 | p_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_lib.c | 595 | p_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_lib.c |
992 | p_open.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 596 | p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
993 | p_open.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 597 | p_open.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
994 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 598 | p_open.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
995 | p_open.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 599 | p_open.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
996 | p_open.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 600 | p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
997 | p_open.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 601 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
998 | p_open.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
999 | p_open.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1000 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1001 | p_open.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1002 | p_open.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1003 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 602 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1004 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 603 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1005 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 604 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
1006 | p_open.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
1007 | p_open.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
1008 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 605 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
1009 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 606 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
1010 | p_open.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1011 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 607 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
1012 | p_open.o: ../cryptlib.h p_open.c | 608 | p_open.o: ../cryptlib.h p_open.c |
1013 | p_seal.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 609 | p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
1014 | p_seal.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 610 | p_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1015 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 611 | p_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
1016 | p_seal.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 612 | p_seal.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
1017 | p_seal.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 613 | p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
1018 | p_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 614 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
1019 | p_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1020 | p_seal.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1021 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1022 | p_seal.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1023 | p_seal.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1024 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 615 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1025 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 616 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1026 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 617 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
1027 | p_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
1028 | p_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
1029 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 618 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
1030 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 619 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1031 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 620 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1032 | p_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
1033 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c | 621 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c |
1034 | p_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 622 | p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
1035 | p_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 623 | p_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
1036 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 624 | p_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
1037 | p_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 625 | p_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
1038 | p_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 626 | p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
1039 | p_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 627 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
1040 | p_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
1041 | p_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
1042 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
1043 | p_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
1044 | p_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
1045 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 628 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
1046 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 629 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1047 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 630 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
1048 | p_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 631 | p_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1049 | p_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 632 | p_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1050 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 633 | p_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_sign.c |
1051 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 634 | p_verify.o: ../../e_os.h ../../include/openssl/asn1.h |
1052 | p_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 635 | p_verify.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
1053 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 636 | p_verify.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
1054 | p_sign.o: ../cryptlib.h p_sign.c | 637 | p_verify.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
1055 | p_verify.o: ../../e_os.h ../../include/openssl/aes.h | 638 | p_verify.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
1056 | p_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 639 | p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
1057 | p_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
1058 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
1059 | p_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
1060 | p_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
1061 | p_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
1062 | p_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
1063 | p_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
1064 | p_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
1065 | p_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
1066 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 640 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
1067 | p_verify.o: ../../include/openssl/opensslconf.h | 641 | p_verify.o: ../../include/openssl/opensslconf.h |
1068 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 642 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
1069 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 643 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
1070 | p_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 644 | p_verify.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
1071 | p_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 645 | p_verify.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
1072 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 646 | p_verify.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_verify.c |
1073 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
1074 | p_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
1075 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
1076 | p_verify.o: ../cryptlib.h p_verify.c | ||
diff --git a/src/lib/libcrypto/hmac/Makefile b/src/lib/libcrypto/hmac/Makefile index 3d53d8240f..01f10c396f 100644 --- a/src/lib/libcrypto/hmac/Makefile +++ b/src/lib/libcrypto/hmac/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -77,23 +74,12 @@ clean: | |||
77 | 74 | ||
78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 75 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
79 | 76 | ||
80 | hmac.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 77 | hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
81 | hmac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 78 | hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
82 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
83 | hmac.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
84 | hmac.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
85 | hmac.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
86 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 79 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
87 | hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | 80 | hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
88 | hmac.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 81 | hmac.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
89 | hmac.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 82 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
90 | hmac.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 83 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
91 | hmac.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 84 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
92 | hmac.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 85 | hmac.o: ../../include/openssl/symhacks.h ../cryptlib.h hmac.c |
93 | hmac.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h | ||
94 | hmac.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
95 | hmac.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
96 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
97 | hmac.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
98 | hmac.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
99 | hmac.o: ../cryptlib.h hmac.c | ||
diff --git a/src/lib/libcrypto/idea/Makefile b/src/lib/libcrypto/idea/Makefile index 6b8e530d9d..b2e7add666 100644 --- a/src/lib/libcrypto/idea/Makefile +++ b/src/lib/libcrypto/idea/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -85,8 +82,5 @@ i_ecb.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | |||
85 | 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 |
86 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h | 83 | i_ofb64.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
87 | i_ofb64.o: i_ofb64.c idea_lcl.h | 84 | i_ofb64.o: i_ofb64.c idea_lcl.h |
88 | i_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 85 | i_skey.o: ../../include/openssl/idea.h ../../include/openssl/opensslconf.h |
89 | i_skey.o: ../../include/openssl/fips.h ../../include/openssl/idea.h | 86 | i_skey.o: i_skey.c idea_lcl.h |
90 | i_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
91 | i_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
92 | i_skey.o: ../../include/openssl/symhacks.h i_skey.c idea_lcl.h | ||
diff --git a/src/lib/libcrypto/idea/ideatest.c b/src/lib/libcrypto/idea/ideatest.c index 98f805d72a..e6ffc7025e 100644 --- a/src/lib/libcrypto/idea/ideatest.c +++ b/src/lib/libcrypto/idea/ideatest.c | |||
@@ -169,6 +169,9 @@ int main(int argc, char *argv[]) | |||
169 | else | 169 | else |
170 | printf("ok\n"); | 170 | printf("ok\n"); |
171 | 171 | ||
172 | #ifdef OPENSSL_SYS_NETWARE | ||
173 | if (err) printf("ERROR: %d\n", err); | ||
174 | #endif | ||
172 | EXIT(err); | 175 | EXIT(err); |
173 | return(err); | 176 | return(err); |
174 | } | 177 | } |
diff --git a/src/lib/libcrypto/krb5/Makefile b/src/lib/libcrypto/krb5/Makefile index 25cc695e8d..14077390d6 100644 --- a/src/lib/libcrypto/krb5/Makefile +++ b/src/lib/libcrypto/krb5/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -52,6 +47,7 @@ links: | |||
52 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 47 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
53 | 48 | ||
54 | install: | 49 | install: |
50 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
55 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 51 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
56 | do \ | 52 | do \ |
57 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 53 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -67,6 +63,7 @@ lint: | |||
67 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 63 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
68 | 64 | ||
69 | depend: | 65 | depend: |
66 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
70 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | 67 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) |
71 | 68 | ||
72 | dclean: | 69 | dclean: |
@@ -79,9 +76,8 @@ clean: | |||
79 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 76 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
80 | 77 | ||
81 | krb5_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 78 | krb5_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
82 | krb5_asn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 79 | krb5_asn.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
83 | krb5_asn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 80 | krb5_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/krb5_asn.h |
84 | krb5_asn.o: ../../include/openssl/krb5_asn.h | ||
85 | krb5_asn.o: ../../include/openssl/opensslconf.h | 81 | krb5_asn.o: ../../include/openssl/opensslconf.h |
86 | krb5_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 82 | krb5_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
87 | krb5_asn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 83 | krb5_asn.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
diff --git a/src/lib/libcrypto/lhash/Makefile b/src/lib/libcrypto/lhash/Makefile index cdb0e77fad..82bddac474 100644 --- a/src/lib/libcrypto/lhash/Makefile +++ b/src/lib/libcrypto/lhash/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -81,11 +78,11 @@ lh_stats.o: ../../e_os.h ../../include/openssl/bio.h | |||
81 | lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 78 | lh_stats.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
82 | lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 79 | lh_stats.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
83 | lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 80 | lh_stats.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
84 | lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 81 | lh_stats.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
85 | lh_stats.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 82 | lh_stats.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
86 | lh_stats.o: ../cryptlib.h lh_stats.c | 83 | lh_stats.o: ../../include/openssl/symhacks.h ../cryptlib.h lh_stats.c |
87 | lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 84 | lhash.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
88 | lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h | 85 | lhash.o: ../../include/openssl/e_os2.h ../../include/openssl/lhash.h |
89 | lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 86 | lhash.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
90 | lhash.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 87 | lhash.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
91 | lhash.o: ../../include/openssl/symhacks.h lhash.c | 88 | lhash.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h lhash.c |
diff --git a/src/lib/libcrypto/md2/Makefile b/src/lib/libcrypto/md2/Makefile index 9d0351bb2f..17f878aeb7 100644 --- a/src/lib/libcrypto/md2/Makefile +++ b/src/lib/libcrypto/md2/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -77,17 +74,16 @@ clean: | |||
77 | 74 | ||
78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 75 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
79 | 76 | ||
80 | md2_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 77 | md2_dgst.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
81 | md2_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
82 | md2_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
83 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h | 78 | md2_dgst.o: ../../include/openssl/md2.h ../../include/openssl/opensslconf.h |
84 | md2_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 79 | md2_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
85 | md2_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 80 | md2_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
86 | md2_dgst.o: md2_dgst.c | 81 | md2_dgst.o: ../../include/openssl/symhacks.h md2_dgst.c |
87 | md2_one.o: ../../e_os.h ../../include/openssl/bio.h | 82 | md2_one.o: ../../e_os.h ../../include/openssl/bio.h |
88 | md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 83 | md2_one.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
89 | md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 84 | md2_one.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
90 | md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 85 | md2_one.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
91 | md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 86 | md2_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
92 | md2_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 87 | md2_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
93 | md2_one.o: ../../include/openssl/symhacks.h ../cryptlib.h md2_one.c | 88 | md2_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
89 | md2_one.o: ../cryptlib.h md2_one.c | ||
diff --git a/src/lib/libcrypto/md4/Makefile b/src/lib/libcrypto/md4/Makefile index eeb457f20f..ef97bb0cbe 100644 --- a/src/lib/libcrypto/md4/Makefile +++ b/src/lib/libcrypto/md4/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
@@ -52,6 +47,7 @@ links: | |||
52 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 47 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
53 | 48 | ||
54 | install: | 49 | install: |
50 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
55 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 51 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
56 | do \ | 52 | do \ |
57 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 53 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -67,6 +63,7 @@ lint: | |||
67 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 63 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
68 | 64 | ||
69 | depend: | 65 | depend: |
66 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
70 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 67 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
71 | 68 | ||
72 | dclean: | 69 | dclean: |
@@ -78,15 +75,12 @@ clean: | |||
78 | 75 | ||
79 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 76 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
80 | 77 | ||
81 | md4_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 78 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md4.h |
82 | md4_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 79 | md4_dgst.o: ../../include/openssl/opensslconf.h |
83 | md4_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 80 | md4_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md4_dgst.c |
84 | md4_dgst.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 81 | md4_dgst.o: md4_locl.h |
85 | md4_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
86 | md4_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
87 | md4_dgst.o: ../md32_common.h md4_dgst.c md4_locl.h | ||
88 | md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 82 | md4_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
89 | md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h | 83 | md4_one.o: ../../include/openssl/md4.h ../../include/openssl/opensslconf.h |
90 | md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 84 | md4_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
91 | md4_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 85 | md4_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
92 | md4_one.o: md4_one.c | 86 | md4_one.o: ../../include/openssl/symhacks.h md4_one.c |
diff --git a/src/lib/libcrypto/md5/Makefile b/src/lib/libcrypto/md5/Makefile index 1ed018526f..ceb00e8956 100644 --- a/src/lib/libcrypto/md5/Makefile +++ b/src/lib/libcrypto/md5/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES=-I.. -I$(TOP) -I../../include | 9 | INCLUDES=-I.. -I$(TOP) -I../../include |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
@@ -20,6 +15,7 @@ MD5_ASM_OBJ= | |||
20 | 15 | ||
21 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
22 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
18 | AFLAGS= $(ASFLAGS) | ||
23 | 19 | ||
24 | GENERAL=Makefile | 20 | GENERAL=Makefile |
25 | TEST=md5test.c | 21 | TEST=md5test.c |
@@ -46,38 +42,17 @@ lib: $(LIBOBJ) | |||
46 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
47 | @touch lib | 43 | @touch lib |
48 | 44 | ||
49 | # elf | 45 | # ELF |
50 | asm/mx86-elf.s: asm/md5-586.pl ../perlasm/x86asm.pl | 46 | mx86-elf.s: asm/md5-586.pl ../perlasm/x86asm.pl |
51 | (cd asm; $(PERL) md5-586.pl elf $(CFLAGS) > mx86-elf.s) | 47 | (cd asm; $(PERL) md5-586.pl elf $(CFLAGS) > ../$@) |
52 | 48 | # COFF | |
49 | mx86-cof.s: asm/md5-586.pl ../perlasm/x86asm.pl | ||
50 | (cd asm; $(PERL) md5-586.pl coff $(CFLAGS) > ../$@) | ||
53 | # a.out | 51 | # a.out |
54 | asm/mx86-out.o: asm/mx86unix.cpp | 52 | mx86-out.s: asm/md5-586.pl ../perlasm/x86asm.pl |
55 | $(CPP) -DOUT asm/mx86unix.cpp | as -o asm/mx86-out.o | 53 | (cd asm; $(PERL) md5-586.pl a.out $(CFLAGS) > ../$@) |
56 | 54 | ||
57 | # bsdi | 55 | md5-x86_64.s: asm/md5-x86_64.pl; $(PERL) asm/md5-x86_64.pl $@ |
58 | asm/mx86bsdi.o: asm/mx86unix.cpp | ||
59 | $(CPP) -DBSDI asm/mx86unix.cpp | sed 's/ :/:/' | as -o asm/mx86bsdi.o | ||
60 | |||
61 | asm/mx86unix.cpp: asm/md5-586.pl ../perlasm/x86asm.pl | ||
62 | (cd asm; $(PERL) md5-586.pl cpp >mx86unix.cpp) | ||
63 | |||
64 | asm/md5-sparcv8plus.o: asm/md5-sparcv9.S | ||
65 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
66 | -o asm/md5-sparcv8plus.o asm/md5-sparcv9.S | ||
67 | |||
68 | # Old GNU assembler doesn't understand V9 instructions, so we | ||
69 | # hire /usr/ccs/bin/as to do the job. Note that option is called | ||
70 | # *-gcc27, but even gcc 2>=8 users may experience similar problem | ||
71 | # if they didn't bother to upgrade GNU assembler. Such users should | ||
72 | # not choose this option, but be adviced to *remove* GNU assembler | ||
73 | # or upgrade it. | ||
74 | asm/md5-sparcv8plus-gcc27.o: asm/md5-sparcv9.S | ||
75 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -E asm/md5-sparcv9.S | \ | ||
76 | /usr/ccs/bin/as -xarch=v8plus - -o asm/md5-sparcv8plus-gcc27.o | ||
77 | |||
78 | asm/md5-sparcv9.o: asm/md5-sparcv9.S | ||
79 | $(CC) $(ASFLAGS) -DMD5_BLOCK_DATA_ORDER -c \ | ||
80 | -o asm/md5-sparcv9.o asm/md5-sparcv9.S | ||
81 | 56 | ||
82 | files: | 57 | files: |
83 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 58 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -88,6 +63,7 @@ links: | |||
88 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
89 | 64 | ||
90 | install: | 65 | install: |
66 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
91 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 67 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
92 | do \ | 68 | do \ |
93 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 69 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -103,6 +79,7 @@ lint: | |||
103 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 79 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
104 | 80 | ||
105 | depend: | 81 | depend: |
82 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
106 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 83 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
107 | 84 | ||
108 | dclean: | 85 | dclean: |
@@ -110,19 +87,16 @@ dclean: | |||
110 | mv -f Makefile.new $(MAKEFILE) | 87 | mv -f Makefile.new $(MAKEFILE) |
111 | 88 | ||
112 | clean: | 89 | clean: |
113 | rm -f asm/mx86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 90 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
114 | 91 | ||
115 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 92 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
116 | 93 | ||
117 | md5_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 94 | md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/md5.h |
118 | md5_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 95 | md5_dgst.o: ../../include/openssl/opensslconf.h |
119 | md5_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 96 | md5_dgst.o: ../../include/openssl/opensslv.h ../md32_common.h md5_dgst.c |
120 | md5_dgst.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | 97 | md5_dgst.o: md5_locl.h |
121 | md5_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | ||
122 | md5_dgst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
123 | md5_dgst.o: ../md32_common.h md5_dgst.c md5_locl.h | ||
124 | 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 |
125 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h | 99 | md5_one.o: ../../include/openssl/md5.h ../../include/openssl/opensslconf.h |
126 | md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 100 | md5_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
127 | md5_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 101 | md5_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
128 | md5_one.o: md5_one.c | 102 | md5_one.o: ../../include/openssl/symhacks.h md5_one.c |
diff --git a/src/lib/libcrypto/mdc2/mdc2test.c b/src/lib/libcrypto/mdc2/mdc2test.c index c9abe99d92..017b31add2 100644 --- a/src/lib/libcrypto/mdc2/mdc2test.c +++ b/src/lib/libcrypto/mdc2/mdc2test.c | |||
@@ -140,6 +140,9 @@ int main(int argc, char *argv[]) | |||
140 | printf("pad2 - ok\n"); | 140 | printf("pad2 - ok\n"); |
141 | 141 | ||
142 | EVP_MD_CTX_cleanup(&c); | 142 | EVP_MD_CTX_cleanup(&c); |
143 | #ifdef OPENSSL_SYS_NETWARE | ||
144 | if (ret) printf("ERROR: %d\n", ret); | ||
145 | #endif | ||
143 | EXIT(ret); | 146 | EXIT(ret); |
144 | return(ret); | 147 | return(ret); |
145 | } | 148 | } |
diff --git a/src/lib/libcrypto/o_str.h b/src/lib/libcrypto/o_str.h index 4a70a9e00b..dfc98494c6 100644 --- a/src/lib/libcrypto/o_str.h +++ b/src/lib/libcrypto/o_str.h | |||
@@ -63,5 +63,6 @@ | |||
63 | 63 | ||
64 | int OPENSSL_strcasecmp(const char *str1, const char *str2); | 64 | int OPENSSL_strcasecmp(const char *str1, const char *str2); |
65 | int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n); | 65 | int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n); |
66 | int OPENSSL_memcmp(const void *p1,const void *p2,size_t n); | ||
66 | 67 | ||
67 | #endif | 68 | #endif |
diff --git a/src/lib/libcrypto/objects/Makefile b/src/lib/libcrypto/objects/Makefile index 23b2a69e6d..9c5615099c 100644 --- a/src/lib/libcrypto/objects/Makefile +++ b/src/lib/libcrypto/objects/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | PERL= perl | 12 | PERL= perl |
@@ -60,6 +55,7 @@ links: | |||
60 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
61 | 56 | ||
62 | install: | 57 | install: |
58 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
63 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 59 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
64 | do \ | 60 | do \ |
65 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 61 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -75,6 +71,7 @@ lint: | |||
75 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
76 | 72 | ||
77 | depend: | 73 | depend: |
74 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
78 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
79 | 76 | ||
80 | dclean: | 77 | dclean: |
@@ -87,13 +84,13 @@ clean: | |||
87 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
88 | 85 | ||
89 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 86 | o_names.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
90 | o_names.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 87 | o_names.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
91 | o_names.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 88 | o_names.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
92 | o_names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 89 | o_names.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
93 | o_names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 90 | o_names.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
94 | o_names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 91 | o_names.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
95 | o_names.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 92 | o_names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
96 | o_names.o: ../../include/openssl/symhacks.h o_names.c | 93 | o_names.o: o_names.c |
97 | obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h | 94 | obj_dat.o: ../../e_os.h ../../include/openssl/asn1.h |
98 | obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 95 | obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
99 | obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 96 | obj_dat.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -104,19 +101,19 @@ obj_dat.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
104 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 101 | obj_dat.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
105 | obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h | 102 | obj_dat.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_dat.c obj_dat.h |
106 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 103 | obj_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
107 | obj_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 104 | obj_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
108 | obj_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 105 | obj_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
109 | obj_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 106 | obj_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
110 | obj_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 107 | obj_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
111 | obj_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 108 | obj_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
112 | obj_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 109 | obj_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
113 | obj_err.o: ../../include/openssl/symhacks.h obj_err.c | 110 | obj_err.o: obj_err.c |
114 | obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 111 | obj_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
115 | obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 112 | obj_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
116 | obj_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 113 | obj_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
117 | obj_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 114 | obj_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
118 | obj_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 115 | obj_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
119 | obj_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 116 | obj_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
120 | obj_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 117 | obj_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
121 | obj_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 118 | obj_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
122 | obj_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h obj_lib.c | 119 | obj_lib.o: ../cryptlib.h obj_lib.c |
diff --git a/src/lib/libcrypto/ocsp/Makefile b/src/lib/libcrypto/ocsp/Makefile index 59f7098d9e..0fe028960e 100644 --- a/src/lib/libcrypto/ocsp/Makefile +++ b/src/lib/libcrypto/ocsp/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -54,6 +49,7 @@ links: | |||
54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 49 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
55 | 50 | ||
56 | install: | 51 | install: |
52 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 53 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
58 | do \ | 54 | do \ |
59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 55 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -69,6 +65,7 @@ lint: | |||
69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 65 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
70 | 66 | ||
71 | depend: | 67 | depend: |
68 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) |
73 | 70 | ||
74 | dclean: | 71 | dclean: |
@@ -80,212 +77,137 @@ clean: | |||
80 | 77 | ||
81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
82 | 79 | ||
83 | ocsp_asn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 80 | ocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
84 | ocsp_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 81 | ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
85 | ocsp_asn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
86 | ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
87 | ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 82 | ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
88 | ocsp_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 83 | ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
89 | ocsp_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 84 | ocsp_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
90 | ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 85 | ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
91 | ocsp_asn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
92 | ocsp_asn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
93 | ocsp_asn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
94 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 86 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
95 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 87 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
96 | 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 |
97 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 89 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
98 | ocsp_asn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 90 | ocsp_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
99 | ocsp_asn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 91 | ocsp_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
100 | ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 92 | ocsp_asn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
101 | ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 93 | ocsp_asn.o: ocsp_asn.c |
102 | ocsp_asn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 94 | ocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h |
103 | ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 95 | ocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
104 | ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c | ||
105 | ocsp_cl.o: ../../e_os.h ../../include/openssl/aes.h | ||
106 | ocsp_cl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
107 | ocsp_cl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
108 | ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
109 | ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 96 | ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
110 | ocsp_cl.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 97 | ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
111 | ocsp_cl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 98 | ocsp_cl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
112 | ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 99 | ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
113 | ocsp_cl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 100 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
114 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
115 | ocsp_cl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
116 | ocsp_cl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
117 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 101 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
118 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 102 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
119 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 103 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
120 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 104 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
121 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 105 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
122 | ocsp_cl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 106 | ocsp_cl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
123 | ocsp_cl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 107 | ocsp_cl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
124 | ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 108 | ocsp_cl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
125 | ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 109 | ocsp_cl.o: ../cryptlib.h ocsp_cl.c |
126 | ocsp_cl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 110 | ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
127 | ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 111 | ocsp_err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
128 | ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c | 112 | ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
129 | ocsp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 113 | ocsp_err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
130 | ocsp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 114 | ocsp_err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
131 | ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 115 | ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
132 | ocsp_err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
133 | ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
134 | ocsp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
135 | ocsp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
136 | ocsp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
137 | ocsp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
138 | ocsp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
139 | ocsp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
140 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 116 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
141 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 117 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
142 | 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 |
143 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 119 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
144 | ocsp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 120 | ocsp_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
145 | ocsp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 121 | ocsp_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
146 | ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 122 | ocsp_err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
147 | ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 123 | ocsp_err.o: ocsp_err.c |
148 | ocsp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 124 | ocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h |
149 | ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 125 | ocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
150 | ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c | ||
151 | ocsp_ext.o: ../../e_os.h ../../include/openssl/aes.h | ||
152 | ocsp_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
153 | ocsp_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
154 | ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
155 | ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 126 | ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
156 | ocsp_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 127 | ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
157 | ocsp_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 128 | ocsp_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
158 | ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 129 | ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
159 | ocsp_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 130 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
160 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
161 | ocsp_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
162 | ocsp_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
163 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 131 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
164 | ocsp_ext.o: ../../include/openssl/opensslconf.h | 132 | ocsp_ext.o: ../../include/openssl/opensslconf.h |
165 | 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 |
166 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 134 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
167 | ocsp_ext.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 135 | ocsp_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
168 | ocsp_ext.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 136 | ocsp_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
169 | ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 137 | ocsp_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
170 | ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 138 | ocsp_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_ext.c |
171 | ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 139 | ocsp_ht.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
172 | ocsp_ext.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 140 | ocsp_ht.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
173 | ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 141 | ocsp_ht.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
174 | ocsp_ext.o: ../cryptlib.h ocsp_ext.c | 142 | ocsp_ht.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
175 | ocsp_ht.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 143 | ocsp_ht.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
176 | ocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 144 | ocsp_ht.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
177 | ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
178 | ocsp_ht.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
179 | ocsp_ht.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
180 | ocsp_ht.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
181 | ocsp_ht.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
182 | ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
183 | ocsp_ht.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
184 | ocsp_ht.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
185 | ocsp_ht.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
186 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 145 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
187 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 146 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
188 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 147 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
189 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 148 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
190 | ocsp_ht.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 149 | ocsp_ht.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
191 | ocsp_ht.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 150 | ocsp_ht.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
192 | ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 151 | ocsp_ht.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
193 | ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 152 | ocsp_ht.o: ocsp_ht.c |
194 | ocsp_ht.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 153 | ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
195 | ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 154 | ocsp_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
196 | ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c | ||
197 | ocsp_lib.o: ../../e_os.h ../../include/openssl/aes.h | ||
198 | ocsp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
199 | ocsp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
200 | ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
201 | ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 155 | ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
202 | ocsp_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 156 | ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
203 | ocsp_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 157 | ocsp_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
204 | ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 158 | ocsp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
205 | ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 159 | ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
206 | ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
207 | ocsp_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
208 | ocsp_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
209 | ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 160 | ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
210 | ocsp_lib.o: ../../include/openssl/opensslconf.h | 161 | ocsp_lib.o: ../../include/openssl/opensslconf.h |
211 | 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 |
212 | ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 163 | ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
213 | ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 164 | ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
214 | ocsp_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 165 | ocsp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
215 | ocsp_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 166 | ocsp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
216 | ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 167 | ocsp_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
217 | ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 168 | ocsp_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_lib.c |
218 | ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 169 | ocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
219 | ocsp_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 170 | ocsp_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
220 | ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 171 | ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
221 | ocsp_lib.o: ../cryptlib.h ocsp_lib.c | 172 | ocsp_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
222 | ocsp_prn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 173 | ocsp_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
223 | ocsp_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 174 | ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
224 | ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
225 | ocsp_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
226 | ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
227 | ocsp_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
228 | ocsp_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
229 | ocsp_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
230 | ocsp_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
231 | ocsp_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
232 | ocsp_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
233 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 175 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
234 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 176 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
235 | 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 |
236 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 178 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
237 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 179 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
238 | ocsp_prn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 180 | ocsp_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
239 | ocsp_prn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 181 | ocsp_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
240 | ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 182 | ocsp_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
241 | ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 183 | ocsp_prn.o: ocsp_prn.c |
242 | ocsp_prn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 184 | ocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h |
243 | ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 185 | ocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
244 | ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c | ||
245 | ocsp_srv.o: ../../e_os.h ../../include/openssl/aes.h | ||
246 | ocsp_srv.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
247 | ocsp_srv.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
248 | ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
249 | ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 186 | ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
250 | ocsp_srv.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 187 | ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
251 | ocsp_srv.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 188 | ocsp_srv.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
252 | ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 189 | ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
253 | ocsp_srv.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 190 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
254 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
255 | ocsp_srv.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
256 | ocsp_srv.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
257 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 191 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
258 | ocsp_srv.o: ../../include/openssl/opensslconf.h | 192 | ocsp_srv.o: ../../include/openssl/opensslconf.h |
259 | 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 |
260 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 194 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
261 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 195 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
262 | ocsp_srv.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 196 | ocsp_srv.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
263 | ocsp_srv.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 197 | ocsp_srv.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
264 | ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 198 | ocsp_srv.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
265 | ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 199 | ocsp_srv.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_srv.c |
266 | ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 200 | ocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
267 | ocsp_srv.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 201 | ocsp_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
268 | ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 202 | ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
269 | ocsp_srv.o: ../cryptlib.h ocsp_srv.c | 203 | ocsp_vfy.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
270 | ocsp_vfy.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 204 | ocsp_vfy.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
271 | ocsp_vfy.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 205 | ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
272 | ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
273 | ocsp_vfy.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
274 | ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
275 | ocsp_vfy.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
276 | ocsp_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
277 | ocsp_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
278 | ocsp_vfy.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
279 | ocsp_vfy.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
280 | ocsp_vfy.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
281 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 206 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
282 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 207 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
283 | 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 |
284 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 209 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
285 | ocsp_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 210 | ocsp_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
286 | ocsp_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 211 | ocsp_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
287 | ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 212 | ocsp_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
288 | ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 213 | ocsp_vfy.o: ocsp_vfy.c |
289 | ocsp_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
290 | ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
291 | ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c | ||
diff --git a/src/lib/libcrypto/pem/Makefile b/src/lib/libcrypto/pem/Makefile index fbc2b5d056..742194fd24 100644 --- a/src/lib/libcrypto/pem/Makefile +++ b/src/lib/libcrypto/pem/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -54,6 +49,7 @@ links: $(EXHEADER) | |||
54 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 49 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
55 | 50 | ||
56 | install: | 51 | install: |
52 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
57 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 53 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
58 | do \ | 54 | do \ |
59 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 55 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -69,6 +65,7 @@ lint: | |||
69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 65 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
70 | 66 | ||
71 | depend: | 67 | depend: |
68 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) | 69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(LIBSRC) |
73 | 70 | ||
74 | dclean: | 71 | dclean: |
@@ -80,256 +77,165 @@ clean: | |||
80 | 77 | ||
81 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 78 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
82 | 79 | ||
83 | pem_all.o: ../../e_os.h ../../include/openssl/aes.h | 80 | pem_all.o: ../../e_os.h ../../include/openssl/asn1.h |
84 | pem_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 81 | pem_all.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
85 | pem_all.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 82 | pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
86 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
87 | pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
88 | pem_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
89 | 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 |
90 | pem_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 84 | pem_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
91 | pem_all.o: ../../include/openssl/fips.h ../../include/openssl/idea.h | 85 | pem_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
92 | pem_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 86 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
93 | pem_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | 87 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
94 | pem_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | 88 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
95 | pem_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 89 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
96 | pem_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 90 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
97 | pem_all.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 91 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
98 | pem_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 92 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
99 | pem_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 93 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
100 | pem_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 94 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c |
101 | pem_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 95 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
102 | pem_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 96 | pem_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
103 | pem_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 97 | pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
104 | pem_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 98 | pem_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
105 | pem_all.o: ../cryptlib.h pem_all.c | 99 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
106 | pem_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 100 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
107 | pem_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
108 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
109 | pem_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
110 | pem_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
111 | pem_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
112 | pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
113 | pem_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
114 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
115 | pem_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
116 | pem_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
117 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 101 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
118 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 102 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
119 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 103 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
120 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 104 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
121 | pem_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 105 | pem_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
122 | pem_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 106 | pem_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
123 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 107 | pem_err.o: ../../include/openssl/x509_vfy.h pem_err.c |
124 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 108 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h |
125 | pem_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 109 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
126 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 110 | pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/dsa.h |
127 | pem_err.o: pem_err.c | 111 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
128 | pem_info.o: ../../e_os.h ../../include/openssl/aes.h | 112 | pem_info.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
129 | pem_info.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
130 | pem_info.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
131 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
132 | pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
133 | pem_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
134 | pem_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
135 | pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 113 | pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
136 | pem_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 114 | pem_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
137 | pem_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 115 | pem_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
138 | pem_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
139 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
140 | pem_info.o: ../../include/openssl/opensslconf.h | ||
141 | 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 |
142 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 117 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
143 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 118 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
144 | pem_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
145 | pem_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
146 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 119 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
147 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 120 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
148 | pem_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
149 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 121 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
150 | pem_info.o: ../cryptlib.h pem_info.c | 122 | pem_info.o: ../cryptlib.h pem_info.c |
151 | pem_lib.o: ../../e_os.h ../../include/openssl/aes.h | 123 | pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
152 | pem_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 124 | pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
153 | pem_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
154 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
155 | pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 125 | pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
156 | pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 126 | pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h |
157 | pem_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 127 | pem_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
158 | pem_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 128 | pem_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
159 | pem_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 129 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
160 | pem_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
161 | pem_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
162 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 130 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
163 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 131 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
164 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 132 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
165 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 133 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h |
166 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 134 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
167 | pem_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 135 | pem_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
168 | pem_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 136 | pem_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
169 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 137 | pem_lib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
170 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 138 | pem_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
171 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 139 | pem_lib.o: ../cryptlib.h pem_lib.c |
172 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 140 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h |
173 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | 141 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
174 | pem_oth.o: ../../e_os.h ../../include/openssl/aes.h | 142 | pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
175 | pem_oth.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 143 | pem_oth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
176 | pem_oth.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 144 | pem_oth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
177 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 145 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
178 | pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
179 | pem_oth.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
180 | pem_oth.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
181 | pem_oth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
182 | pem_oth.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
183 | pem_oth.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
184 | pem_oth.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
185 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 146 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
186 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 147 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
187 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 148 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
188 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 149 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
189 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 150 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
190 | pem_oth.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 151 | pem_oth.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
191 | pem_oth.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 152 | pem_oth.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
192 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 153 | pem_oth.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_oth.c |
193 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 154 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h |
194 | pem_oth.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 155 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
195 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 156 | pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
196 | pem_oth.o: ../cryptlib.h pem_oth.c | 157 | pem_pk8.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
197 | pem_pk8.o: ../../e_os.h ../../include/openssl/aes.h | 158 | pem_pk8.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
198 | pem_pk8.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 159 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
199 | pem_pk8.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
200 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
201 | pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
202 | pem_pk8.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
203 | pem_pk8.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
204 | pem_pk8.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
205 | pem_pk8.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
206 | pem_pk8.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
207 | pem_pk8.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
208 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 160 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
209 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 161 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
210 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 162 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
211 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 163 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h |
212 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 164 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
213 | pem_pk8.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 165 | pem_pk8.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
214 | pem_pk8.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 166 | pem_pk8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
215 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 167 | pem_pk8.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
216 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 168 | pem_pk8.o: ../cryptlib.h pem_pk8.c |
217 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 169 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
218 | pem_pk8.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 170 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
219 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | 171 | pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
220 | pem_pkey.o: ../../e_os.h ../../include/openssl/aes.h | 172 | pem_pkey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
221 | pem_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 173 | pem_pkey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
222 | pem_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 174 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
223 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
224 | pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
225 | pem_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
226 | pem_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
227 | pem_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
228 | pem_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
229 | pem_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
230 | pem_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
231 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 175 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
232 | pem_pkey.o: ../../include/openssl/opensslconf.h | 176 | pem_pkey.o: ../../include/openssl/opensslconf.h |
233 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 177 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
234 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 178 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
235 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 179 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
236 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 180 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
237 | pem_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 181 | pem_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
238 | pem_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 182 | pem_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
239 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 183 | pem_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pkey.c |
240 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 184 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h |
241 | pem_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 185 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
242 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 186 | pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
243 | pem_pkey.o: ../cryptlib.h pem_pkey.c | 187 | pem_seal.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
244 | pem_seal.o: ../../e_os.h ../../include/openssl/aes.h | 188 | pem_seal.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
245 | pem_seal.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 189 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
246 | pem_seal.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
247 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
248 | pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
249 | pem_seal.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
250 | pem_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
251 | pem_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
252 | pem_seal.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
253 | pem_seal.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
254 | pem_seal.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
255 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 190 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
256 | pem_seal.o: ../../include/openssl/opensslconf.h | 191 | pem_seal.o: ../../include/openssl/opensslconf.h |
257 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 192 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
258 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 193 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
259 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 194 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
260 | pem_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
261 | pem_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
262 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 195 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
263 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 196 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
264 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 197 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
265 | pem_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
266 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | 198 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c |
267 | pem_sign.o: ../../e_os.h ../../include/openssl/aes.h | 199 | pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h |
268 | pem_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 200 | pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
269 | pem_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 201 | pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
270 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 202 | pem_sign.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
271 | pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 203 | pem_sign.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
272 | pem_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 204 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
273 | pem_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
274 | pem_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
275 | pem_sign.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
276 | pem_sign.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
277 | pem_sign.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
278 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 205 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
279 | pem_sign.o: ../../include/openssl/opensslconf.h | 206 | pem_sign.o: ../../include/openssl/opensslconf.h |
280 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 207 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
281 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 208 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
282 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 209 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
283 | pem_sign.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 210 | pem_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
284 | pem_sign.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 211 | pem_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
285 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 212 | pem_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
286 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 213 | pem_sign.o: ../cryptlib.h pem_sign.c |
287 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 214 | pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h |
288 | pem_sign.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 215 | pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
289 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | 216 | pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
290 | pem_x509.o: ../../e_os.h ../../include/openssl/aes.h | 217 | pem_x509.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
291 | pem_x509.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 218 | pem_x509.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
292 | pem_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 219 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
293 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
294 | pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
295 | pem_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
296 | pem_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
297 | pem_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
298 | pem_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
299 | pem_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
300 | pem_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
301 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 220 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
302 | pem_x509.o: ../../include/openssl/opensslconf.h | 221 | pem_x509.o: ../../include/openssl/opensslconf.h |
303 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 222 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
304 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 223 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
305 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 224 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
306 | pem_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 225 | pem_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
307 | pem_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 226 | pem_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
308 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 227 | pem_x509.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_x509.c |
309 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 228 | pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h |
310 | pem_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 229 | pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
311 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 230 | pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
312 | pem_x509.o: ../cryptlib.h pem_x509.c | 231 | pem_xaux.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
313 | pem_xaux.o: ../../e_os.h ../../include/openssl/aes.h | 232 | pem_xaux.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
314 | pem_xaux.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 233 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
315 | pem_xaux.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
316 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
317 | pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
318 | pem_xaux.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
319 | pem_xaux.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
320 | pem_xaux.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
321 | pem_xaux.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
322 | pem_xaux.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
323 | pem_xaux.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
324 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 234 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
325 | pem_xaux.o: ../../include/openssl/opensslconf.h | 235 | pem_xaux.o: ../../include/openssl/opensslconf.h |
326 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 236 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
327 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 237 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
328 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 238 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
329 | pem_xaux.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 239 | pem_xaux.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
330 | pem_xaux.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 240 | pem_xaux.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
331 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 241 | pem_xaux.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_xaux.c |
332 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
333 | pem_xaux.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
334 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
335 | pem_xaux.o: ../cryptlib.h pem_xaux.c | ||
diff --git a/src/lib/libcrypto/pkcs12/Makefile b/src/lib/libcrypto/pkcs12/Makefile index bef4f27912..3a7498fe7a 100644 --- a/src/lib/libcrypto/pkcs12/Makefile +++ b/src/lib/libcrypto/pkcs12/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -57,6 +52,7 @@ links: | |||
57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 52 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
58 | 53 | ||
59 | install: | 54 | install: |
55 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
60 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 56 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
61 | do \ | 57 | do \ |
62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -72,6 +68,7 @@ lint: | |||
72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
73 | 69 | ||
74 | depend: | 70 | depend: |
71 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
75 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 72 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
76 | 73 | ||
77 | dclean: | 74 | dclean: |
@@ -83,333 +80,207 @@ clean: | |||
83 | 80 | ||
84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
85 | 82 | ||
86 | p12_add.o: ../../e_os.h ../../include/openssl/aes.h | 83 | p12_add.o: ../../e_os.h ../../include/openssl/asn1.h |
87 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 84 | p12_add.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
88 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 85 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
89 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 86 | p12_add.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
90 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 87 | p12_add.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
91 | p12_add.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 88 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
92 | p12_add.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
93 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
94 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
95 | p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
96 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
97 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 89 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
98 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 90 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
99 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 91 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
100 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 92 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
101 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 93 | p12_add.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
102 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 94 | p12_add.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
103 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 95 | p12_add.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_add.c |
104 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 96 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h |
105 | p12_add.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 97 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
106 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 98 | p12_asn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
107 | p12_add.o: ../cryptlib.h p12_add.c | 99 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
108 | p12_asn.o: ../../e_os.h ../../include/openssl/aes.h | 100 | p12_asn.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
109 | p12_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 101 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
110 | p12_asn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 102 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
111 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
112 | p12_asn.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
113 | p12_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
114 | p12_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
115 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
116 | p12_asn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
117 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
118 | p12_asn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
119 | p12_asn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
120 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 103 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
121 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 104 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
122 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 105 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
123 | p12_asn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 106 | p12_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
124 | p12_asn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 107 | p12_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
125 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 108 | p12_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
126 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 109 | p12_asn.o: ../cryptlib.h p12_asn.c |
127 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 110 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h |
128 | p12_asn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 111 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
129 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | 112 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
130 | p12_attr.o: ../../e_os.h ../../include/openssl/aes.h | 113 | p12_attr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
131 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 114 | p12_attr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
132 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 115 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
133 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
134 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
135 | p12_attr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
136 | p12_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
137 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
138 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
139 | p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
140 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
141 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 116 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
142 | p12_attr.o: ../../include/openssl/opensslconf.h | 117 | p12_attr.o: ../../include/openssl/opensslconf.h |
143 | 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 |
144 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 119 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
145 | p12_attr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 120 | p12_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
146 | p12_attr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 121 | p12_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
147 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 122 | p12_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
148 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 123 | p12_attr.o: ../cryptlib.h p12_attr.c |
149 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 124 | p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h |
150 | p12_attr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 125 | p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
151 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c | 126 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
152 | p12_crpt.o: ../../e_os.h ../../include/openssl/aes.h | 127 | p12_crpt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
153 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 128 | p12_crpt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
154 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 129 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
155 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
156 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
157 | p12_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
158 | p12_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
159 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
160 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
161 | p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
162 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
163 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 130 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
164 | p12_crpt.o: ../../include/openssl/opensslconf.h | 131 | p12_crpt.o: ../../include/openssl/opensslconf.h |
165 | 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 |
166 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 133 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
167 | p12_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 134 | p12_crpt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
168 | p12_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 135 | p12_crpt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
169 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 136 | p12_crpt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
170 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 137 | p12_crpt.o: ../cryptlib.h p12_crpt.c |
171 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 138 | p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h |
172 | p12_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 139 | p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
173 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c | 140 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
174 | p12_crt.o: ../../e_os.h ../../include/openssl/aes.h | 141 | p12_crt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
175 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 142 | p12_crt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
176 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 143 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
177 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
178 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
179 | p12_crt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
180 | p12_crt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
181 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
182 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
183 | p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
184 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
185 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 144 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
186 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 145 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
187 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 146 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
188 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 147 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
189 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 148 | p12_crt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
190 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 149 | p12_crt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
191 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 150 | p12_crt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crt.c |
192 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 151 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h |
193 | p12_crt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 152 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
194 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 153 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
195 | p12_crt.o: ../cryptlib.h p12_crt.c | 154 | p12_decr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
196 | p12_decr.o: ../../e_os.h ../../include/openssl/aes.h | 155 | p12_decr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
197 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 156 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
198 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
199 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
200 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
201 | p12_decr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
202 | p12_decr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
203 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
204 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
205 | p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
206 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
207 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 157 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
208 | p12_decr.o: ../../include/openssl/opensslconf.h | 158 | p12_decr.o: ../../include/openssl/opensslconf.h |
209 | 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 |
210 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 160 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
211 | p12_decr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 161 | p12_decr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
212 | p12_decr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 162 | p12_decr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
213 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 163 | p12_decr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
214 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 164 | p12_decr.o: ../cryptlib.h p12_decr.c |
215 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 165 | p12_init.o: ../../e_os.h ../../include/openssl/asn1.h |
216 | p12_decr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 166 | p12_init.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
217 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c | 167 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
218 | p12_init.o: ../../e_os.h ../../include/openssl/aes.h | 168 | p12_init.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
219 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 169 | p12_init.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
220 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 170 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
221 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
222 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
223 | p12_init.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
224 | p12_init.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
225 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
226 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
227 | p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
228 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
229 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 171 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
230 | p12_init.o: ../../include/openssl/opensslconf.h | 172 | p12_init.o: ../../include/openssl/opensslconf.h |
231 | 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 |
232 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 174 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
233 | p12_init.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 175 | p12_init.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
234 | p12_init.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 176 | p12_init.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
235 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 177 | p12_init.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
236 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 178 | p12_init.o: ../cryptlib.h p12_init.c |
237 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 179 | p12_key.o: ../../e_os.h ../../include/openssl/asn1.h |
238 | p12_init.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 180 | p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
239 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c | 181 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
240 | p12_key.o: ../../e_os.h ../../include/openssl/aes.h | 182 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
241 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 183 | p12_key.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
242 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
243 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
244 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
245 | p12_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
246 | p12_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
247 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 184 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
248 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 185 | p12_key.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
249 | p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 186 | p12_key.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
250 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 187 | p12_key.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
251 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 188 | p12_key.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
252 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
253 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | ||
254 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
255 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
256 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
257 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 189 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
258 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 190 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
259 | p12_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
260 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 191 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
261 | p12_key.o: ../cryptlib.h p12_key.c | 192 | p12_key.o: ../cryptlib.h p12_key.c |
262 | p12_kiss.o: ../../e_os.h ../../include/openssl/aes.h | 193 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h |
263 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 194 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
264 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 195 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
265 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 196 | p12_kiss.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
266 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 197 | p12_kiss.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
267 | p12_kiss.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 198 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
268 | p12_kiss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
269 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
270 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
271 | p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
272 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
273 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 199 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
274 | p12_kiss.o: ../../include/openssl/opensslconf.h | 200 | p12_kiss.o: ../../include/openssl/opensslconf.h |
275 | 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 |
276 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 202 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
277 | p12_kiss.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 203 | p12_kiss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
278 | p12_kiss.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 204 | p12_kiss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
279 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 205 | p12_kiss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
280 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 206 | p12_kiss.o: ../cryptlib.h p12_kiss.c |
281 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 207 | p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h |
282 | p12_kiss.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 208 | p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
283 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c | 209 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
284 | p12_mutl.o: ../../e_os.h ../../include/openssl/aes.h | 210 | p12_mutl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
285 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 211 | p12_mutl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
286 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 212 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h |
287 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 213 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
288 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
289 | p12_mutl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
290 | p12_mutl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
291 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
292 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
293 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
294 | p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
295 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
296 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 214 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
297 | 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 |
298 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 216 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
299 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 217 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
300 | p12_mutl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 218 | p12_mutl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
301 | p12_mutl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 219 | p12_mutl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
302 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 220 | p12_mutl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_mutl.c |
303 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 221 | p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
304 | p12_mutl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 222 | p12_npas.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
305 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 223 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
306 | p12_mutl.o: ../cryptlib.h p12_mutl.c | 224 | p12_npas.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
307 | p12_npas.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 225 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
308 | p12_npas.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 226 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
309 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
310 | p12_npas.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
311 | p12_npas.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
312 | p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
313 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
314 | p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
315 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
316 | p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
317 | p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
318 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 227 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
319 | 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 |
320 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 229 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
321 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 230 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
322 | p12_npas.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 231 | p12_npas.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
323 | p12_npas.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 232 | p12_npas.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
324 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 233 | p12_npas.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
325 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 234 | p12_npas.o: p12_npas.c |
326 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 235 | p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h |
327 | p12_npas.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 236 | p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
328 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c | 237 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
329 | p12_p8d.o: ../../e_os.h ../../include/openssl/aes.h | 238 | p12_p8d.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
330 | p12_p8d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 239 | p12_p8d.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
331 | p12_p8d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 240 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
332 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
333 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
334 | p12_p8d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
335 | p12_p8d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
336 | p12_p8d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
337 | p12_p8d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
338 | p12_p8d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
339 | p12_p8d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
340 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 241 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
341 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 242 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
342 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 243 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
343 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 244 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
344 | p12_p8d.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 245 | p12_p8d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
345 | p12_p8d.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 246 | p12_p8d.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
346 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 247 | p12_p8d.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8d.c |
347 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 248 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h |
348 | p12_p8d.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 249 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
349 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 250 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
350 | p12_p8d.o: ../cryptlib.h p12_p8d.c | 251 | p12_p8e.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
351 | p12_p8e.o: ../../e_os.h ../../include/openssl/aes.h | 252 | p12_p8e.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
352 | p12_p8e.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 253 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
353 | p12_p8e.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
354 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
355 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
356 | p12_p8e.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
357 | p12_p8e.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
358 | p12_p8e.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
359 | p12_p8e.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
360 | p12_p8e.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
361 | p12_p8e.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
362 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 254 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
363 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 255 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
364 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 256 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
365 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 257 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
366 | p12_p8e.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 258 | p12_p8e.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
367 | p12_p8e.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 259 | p12_p8e.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
368 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 260 | p12_p8e.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_p8e.c |
369 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 261 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h |
370 | p12_p8e.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 262 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
371 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 263 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
372 | p12_p8e.o: ../cryptlib.h p12_p8e.c | 264 | p12_utl.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
373 | p12_utl.o: ../../e_os.h ../../include/openssl/aes.h | 265 | p12_utl.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
374 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 266 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
375 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
376 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
377 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
378 | p12_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
379 | p12_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
380 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
381 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
382 | p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
383 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
384 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 267 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
385 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 268 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
386 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 269 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
387 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 270 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
388 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 271 | p12_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
389 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 272 | p12_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
390 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 273 | p12_utl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_utl.c |
391 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 274 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
392 | p12_utl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 275 | pk12err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
393 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 276 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
394 | p12_utl.o: ../cryptlib.h p12_utl.c | 277 | pk12err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
395 | pk12err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 278 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
396 | pk12err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 279 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
397 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
398 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
399 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
400 | pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
401 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
402 | pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
403 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
404 | pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
405 | pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
406 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 280 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
407 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 281 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
408 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 282 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
409 | pk12err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 283 | pk12err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
410 | pk12err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 284 | pk12err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
411 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 285 | pk12err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
412 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 286 | pk12err.o: pk12err.c |
413 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
414 | pk12err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
415 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c | ||
diff --git a/src/lib/libcrypto/pkcs7/Makefile b/src/lib/libcrypto/pkcs7/Makefile index a213ae2227..3f7e88b40f 100644 --- a/src/lib/libcrypto/pkcs7/Makefile +++ b/src/lib/libcrypto/pkcs7/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -72,6 +67,7 @@ links: | |||
72 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 67 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
73 | 68 | ||
74 | install: | 69 | install: |
70 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
75 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 71 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
76 | do \ | 72 | do \ |
77 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 73 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -87,6 +83,7 @@ lint: | |||
87 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 83 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
88 | 84 | ||
89 | depend: | 85 | depend: |
86 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
90 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 87 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
91 | 88 | ||
92 | dclean: | 89 | dclean: |
@@ -98,143 +95,92 @@ clean: | |||
98 | 95 | ||
99 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 96 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
100 | 97 | ||
101 | pk7_asn1.o: ../../e_os.h ../../include/openssl/aes.h | 98 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
102 | pk7_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 99 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
103 | pk7_asn1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 100 | pk7_asn1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
104 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 101 | pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
105 | pk7_asn1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 102 | pk7_asn1.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
106 | pk7_asn1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 103 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
107 | pk7_asn1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 104 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
108 | pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
109 | pk7_asn1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
110 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
111 | pk7_asn1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
112 | pk7_asn1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
113 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 105 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
114 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 106 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
115 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 107 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
116 | pk7_asn1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 108 | pk7_asn1.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
117 | pk7_asn1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 109 | pk7_asn1.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
118 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 110 | pk7_asn1.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_asn1.c |
119 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 111 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
120 | pk7_asn1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 112 | pk7_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
121 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 113 | pk7_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
122 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c | 114 | pk7_attr.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
123 | pk7_attr.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 115 | pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
124 | pk7_attr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 116 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
125 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
126 | pk7_attr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
127 | pk7_attr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
128 | pk7_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
129 | pk7_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
130 | pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
131 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
132 | pk7_attr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
133 | pk7_attr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
134 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 117 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
135 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 118 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
136 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 119 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
137 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 120 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
138 | pk7_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 121 | pk7_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
139 | pk7_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 122 | pk7_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
140 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 123 | pk7_attr.o: ../../include/openssl/x509_vfy.h pk7_attr.c |
141 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 124 | pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h |
142 | pk7_attr.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 125 | pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
143 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
144 | pk7_attr.o: pk7_attr.c | ||
145 | pk7_doit.o: ../../e_os.h ../../include/openssl/aes.h | ||
146 | pk7_doit.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
147 | pk7_doit.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
148 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
149 | pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 126 | pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
150 | pk7_doit.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 127 | pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
151 | pk7_doit.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 128 | pk7_doit.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
152 | pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 129 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
153 | pk7_doit.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 130 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
154 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
155 | pk7_doit.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
156 | pk7_doit.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
157 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 131 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
158 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 132 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
159 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 133 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
160 | pk7_doit.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 134 | pk7_doit.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
161 | pk7_doit.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 135 | pk7_doit.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
162 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 136 | pk7_doit.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
163 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 137 | pk7_doit.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_doit.c |
164 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 138 | pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
165 | pk7_doit.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 139 | pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
166 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 140 | pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
167 | pk7_doit.o: ../cryptlib.h pk7_doit.c | 141 | pk7_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
168 | pk7_lib.o: ../../e_os.h ../../include/openssl/aes.h | 142 | pk7_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
169 | pk7_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 143 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
170 | pk7_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
171 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
172 | pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
173 | pk7_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
174 | pk7_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
175 | pk7_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
176 | pk7_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
177 | pk7_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
178 | pk7_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
179 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 144 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
180 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 145 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
181 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 146 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
182 | pk7_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 147 | pk7_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
183 | pk7_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 148 | pk7_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
184 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 149 | pk7_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
185 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | pk7_lib.o: ../cryptlib.h pk7_lib.c |
186 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 151 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h |
187 | pk7_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 152 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
188 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | 153 | pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
189 | pk7_mime.o: ../../e_os.h ../../include/openssl/aes.h | 154 | pk7_mime.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
190 | pk7_mime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 155 | pk7_mime.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
191 | pk7_mime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 156 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
192 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
193 | pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
194 | pk7_mime.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
195 | pk7_mime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
196 | pk7_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
197 | pk7_mime.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
198 | pk7_mime.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
199 | pk7_mime.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
200 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 157 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
201 | pk7_mime.o: ../../include/openssl/opensslconf.h | 158 | pk7_mime.o: ../../include/openssl/opensslconf.h |
202 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 159 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
203 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 160 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
204 | pk7_mime.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 161 | pk7_mime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
205 | pk7_mime.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 162 | pk7_mime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
206 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 163 | pk7_mime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
207 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 164 | pk7_mime.o: ../cryptlib.h pk7_mime.c |
208 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 165 | pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h |
209 | pk7_mime.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 166 | pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
210 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c | ||
211 | pk7_smime.o: ../../e_os.h ../../include/openssl/aes.h | ||
212 | pk7_smime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
213 | pk7_smime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
214 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
215 | pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 167 | pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
216 | pk7_smime.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 168 | pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
217 | pk7_smime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 169 | pk7_smime.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
218 | pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 170 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
219 | pk7_smime.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 171 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
220 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
221 | pk7_smime.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
222 | pk7_smime.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
223 | pk7_smime.o: ../../include/openssl/objects.h | 172 | pk7_smime.o: ../../include/openssl/objects.h |
224 | pk7_smime.o: ../../include/openssl/opensslconf.h | 173 | pk7_smime.o: ../../include/openssl/opensslconf.h |
225 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 174 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
226 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 175 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
227 | pk7_smime.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 176 | pk7_smime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
228 | pk7_smime.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 177 | pk7_smime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
229 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 178 | pk7_smime.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
230 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 179 | pk7_smime.o: ../cryptlib.h pk7_smime.c |
231 | pk7_smime.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
232 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
233 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c | ||
234 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 180 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
235 | pkcs7err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 181 | pkcs7err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
236 | pkcs7err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 182 | pkcs7err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
237 | pkcs7err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 183 | pkcs7err.o: ../../include/openssl/opensslconf.h |
238 | pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 184 | pkcs7err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
239 | pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | 185 | pkcs7err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
240 | pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 186 | pkcs7err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
diff --git a/src/lib/libcrypto/pqueue/pq_compat.h b/src/lib/libcrypto/pqueue/pq_compat.h new file mode 100644 index 0000000000..fd36578882 --- /dev/null +++ b/src/lib/libcrypto/pqueue/pq_compat.h | |||
@@ -0,0 +1,147 @@ | |||
1 | /* crypto/pqueue/pqueue_compat.h */ | ||
2 | /* | ||
3 | * DTLS implementation written by Nagendra Modadugu | ||
4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. | ||
5 | */ | ||
6 | /* ==================================================================== | ||
7 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. | ||
8 | * | ||
9 | * Redistribution and use in source and binary forms, with or without | ||
10 | * modification, are permitted provided that the following conditions | ||
11 | * are met: | ||
12 | * | ||
13 | * 1. Redistributions of source code must retain the above copyright | ||
14 | * notice, this list of conditions and the following disclaimer. | ||
15 | * | ||
16 | * 2. Redistributions in binary form must reproduce the above copyright | ||
17 | * notice, this list of conditions and the following disclaimer in | ||
18 | * the documentation and/or other materials provided with the | ||
19 | * distribution. | ||
20 | * | ||
21 | * 3. All advertising materials mentioning features or use of this | ||
22 | * software must display the following acknowledgment: | ||
23 | * "This product includes software developed by the OpenSSL Project | ||
24 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
25 | * | ||
26 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
27 | * endorse or promote products derived from this software without | ||
28 | * prior written permission. For written permission, please contact | ||
29 | * openssl-core@OpenSSL.org. | ||
30 | * | ||
31 | * 5. Products derived from this software may not be called "OpenSSL" | ||
32 | * nor may "OpenSSL" appear in their names without prior written | ||
33 | * permission of the OpenSSL Project. | ||
34 | * | ||
35 | * 6. Redistributions of any form whatsoever must retain the following | ||
36 | * acknowledgment: | ||
37 | * "This product includes software developed by the OpenSSL Project | ||
38 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
39 | * | ||
40 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
41 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
43 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
44 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
45 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
46 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
47 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
49 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
50 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
51 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
52 | * ==================================================================== | ||
53 | * | ||
54 | * This product includes cryptographic software written by Eric Young | ||
55 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
56 | * Hudson (tjh@cryptsoft.com). | ||
57 | * | ||
58 | */ | ||
59 | |||
60 | #include <openssl/opensslconf.h> | ||
61 | #include <openssl/bn.h> | ||
62 | |||
63 | /* | ||
64 | * The purpose of this header file is for supporting 64-bit integer | ||
65 | * manipulation on 32-bit (and lower) machines. Currently the only | ||
66 | * such environment is VMS, Utrix and those with smaller default integer | ||
67 | * sizes than 32 bits. For all such environment, we fall back to using | ||
68 | * BIGNUM. We may need to fine tune the conditions for systems that | ||
69 | * are incorrectly configured. | ||
70 | * | ||
71 | * The only clients of this code are (1) pqueue for priority, and | ||
72 | * (2) DTLS, for sequence number manipulation. | ||
73 | */ | ||
74 | |||
75 | #if (defined(THIRTY_TWO_BIT) && !defined(BN_LLONG)) || defined(SIXTEEN_BIT) || defined(EIGHT_BIT) | ||
76 | |||
77 | #define PQ_64BIT_IS_INTEGER 0 | ||
78 | #define PQ_64BIT_IS_BIGNUM 1 | ||
79 | |||
80 | #define PQ_64BIT BIGNUM | ||
81 | #define PQ_64BIT_CTX BN_CTX | ||
82 | |||
83 | #define pq_64bit_init(x) BN_init(x) | ||
84 | #define pq_64bit_free(x) BN_free(x) | ||
85 | |||
86 | #define pq_64bit_ctx_new(ctx) BN_CTX_new() | ||
87 | #define pq_64bit_ctx_free(x) BN_CTX_free(x) | ||
88 | |||
89 | #define pq_64bit_assign(x, y) BN_copy(x, y) | ||
90 | #define pq_64bit_assign_word(x, y) BN_set_word(x, y) | ||
91 | #define pq_64bit_gt(x, y) BN_ucmp(x, y) >= 1 ? 1 : 0 | ||
92 | #define pq_64bit_eq(x, y) BN_ucmp(x, y) == 0 ? 1 : 0 | ||
93 | #define pq_64bit_add_word(x, w) BN_add_word(x, w) | ||
94 | #define pq_64bit_sub(r, x, y) BN_sub(r, x, y) | ||
95 | #define pq_64bit_sub_word(x, w) BN_sub_word(x, w) | ||
96 | #define pq_64bit_mod(r, x, n, ctx) BN_mod(r, x, n, ctx) | ||
97 | |||
98 | #define pq_64bit_bin2num(bn, bytes, len) BN_bin2bn(bytes, len, bn) | ||
99 | #define pq_64bit_num2bin(bn, bytes) BN_bn2bin(bn, bytes) | ||
100 | #define pq_64bit_get_word(x) BN_get_word(x) | ||
101 | #define pq_64bit_is_bit_set(x, offset) BN_is_bit_set(x, offset) | ||
102 | #define pq_64bit_lshift(r, x, shift) BN_lshift(r, x, shift) | ||
103 | #define pq_64bit_set_bit(x, num) BN_set_bit(x, num) | ||
104 | #define pq_64bit_get_length(x) BN_num_bits((x)) | ||
105 | |||
106 | #else | ||
107 | |||
108 | #define PQ_64BIT_IS_INTEGER 1 | ||
109 | #define PQ_64BIT_IS_BIGNUM 0 | ||
110 | |||
111 | #if defined(SIXTY_FOUR_BIT) | ||
112 | #define PQ_64BIT BN_ULONG | ||
113 | #define PQ_64BIT_PRINT "%lld" | ||
114 | #elif defined(SIXTY_FOUR_BIT_LONG) | ||
115 | #define PQ_64BIT BN_ULONG | ||
116 | #define PQ_64BIT_PRINT "%ld" | ||
117 | #elif defined(THIRTY_TWO_BIT) | ||
118 | #define PQ_64BIT BN_ULLONG | ||
119 | #define PQ_64BIT_PRINT "%lld" | ||
120 | #endif | ||
121 | |||
122 | #define PQ_64BIT_CTX void | ||
123 | |||
124 | #define pq_64bit_init(x) | ||
125 | #define pq_64bit_free(x) | ||
126 | #define pq_64bit_ctx_new(ctx) (ctx) | ||
127 | #define pq_64bit_ctx_free(x) | ||
128 | |||
129 | #define pq_64bit_assign(x, y) (*(x) = *(y)) | ||
130 | #define pq_64bit_assign_word(x, y) (*(x) = y) | ||
131 | #define pq_64bit_gt(x, y) (*(x) > *(y)) | ||
132 | #define pq_64bit_eq(x, y) (*(x) == *(y)) | ||
133 | #define pq_64bit_add_word(x, w) (*(x) = (*(x) + (w))) | ||
134 | #define pq_64bit_sub(r, x, y) (*(r) = (*(x) - *(y))) | ||
135 | #define pq_64bit_sub_word(x, w) (*(x) = (*(x) - (w))) | ||
136 | #define pq_64bit_mod(r, x, n, ctx) | ||
137 | |||
138 | #define pq_64bit_bin2num(num, bytes, len) bytes_to_long_long(bytes, num) | ||
139 | #define pq_64bit_num2bin(num, bytes) long_long_to_bytes(num, bytes) | ||
140 | #define pq_64bit_get_word(x) *(x) | ||
141 | #define pq_64bit_lshift(r, x, shift) (*(r) = (*(x) << (shift))) | ||
142 | #define pq_64bit_set_bit(x, num) do { \ | ||
143 | PQ_64BIT mask = 1; \ | ||
144 | mask = mask << (num); \ | ||
145 | *(x) |= mask; \ | ||
146 | } while(0) | ||
147 | #endif /* OPENSSL_SYS_VMS */ | ||
diff --git a/src/lib/libcrypto/rand/Makefile b/src/lib/libcrypto/rand/Makefile index b1d1a75f98..3c1ab5bbae 100644 --- a/src/lib/libcrypto/rand/Makefile +++ b/src/lib/libcrypto/rand/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -23,9 +18,9 @@ APPS= | |||
23 | 18 | ||
24 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \ | 20 | LIBSRC=md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c \ |
26 | rand_win.c rand_unix.c rand_os2.c | 21 | rand_win.c rand_unix.c rand_os2.c rand_nw.c |
27 | LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \ | 22 | LIBOBJ=md_rand.o randfile.o rand_lib.o rand_err.o rand_egd.o \ |
28 | rand_win.o rand_unix.o rand_os2.o | 23 | rand_win.o rand_unix.o rand_os2.o rand_nw.o |
29 | 24 | ||
30 | SRC= $(LIBSRC) | 25 | SRC= $(LIBSRC) |
31 | 26 | ||
@@ -53,6 +48,7 @@ links: | |||
53 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 48 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
54 | 49 | ||
55 | install: | 50 | install: |
51 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
56 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 52 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
57 | do \ | 53 | do \ |
58 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 54 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -68,6 +64,7 @@ lint: | |||
68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 64 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
69 | 65 | ||
70 | depend: | 66 | depend: |
67 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
71 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 68 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
72 | 69 | ||
73 | dclean: | 70 | dclean: |
@@ -79,26 +76,16 @@ clean: | |||
79 | 76 | ||
80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 77 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
81 | 78 | ||
82 | md_rand.o: ../../e_os.h ../../include/openssl/aes.h | 79 | md_rand.o: ../../e_os.h ../../include/openssl/asn1.h |
83 | md_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 80 | md_rand.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
84 | md_rand.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
85 | md_rand.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
86 | md_rand.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
87 | md_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
88 | md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 81 | md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
89 | md_rand.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 82 | md_rand.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
90 | md_rand.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
91 | md_rand.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
92 | md_rand.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
93 | md_rand.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 83 | md_rand.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
94 | md_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 84 | md_rand.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
95 | md_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 85 | md_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
96 | md_rand.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 86 | md_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
97 | md_rand.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 87 | md_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
98 | md_rand.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 88 | md_rand.o: md_rand.c rand_lcl.h |
99 | md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
100 | md_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
101 | md_rand.o: ../../include/openssl/ui_compat.h md_rand.c rand_lcl.h | ||
102 | rand_egd.o: ../../include/openssl/buffer.h ../../include/openssl/e_os2.h | 89 | rand_egd.o: ../../include/openssl/buffer.h ../../include/openssl/e_os2.h |
103 | rand_egd.o: ../../include/openssl/opensslconf.h | 90 | rand_egd.o: ../../include/openssl/opensslconf.h |
104 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 91 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
@@ -110,83 +97,59 @@ rand_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
110 | rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 97 | rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
111 | rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 98 | rand_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
112 | rand_err.o: rand_err.c | 99 | rand_err.o: rand_err.c |
113 | rand_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 100 | rand_lib.o: ../../e_os.h ../../include/openssl/bio.h |
114 | rand_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
115 | rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 101 | rand_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
116 | rand_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
117 | rand_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
118 | rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 102 | rand_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
119 | rand_lib.o: ../../include/openssl/err.h ../../include/openssl/fips.h | 103 | rand_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
120 | rand_lib.o: ../../include/openssl/fips_rand.h ../../include/openssl/lhash.h | ||
121 | rand_lib.o: ../../include/openssl/opensslconf.h | 104 | rand_lib.o: ../../include/openssl/opensslconf.h |
122 | rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 105 | rand_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
123 | rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 106 | rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
124 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 107 | rand_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
125 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 108 | rand_lib.o: ../cryptlib.h rand_lib.c |
126 | rand_lib.o: ../../include/openssl/ui_compat.h ../cryptlib.h rand_lib.c | 109 | rand_nw.o: ../../e_os.h ../../include/openssl/asn1.h |
127 | rand_os2.o: ../../e_os.h ../../include/openssl/aes.h | 110 | rand_nw.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
128 | rand_os2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 111 | rand_nw.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
129 | rand_os2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 112 | rand_nw.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
130 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 113 | rand_nw.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
131 | rand_os2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 114 | rand_nw.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
132 | rand_os2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 115 | rand_nw.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
133 | rand_os2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 116 | rand_nw.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
117 | rand_nw.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
118 | rand_nw.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h rand_nw.c | ||
119 | rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h | ||
120 | rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
121 | rand_os2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
134 | rand_os2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 122 | rand_os2.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
135 | rand_os2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 123 | rand_os2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
136 | rand_os2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 124 | rand_os2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
137 | rand_os2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
138 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
139 | rand_os2.o: ../../include/openssl/opensslconf.h | ||
140 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 125 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
141 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 126 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
142 | rand_os2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 127 | rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
143 | rand_os2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 128 | rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h |
144 | rand_os2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 129 | rand_os2.o: rand_os2.c |
145 | rand_os2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 130 | rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h |
146 | rand_os2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 131 | rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
147 | rand_os2.o: ../cryptlib.h rand_lcl.h rand_os2.c | 132 | rand_unix.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
148 | rand_unix.o: ../../e_os.h ../../include/openssl/aes.h | ||
149 | rand_unix.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
150 | rand_unix.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
151 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
152 | rand_unix.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
153 | rand_unix.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
154 | rand_unix.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
155 | rand_unix.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 133 | rand_unix.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
156 | rand_unix.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 134 | rand_unix.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
157 | rand_unix.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 135 | rand_unix.o: ../../include/openssl/objects.h |
158 | rand_unix.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
159 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
160 | rand_unix.o: ../../include/openssl/opensslconf.h | 136 | rand_unix.o: ../../include/openssl/opensslconf.h |
161 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 137 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
162 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 138 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
163 | rand_unix.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 139 | rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
164 | rand_unix.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 140 | rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h |
165 | rand_unix.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 141 | rand_unix.o: rand_unix.c |
166 | rand_unix.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 142 | rand_win.o: ../../e_os.h ../../include/openssl/asn1.h |
167 | rand_unix.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 143 | rand_win.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
168 | rand_unix.o: ../cryptlib.h rand_lcl.h rand_unix.c | 144 | rand_win.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
169 | rand_win.o: ../../e_os.h ../../include/openssl/aes.h | ||
170 | rand_win.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
171 | rand_win.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
172 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
173 | rand_win.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
174 | rand_win.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
175 | rand_win.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
176 | rand_win.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 145 | rand_win.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
177 | rand_win.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 146 | rand_win.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
178 | rand_win.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 147 | rand_win.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
179 | rand_win.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
180 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
181 | rand_win.o: ../../include/openssl/opensslconf.h | ||
182 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
183 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 149 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h |
184 | rand_win.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 150 | rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
185 | rand_win.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 151 | rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h |
186 | rand_win.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 152 | rand_win.o: rand_win.c |
187 | rand_win.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
188 | rand_win.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
189 | rand_win.o: ../cryptlib.h rand_lcl.h rand_win.c | ||
190 | randfile.o: ../../e_os.h ../../include/openssl/buffer.h | 153 | randfile.o: ../../e_os.h ../../include/openssl/buffer.h |
191 | randfile.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 154 | randfile.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
192 | randfile.o: ../../include/openssl/opensslconf.h | 155 | randfile.o: ../../include/openssl/opensslconf.h |
diff --git a/src/lib/libcrypto/rc2/Makefile b/src/lib/libcrypto/rc2/Makefile index 34080ab741..73eac347e7 100644 --- a/src/lib/libcrypto/rc2/Makefile +++ b/src/lib/libcrypto/rc2/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -81,11 +78,8 @@ rc2_cbc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | |||
81 | rc2_cbc.o: rc2_cbc.c rc2_locl.h | 78 | rc2_cbc.o: rc2_cbc.c rc2_locl.h |
82 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 79 | rc2_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
83 | 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 |
84 | rc2_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 81 | rc2_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h |
85 | rc2_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | 82 | rc2_skey.o: rc2_locl.h rc2_skey.c |
86 | rc2_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc2.h | ||
87 | rc2_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
88 | rc2_skey.o: ../../include/openssl/symhacks.h rc2_locl.h rc2_skey.c | ||
89 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | 83 | rc2cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h |
90 | rc2cfb64.o: rc2_locl.h rc2cfb64.c | 84 | rc2cfb64.o: rc2_locl.h rc2cfb64.c |
91 | rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h | 85 | rc2ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc2.h |
diff --git a/src/lib/libcrypto/rc4/Makefile b/src/lib/libcrypto/rc4/Makefile index 20d078ec87..187ed5c668 100644 --- a/src/lib/libcrypto/rc4/Makefile +++ b/src/lib/libcrypto/rc4/Makefile | |||
@@ -8,23 +8,13 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | ||
17 | AR= ar r | 11 | AR= ar r |
18 | 12 | ||
19 | RC4_ENC=rc4_enc.o | 13 | RC4_ENC=rc4_enc.o rc4_skey.o |
20 | # or use | ||
21 | #RC4_ENC=asm/rx86-elf.o | ||
22 | #RC4_ENC=asm/rx86-out.o | ||
23 | #RC4_ENC=asm/rx86-sol.o | ||
24 | #RC4_ENC=asm/rx86bdsi.o | ||
25 | 14 | ||
26 | CFLAGS= $(INCLUDES) $(CFLAG) | 15 | CFLAGS= $(INCLUDES) $(CFLAG) |
27 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 16 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
17 | AFLAGS= $(ASFLAGS) | ||
28 | 18 | ||
29 | GENERAL=Makefile | 19 | GENERAL=Makefile |
30 | TEST=rc4test.c | 20 | TEST=rc4test.c |
@@ -32,7 +22,7 @@ APPS= | |||
32 | 22 | ||
33 | LIB=$(TOP)/libcrypto.a | 23 | LIB=$(TOP)/libcrypto.a |
34 | LIBSRC=rc4_skey.c rc4_enc.c | 24 | LIBSRC=rc4_skey.c rc4_enc.c |
35 | LIBOBJ=rc4_skey.o $(RC4_ENC) | 25 | LIBOBJ=$(RC4_ENC) |
36 | 26 | ||
37 | SRC= $(LIBSRC) | 27 | SRC= $(LIBSRC) |
38 | 28 | ||
@@ -51,24 +41,19 @@ lib: $(LIBOBJ) | |||
51 | $(RANLIB) $(LIB) || echo Never mind. | 41 | $(RANLIB) $(LIB) || echo Never mind. |
52 | @touch lib | 42 | @touch lib |
53 | 43 | ||
54 | # elf | 44 | # ELF |
55 | asm/rx86-elf.s: asm/rc4-586.pl ../perlasm/x86asm.pl | 45 | rx86-elf.s: asm/rc4-586.pl ../perlasm/x86asm.pl |
56 | (cd asm; $(PERL) rc4-586.pl elf $(CFLAGS) > rx86-elf.s) | 46 | (cd asm; $(PERL) rc4-586.pl elf $(CFLAGS) > ../$@) |
57 | 47 | # COFF | |
48 | rx86-cof.s: asm/rc4-586.pl ../perlasm/x86asm.pl | ||
49 | (cd asm; $(PERL) rc4-586.pl coff $(CFLAGS) > ../$@) | ||
58 | # a.out | 50 | # a.out |
59 | asm/rx86-out.o: asm/rx86unix.cpp | 51 | rx86-out.s: asm/rc4-586.pl ../perlasm/x86asm.pl |
60 | $(CPP) -DOUT asm/rx86unix.cpp | as -o asm/rx86-out.o | 52 | (cd asm; $(PERL) rc4-586.pl a.out $(CFLAGS) > ../$@) |
61 | |||
62 | # bsdi | ||
63 | asm/rx86bsdi.o: asm/rx86unix.cpp | ||
64 | $(CPP) -DBSDI asm/rx86unix.cpp | sed 's/ :/:/' | as -o asm/rx86bsdi.o | ||
65 | |||
66 | asm/rx86unix.cpp: asm/rc4-586.pl ../perlasm/x86asm.pl | ||
67 | (cd asm; $(PERL) rc4-586.pl cpp >rx86unix.cpp) | ||
68 | 53 | ||
69 | asm/rc4-x86_64.s: asm/rc4-x86_64.pl; $(PERL) asm/rc4-x86_64.pl $@ | 54 | rc4-x86_64.s: asm/rc4-x86_64.pl; $(PERL) asm/rc4-x86_64.pl $@ |
70 | 55 | ||
71 | asm/rc4-ia64.s: asm/rc4-ia64.S | 56 | rc4-ia64.s: asm/rc4-ia64.S |
72 | @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 \ |
73 | int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E asm/rc4-ia64.S > $@ ;; \ | 58 | int) set -x; $(CC) $(CFLAGS) -DSZ=4 -E asm/rc4-ia64.S > $@ ;; \ |
74 | char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E asm/rc4-ia64.S > $@ ;; \ | 59 | char) set -x; $(CC) $(CFLAGS) -DSZ=1 -E asm/rc4-ia64.S > $@ ;; \ |
@@ -84,6 +69,7 @@ links: | |||
84 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 69 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
85 | 70 | ||
86 | install: | 71 | install: |
72 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
87 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 73 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
88 | do \ | 74 | do \ |
89 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 75 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -99,6 +85,7 @@ lint: | |||
99 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 85 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
100 | 86 | ||
101 | depend: | 87 | depend: |
88 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
102 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 89 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
103 | 90 | ||
104 | dclean: | 91 | dclean: |
@@ -106,7 +93,7 @@ dclean: | |||
106 | mv -f Makefile.new $(MAKEFILE) | 93 | mv -f Makefile.new $(MAKEFILE) |
107 | 94 | ||
108 | clean: | 95 | clean: |
109 | rm -f asm/rx86unix.cpp asm/*-elf.* *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 96 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
110 | 97 | ||
111 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 98 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
112 | 99 | ||
@@ -114,15 +101,15 @@ rc4_enc.o: ../../e_os.h ../../include/openssl/bio.h | |||
114 | rc4_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 101 | rc4_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
115 | rc4_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 102 | rc4_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
116 | rc4_enc.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 103 | rc4_enc.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
117 | rc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h | 104 | rc4_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
118 | rc4_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 105 | rc4_enc.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h |
119 | rc4_enc.o: ../../include/openssl/symhacks.h ../cryptlib.h rc4_enc.c rc4_locl.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 | ||
120 | rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h | 108 | rc4_skey.o: ../../e_os.h ../../include/openssl/bio.h |
121 | rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 109 | rc4_skey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
122 | 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 |
123 | rc4_skey.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 111 | rc4_skey.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
124 | rc4_skey.o: ../../include/openssl/opensslconf.h | 112 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
125 | rc4_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc4.h | 113 | rc4_skey.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h |
126 | rc4_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 114 | rc4_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
127 | rc4_skey.o: ../../include/openssl/symhacks.h ../cryptlib.h rc4_locl.h | 115 | rc4_skey.o: ../cryptlib.h rc4_locl.h rc4_skey.c |
128 | rc4_skey.o: rc4_skey.c | ||
diff --git a/src/lib/libcrypto/rc4/asm/rc4-ia64.S b/src/lib/libcrypto/rc4/asm/rc4-ia64.S index a322d0c718..8210c47d04 100644 --- a/src/lib/libcrypto/rc4/asm/rc4-ia64.S +++ b/src/lib/libcrypto/rc4/asm/rc4-ia64.S | |||
@@ -75,14 +75,13 @@ yy=r31; | |||
75 | .skip 16 | 75 | .skip 16 |
76 | RC4: | 76 | RC4: |
77 | .prologue | 77 | .prologue |
78 | .fframe 0 | ||
79 | .save ar.pfs,r2 | 78 | .save ar.pfs,r2 |
80 | .save ar.lc,r3 | ||
81 | .save pr,prsave | ||
82 | { .mii; alloc r2=ar.pfs,4,12,0,16 | 79 | { .mii; alloc r2=ar.pfs,4,12,0,16 |
80 | .save pr,prsave | ||
83 | mov prsave=pr | 81 | mov prsave=pr |
84 | ADDP key=0,in0 };; | 82 | ADDP key=0,in0 };; |
85 | { .mib; cmp.eq p6,p0=0,in1 // len==0? | 83 | { .mib; cmp.eq p6,p0=0,in1 // len==0? |
84 | .save ar.lc,r3 | ||
86 | mov r3=ar.lc | 85 | mov r3=ar.lc |
87 | (p6) br.ret.spnt.many b0 };; // emergency exit | 86 | (p6) br.ret.spnt.many b0 };; // emergency exit |
88 | 87 | ||
diff --git a/src/lib/libcrypto/rc5/Makefile b/src/lib/libcrypto/rc5/Makefile index 16e6a60017..efb0f36b59 100644 --- a/src/lib/libcrypto/rc5/Makefile +++ b/src/lib/libcrypto/rc5/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
@@ -22,6 +17,7 @@ RC5_ENC= rc5_enc.o | |||
22 | 17 | ||
23 | CFLAGS= $(INCLUDES) $(CFLAG) | 18 | CFLAGS= $(INCLUDES) $(CFLAG) |
24 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 19 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
20 | AFLAGS= $(ASFLAGS) | ||
25 | 21 | ||
26 | GENERAL=Makefile | 22 | GENERAL=Makefile |
27 | TEST=rc5test.c | 23 | TEST=rc5test.c |
@@ -48,20 +44,15 @@ lib: $(LIBOBJ) | |||
48 | $(RANLIB) $(LIB) || echo Never mind. | 44 | $(RANLIB) $(LIB) || echo Never mind. |
49 | @touch lib | 45 | @touch lib |
50 | 46 | ||
51 | # elf | 47 | # ELF |
52 | asm/r586-elf.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 |
53 | (cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > r586-elf.s) | 49 | (cd asm; $(PERL) rc5-586.pl elf $(CFLAGS) > ../$@) |
54 | 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) > ../$@) | ||
55 | # a.out | 53 | # a.out |
56 | asm/r586-out.o: asm/r586unix.cpp | 54 | r586-out.s: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl |
57 | $(CPP) -DOUT asm/r586unix.cpp | as -o asm/r586-out.o | 55 | (cd asm; $(PERL) rc5-586.pl a.out $(CFLAGS) > ../$@) |
58 | |||
59 | # bsdi | ||
60 | asm/r586bsdi.o: asm/r586unix.cpp | ||
61 | $(CPP) -DBSDI asm/r586unix.cpp | sed 's/ :/:/' | as -o asm/r586bsdi.o | ||
62 | |||
63 | asm/r586unix.cpp: asm/rc5-586.pl ../perlasm/x86asm.pl ../perlasm/cbc.pl | ||
64 | (cd asm; $(PERL) rc5-586.pl cpp >r586unix.cpp) | ||
65 | 56 | ||
66 | files: | 57 | files: |
67 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 58 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -72,6 +63,7 @@ links: | |||
72 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 63 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
73 | 64 | ||
74 | install: | 65 | install: |
66 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
75 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 67 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
76 | do \ | 68 | do \ |
77 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 69 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -87,6 +79,7 @@ lint: | |||
87 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 79 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
88 | 80 | ||
89 | depend: | 81 | depend: |
82 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
90 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 83 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
91 | 84 | ||
92 | dclean: | 85 | dclean: |
@@ -94,17 +87,17 @@ dclean: | |||
94 | mv -f Makefile.new $(MAKEFILE) | 87 | mv -f Makefile.new $(MAKEFILE) |
95 | 88 | ||
96 | clean: | 89 | clean: |
97 | rm -f asm/r586unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 90 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
98 | 91 | ||
99 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 92 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
100 | 93 | ||
101 | rc5_ecb.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | 94 | rc5_ecb.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
102 | rc5_ecb.o: rc5_ecb.c rc5_locl.h | 95 | rc5_ecb.o: ../../include/openssl/rc5.h rc5_ecb.c rc5_locl.h |
103 | rc5_enc.o: ../../include/openssl/rc5.h rc5_enc.c rc5_locl.h | 96 | rc5_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h |
104 | rc5_skey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 97 | rc5_enc.o: rc5_enc.c rc5_locl.h |
105 | rc5_skey.o: ../../include/openssl/fips.h ../../include/openssl/opensslconf.h | 98 | rc5_skey.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h |
106 | rc5_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/rc5.h | 99 | rc5_skey.o: rc5_locl.h rc5_skey.c |
107 | rc5_skey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 100 | rc5cfb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h |
108 | rc5_skey.o: ../../include/openssl/symhacks.h rc5_locl.h rc5_skey.c | 101 | rc5cfb64.o: rc5_locl.h rc5cfb64.c |
109 | rc5cfb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5cfb64.c | 102 | rc5ofb64.o: ../../include/openssl/opensslconf.h ../../include/openssl/rc5.h |
110 | rc5ofb64.o: ../../include/openssl/rc5.h rc5_locl.h rc5ofb64.c | 103 | rc5ofb64.o: rc5_locl.h rc5ofb64.c |
diff --git a/src/lib/libcrypto/rc5/rc5_locl.h b/src/lib/libcrypto/rc5/rc5_locl.h index f4ebc23004..282dd38822 100644 --- a/src/lib/libcrypto/rc5/rc5_locl.h +++ b/src/lib/libcrypto/rc5/rc5_locl.h | |||
@@ -146,7 +146,7 @@ | |||
146 | *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \ | 146 | *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \ |
147 | *((c)++)=(unsigned char)(((l) )&0xff)) | 147 | *((c)++)=(unsigned char)(((l) )&0xff)) |
148 | 148 | ||
149 | #if defined(OPENSSL_SYS_WIN32) && defined(_MSC_VER) | 149 | #if (defined(OPENSSL_SYS_WIN32) && defined(_MSC_VER)) || defined(__ICC) |
150 | #define ROTATE_l32(a,n) _lrotl(a,n) | 150 | #define ROTATE_l32(a,n) _lrotl(a,n) |
151 | #define ROTATE_r32(a,n) _lrotr(a,n) | 151 | #define ROTATE_r32(a,n) _lrotr(a,n) |
152 | #elif defined(__GNUC__) && __GNUC__>=2 && !defined(__STRICT_ANSI__) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) && !defined(PEDANTIC) | 152 | #elif defined(__GNUC__) && __GNUC__>=2 && !defined(__STRICT_ANSI__) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) && !defined(PEDANTIC) |
diff --git a/src/lib/libcrypto/ripemd/Makefile b/src/lib/libcrypto/ripemd/Makefile index 20c8b4d8db..d55875c20c 100644 --- a/src/lib/libcrypto/ripemd/Makefile +++ b/src/lib/libcrypto/ripemd/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
@@ -20,6 +15,7 @@ RIP_ASM_OBJ= | |||
20 | 15 | ||
21 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
22 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
18 | AFLAGS= $(ASFLAGS) | ||
23 | 19 | ||
24 | GENERAL=Makefile | 20 | GENERAL=Makefile |
25 | TEST=rmdtest.c | 21 | TEST=rmdtest.c |
@@ -46,20 +42,15 @@ lib: $(LIBOBJ) | |||
46 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
47 | @touch lib | 43 | @touch lib |
48 | 44 | ||
49 | # elf | 45 | # ELF |
50 | asm/rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl | 46 | rm86-elf.s: asm/rmd-586.pl ../perlasm/x86asm.pl |
51 | (cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > rm86-elf.s) | 47 | (cd asm; $(PERL) rmd-586.pl elf $(CFLAGS) > ../$@) |
52 | 48 | # COFF | |
49 | rm86-cof.s: asm/rmd-586.pl ../perlasm/x86asm.pl | ||
50 | (cd asm; $(PERL) rmd-586.pl coff $(CFLAGS) > ../$@) | ||
53 | # a.out | 51 | # a.out |
54 | asm/rm86-out.o: asm/rm86unix.cpp | 52 | rm86-out.s: asm/rmd-586.pl ../perlasm/x86asm.pl |
55 | $(CPP) -DOUT asm/rm86unix.cpp | as -o asm/rm86-out.o | 53 | (cd asm; $(PERL) rmd-586.pl a.out $(CFLAGS) > ../$@) |
56 | |||
57 | # bsdi | ||
58 | asm/rm86bsdi.o: asm/rm86unix.cpp | ||
59 | $(CPP) -DBSDI asm/rm86unix.cpp | sed 's/ :/:/' | as -o asm/rm86bsdi.o | ||
60 | |||
61 | asm/rm86unix.cpp: asm/rmd-586.pl ../perlasm/x86asm.pl | ||
62 | (cd asm; $(PERL) rmd-586.pl cpp >rm86unix.cpp) | ||
63 | 54 | ||
64 | files: | 55 | files: |
65 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -70,6 +61,7 @@ links: | |||
70 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
71 | 62 | ||
72 | install: | 63 | install: |
64 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
73 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 65 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
74 | do \ | 66 | do \ |
75 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 67 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -85,6 +77,7 @@ lint: | |||
85 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 77 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
86 | 78 | ||
87 | depend: | 79 | depend: |
80 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
88 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
89 | 82 | ||
90 | dclean: | 83 | dclean: |
@@ -92,20 +85,15 @@ dclean: | |||
92 | mv -f Makefile.new $(MAKEFILE) | 85 | mv -f Makefile.new $(MAKEFILE) |
93 | 86 | ||
94 | clean: | 87 | clean: |
95 | rm -f asm/rm86unix.cpp asm/*-elf.* *.o asm/*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | 88 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
96 | 89 | ||
97 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
98 | 91 | ||
99 | rmd_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 92 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
100 | rmd_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
101 | rmd_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | ||
102 | rmd_dgst.o: ../../include/openssl/opensslconf.h | ||
103 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h | 93 | rmd_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/ripemd.h |
104 | rmd_dgst.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 94 | rmd_dgst.o: ../md32_common.h rmd_dgst.c rmd_locl.h rmdconst.h |
105 | rmd_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h rmd_dgst.c | ||
106 | rmd_dgst.o: rmd_locl.h rmdconst.h | ||
107 | rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 95 | rmd_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
108 | rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 96 | rmd_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
109 | rmd_one.o: ../../include/openssl/ripemd.h ../../include/openssl/safestack.h | 97 | rmd_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/ripemd.h |
110 | rmd_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 98 | rmd_one.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
111 | rmd_one.o: rmd_one.c | 99 | rmd_one.o: ../../include/openssl/symhacks.h rmd_one.c |
diff --git a/src/lib/libcrypto/rsa/Makefile b/src/lib/libcrypto/rsa/Makefile index 8851825250..13900812ac 100644 --- a/src/lib/libcrypto/rsa/Makefile +++ b/src/lib/libcrypto/rsa/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -24,10 +19,10 @@ APPS= | |||
24 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
25 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ | 20 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ |
26 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ | 21 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ |
27 | rsa_pss.c rsa_x931.c rsa_asn1.c | 22 | rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c |
28 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ | 23 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ |
29 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ | 24 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ |
30 | rsa_pss.o rsa_x931.o rsa_asn1.o | 25 | rsa_pss.o rsa_x931.o rsa_asn1.o rsa_depr.o |
31 | 26 | ||
32 | SRC= $(LIBSRC) | 27 | SRC= $(LIBSRC) |
33 | 28 | ||
@@ -55,6 +50,7 @@ links: | |||
55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 50 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
56 | 51 | ||
57 | install: | 52 | install: |
53 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
58 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
59 | do \ | 55 | do \ |
60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -70,6 +66,7 @@ lint: | |||
70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
71 | 67 | ||
72 | depend: | 68 | depend: |
69 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
73 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 70 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
74 | 71 | ||
75 | dclean: | 72 | dclean: |
@@ -99,6 +96,15 @@ rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
99 | rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 96 | rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
100 | rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 97 | rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
101 | rsa_chk.o: rsa_chk.c | 98 | rsa_chk.o: rsa_chk.c |
99 | rsa_depr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
100 | rsa_depr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
101 | rsa_depr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
102 | rsa_depr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
103 | rsa_depr.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
104 | rsa_depr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
105 | rsa_depr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
106 | rsa_depr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
107 | rsa_depr.o: ../cryptlib.h rsa_depr.c | ||
102 | rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h | 108 | rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h |
103 | rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 109 | rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
104 | rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 110 | rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -109,13 +115,12 @@ rsa_eay.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
109 | rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 115 | rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
110 | rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c | 116 | rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c |
111 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 117 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
112 | rsa_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 118 | rsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
113 | rsa_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 119 | rsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
114 | rsa_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 120 | rsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
115 | rsa_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 121 | rsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h |
116 | rsa_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 122 | rsa_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
117 | rsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 123 | rsa_err.o: ../../include/openssl/symhacks.h rsa_err.c |
118 | rsa_err.o: rsa_err.c | ||
119 | rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | 124 | rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h |
120 | rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 125 | rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
121 | rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 126 | rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -128,14 +133,13 @@ rsa_gen.o: ../cryptlib.h rsa_gen.c | |||
128 | rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 133 | rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
129 | rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 134 | rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
130 | rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 135 | rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
131 | rsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
132 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 136 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
133 | rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 137 | rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
134 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 138 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
135 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 139 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
136 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 140 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
137 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 141 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
138 | rsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h rsa_lib.c | 142 | rsa_lib.o: ../cryptlib.h rsa_lib.c |
139 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h | 143 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h |
140 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 144 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
141 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 145 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
@@ -154,26 +158,17 @@ rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
154 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
155 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
156 | rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c | 160 | rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c |
157 | rsa_oaep.o: ../../e_os.h ../../include/openssl/aes.h | 161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h |
158 | rsa_oaep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 162 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
159 | rsa_oaep.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 163 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
160 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 164 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
161 | rsa_oaep.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 165 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
162 | rsa_oaep.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
163 | rsa_oaep.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
164 | rsa_oaep.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
165 | rsa_oaep.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
166 | rsa_oaep.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
167 | rsa_oaep.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
168 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 166 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
169 | rsa_oaep.o: ../../include/openssl/opensslconf.h | 167 | rsa_oaep.o: ../../include/openssl/opensslconf.h |
170 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 168 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
171 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | 169 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
172 | rsa_oaep.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
173 | rsa_oaep.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
174 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 170 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
175 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 171 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
176 | rsa_oaep.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
177 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | 172 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c |
178 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | 173 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h |
179 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 174 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
@@ -184,68 +179,43 @@ rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
184 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 179 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
185 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 180 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
186 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | 181 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c |
187 | rsa_pss.o: ../../e_os.h ../../include/openssl/aes.h | 182 | rsa_pss.o: ../../e_os.h ../../include/openssl/asn1.h |
188 | rsa_pss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 183 | rsa_pss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
189 | rsa_pss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 184 | rsa_pss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
190 | rsa_pss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 185 | rsa_pss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
191 | rsa_pss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 186 | rsa_pss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
192 | rsa_pss.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
193 | rsa_pss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
194 | rsa_pss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
195 | rsa_pss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
196 | rsa_pss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
197 | rsa_pss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
198 | rsa_pss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 187 | rsa_pss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
199 | rsa_pss.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 188 | rsa_pss.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
200 | rsa_pss.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 189 | rsa_pss.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
201 | rsa_pss.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
202 | rsa_pss.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
203 | rsa_pss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 190 | rsa_pss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
204 | rsa_pss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 191 | rsa_pss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
205 | rsa_pss.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 192 | rsa_pss.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pss.c |
206 | rsa_pss.o: ../../include/openssl/ui_compat.h ../cryptlib.h rsa_pss.c | 193 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h |
207 | rsa_saos.o: ../../e_os.h ../../include/openssl/aes.h | 194 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
208 | rsa_saos.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 195 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
209 | rsa_saos.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 196 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
210 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 197 | rsa_saos.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
211 | rsa_saos.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
212 | rsa_saos.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
213 | rsa_saos.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
214 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 198 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
215 | rsa_saos.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 199 | rsa_saos.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
216 | rsa_saos.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 200 | rsa_saos.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
217 | rsa_saos.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
218 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
219 | rsa_saos.o: ../../include/openssl/opensslconf.h | ||
220 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 201 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
221 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 202 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
222 | rsa_saos.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
223 | rsa_saos.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
224 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 203 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
225 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 204 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
226 | rsa_saos.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
227 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 205 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
228 | rsa_saos.o: ../cryptlib.h rsa_saos.c | 206 | rsa_saos.o: ../cryptlib.h rsa_saos.c |
229 | rsa_sign.o: ../../e_os.h ../../include/openssl/aes.h | 207 | rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h |
230 | rsa_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 208 | rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
231 | rsa_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 209 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
232 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 210 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
233 | rsa_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 211 | rsa_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
234 | rsa_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
235 | rsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
236 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 212 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
237 | rsa_sign.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 213 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
238 | rsa_sign.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 214 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
239 | rsa_sign.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
240 | rsa_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
241 | rsa_sign.o: ../../include/openssl/opensslconf.h | ||
242 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 215 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
243 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 216 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
244 | rsa_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
245 | rsa_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
246 | rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 217 | rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
247 | rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 218 | rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
248 | rsa_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
249 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 219 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
250 | rsa_sign.o: ../cryptlib.h rsa_sign.c | 220 | rsa_sign.o: ../cryptlib.h rsa_sign.c |
251 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | 221 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h |
diff --git a/src/lib/libcrypto/sha/Makefile b/src/lib/libcrypto/sha/Makefile index 46103bbc83..ac64fb61d3 100644 --- a/src/lib/libcrypto/sha/Makefile +++ b/src/lib/libcrypto/sha/Makefile | |||
@@ -8,11 +8,6 @@ CC= cc | |||
8 | CPP= $(CC) -E | 8 | CPP= $(CC) -E |
9 | INCLUDES= | 9 | INCLUDES= |
10 | CFLAG=-g | 10 | CFLAG=-g |
11 | INSTALL_PREFIX= | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | INSTALLTOP=/usr/local/ssl | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
16 | MAKEFILE= Makefile | 11 | MAKEFILE= Makefile |
17 | AR= ar r | 12 | AR= ar r |
18 | 13 | ||
@@ -20,14 +15,15 @@ SHA1_ASM_OBJ= | |||
20 | 15 | ||
21 | CFLAGS= $(INCLUDES) $(CFLAG) | 16 | CFLAGS= $(INCLUDES) $(CFLAG) |
22 | ASFLAGS= $(INCLUDES) $(ASFLAG) | 17 | ASFLAGS= $(INCLUDES) $(ASFLAG) |
18 | AFLAGS= $(ASFLAGS) | ||
23 | 19 | ||
24 | GENERAL=Makefile | 20 | GENERAL=Makefile |
25 | TEST=shatest.c sha1test.c | 21 | TEST=shatest.c sha1test.c sha256t.c sha512t.c |
26 | APPS= | 22 | APPS= |
27 | 23 | ||
28 | LIB=$(TOP)/libcrypto.a | 24 | LIB=$(TOP)/libcrypto.a |
29 | LIBSRC=sha_dgst.c sha1dgst.c sha_one.c sha1_one.c | 25 | LIBSRC=sha_dgst.c sha1dgst.c sha_one.c sha1_one.c sha256.c sha512.c |
30 | LIBOBJ=sha_dgst.o sha1dgst.o sha_one.o sha1_one.o $(SHA1_ASM_OBJ) | 26 | LIBOBJ=sha_dgst.o sha1dgst.o sha_one.o sha1_one.o sha256.o sha512.o $(SHA1_ASM_OBJ) |
31 | 27 | ||
32 | SRC= $(LIBSRC) | 28 | SRC= $(LIBSRC) |
33 | 29 | ||
@@ -46,23 +42,33 @@ lib: $(LIBOBJ) | |||
46 | $(RANLIB) $(LIB) || echo Never mind. | 42 | $(RANLIB) $(LIB) || echo Never mind. |
47 | @touch lib | 43 | @touch lib |
48 | 44 | ||
49 | # elf | 45 | # ELF |
50 | asm/sx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl | 46 | sx86-elf.s: asm/sha1-586.pl ../perlasm/x86asm.pl |
51 | (cd asm; $(PERL) sha1-586.pl elf $(CFLAGS) $(PROCESSOR) > sx86-elf.s) | 47 | (cd asm; $(PERL) sha1-586.pl elf $(CFLAGS) $(PROCESSOR) > ../$@) |
52 | 48 | s512sse2-elf.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl | |
49 | (cd asm; $(PERL) sha512-sse2.pl elf $(CFLAGS) $(PROCESSOR) > ../$@) | ||
50 | # COFF | ||
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) > ../$@) | ||
53 | # a.out | 55 | # a.out |
54 | asm/sx86-out.o: asm/sx86unix.cpp | 56 | sx86-out.s: asm/sha1-586.pl ../perlasm/x86asm.pl |
55 | $(CPP) -DOUT asm/sx86unix.cpp | as -o asm/sx86-out.o | 57 | (cd asm; $(PERL) sha1-586.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@) |
56 | 58 | s512sse2-out.s: asm/sha512-sse2.pl ../perlasm/x86asm.pl | |
57 | # bsdi | 59 | (cd asm; $(PERL) sha512-sse2.pl a.out $(CFLAGS) $(PROCESSOR) > ../$@) |
58 | asm/sx86bsdi.o: asm/sx86unix.cpp | ||
59 | $(CPP) -DBSDI asm/sx86unix.cpp | sed 's/ :/:/' | as -o asm/sx86bsdi.o | ||
60 | 60 | ||
61 | asm/sx86unix.cpp: asm/sha1-586.pl ../perlasm/x86asm.pl | 61 | sha1-ia64.s: asm/sha1-ia64.pl |
62 | (cd asm; $(PERL) sha1-586.pl cpp $(PROCESSOR) >sx86unix.cpp) | ||
63 | |||
64 | asm/sha1-ia64.s: asm/sha1-ia64.pl | ||
65 | (cd asm; $(PERL) sha1-ia64.pl $(CFLAGS) ) > $@ | 62 | (cd asm; $(PERL) sha1-ia64.pl $(CFLAGS) ) > $@ |
63 | sha256-ia64.s: asm/sha512-ia64.pl | ||
64 | (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS)) | ||
65 | sha512-ia64.s: asm/sha512-ia64.pl | ||
66 | (cd asm; $(PERL) sha512-ia64.pl ../$@ $(CFLAGS)) | ||
67 | |||
68 | # Solaris make has to be explicitly told | ||
69 | sha1-x86_64.s: asm/sha1-x86_64.pl; $(PERL) asm/sha1-x86_64.pl $@ | ||
70 | sha256-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $@ | ||
71 | sha512-x86_64.s:asm/sha512-x86_64.pl; $(PERL) asm/sha512-x86_64.pl $@ | ||
66 | 72 | ||
67 | files: | 73 | files: |
68 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 74 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
@@ -73,6 +79,7 @@ links: | |||
73 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 79 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
74 | 80 | ||
75 | install: | 81 | install: |
82 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
76 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 83 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
77 | do \ | 84 | do \ |
78 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 85 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -88,6 +95,7 @@ lint: | |||
88 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 95 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
89 | 96 | ||
90 | depend: | 97 | depend: |
98 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
91 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 99 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
92 | 100 | ||
93 | dclean: | 101 | dclean: |
@@ -95,33 +103,37 @@ dclean: | |||
95 | mv -f Makefile.new $(MAKEFILE) | 103 | mv -f Makefile.new $(MAKEFILE) |
96 | 104 | ||
97 | clean: | 105 | clean: |
98 | rm -f asm/sx86unix.cpp asm/*-elf.* *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff asm/*.o | 106 | rm -f *.s *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff |
99 | 107 | ||
100 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 108 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
101 | 109 | ||
102 | sha1_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 110 | sha1_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
103 | sha1_one.o: ../../include/openssl/opensslconf.h | 111 | sha1_one.o: ../../include/openssl/opensslconf.h |
104 | sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 112 | sha1_one.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
105 | sha1_one.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 113 | sha1_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
106 | sha1_one.o: ../../include/openssl/symhacks.h sha1_one.c | 114 | sha1_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
107 | sha1dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 115 | sha1_one.o: sha1_one.c |
108 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 116 | sha1dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
109 | sha1dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 117 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h |
110 | sha1dgst.o: ../../include/openssl/opensslconf.h | 118 | sha1dgst.o: ../md32_common.h sha1dgst.c sha_locl.h |
111 | sha1dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 119 | sha256.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
112 | sha1dgst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 120 | sha256.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
113 | sha1dgst.o: ../../include/openssl/symhacks.h ../md32_common.h sha1dgst.c | 121 | sha256.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
114 | sha1dgst.o: sha_locl.h | 122 | sha256.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
115 | sha_dgst.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 123 | sha256.o: ../../include/openssl/symhacks.h ../md32_common.h sha256.c |
116 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 124 | sha512.o: ../../e_os.h ../../include/openssl/bio.h |
117 | sha_dgst.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 125 | sha512.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
118 | sha_dgst.o: ../../include/openssl/opensslconf.h | 126 | sha512.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
119 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 127 | sha512.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
120 | sha_dgst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 128 | sha512.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
121 | sha_dgst.o: ../../include/openssl/symhacks.h ../md32_common.h sha_dgst.c | 129 | sha512.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
122 | sha_dgst.o: sha_locl.h | 130 | sha512.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
131 | sha512.o: ../cryptlib.h sha512.c | ||
132 | sha_dgst.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | ||
133 | sha_dgst.o: ../../include/openssl/opensslv.h ../../include/openssl/sha.h | ||
134 | sha_dgst.o: ../md32_common.h sha_dgst.c sha_locl.h | ||
123 | sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 135 | sha_one.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
124 | sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 136 | sha_one.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
125 | sha_one.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 137 | sha_one.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
126 | sha_one.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 138 | sha_one.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
127 | sha_one.o: sha_one.c | 139 | sha_one.o: ../../include/openssl/symhacks.h sha_one.c |
diff --git a/src/lib/libcrypto/sha/asm/sha512-sse2.pl b/src/lib/libcrypto/sha/asm/sha512-sse2.pl new file mode 100644 index 0000000000..10902bf673 --- /dev/null +++ b/src/lib/libcrypto/sha/asm/sha512-sse2.pl | |||
@@ -0,0 +1,404 @@ | |||
1 | #!/usr/bin/env perl | ||
2 | # | ||
3 | # ==================================================================== | ||
4 | # Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL | ||
5 | # project. Rights for redistribution and usage in source and binary | ||
6 | # forms are granted according to the OpenSSL license. | ||
7 | # ==================================================================== | ||
8 | # | ||
9 | # SHA512_Transform_SSE2. | ||
10 | # | ||
11 | # As the name suggests, this is an IA-32 SSE2 implementation of | ||
12 | # SHA512_Transform. Motivating factor for the undertaken effort was that | ||
13 | # SHA512 was observed to *consistently* perform *significantly* poorer | ||
14 | # than SHA256 [2x and slower is common] on 32-bit platforms. On 64-bit | ||
15 | # platforms on the other hand SHA512 tend to outperform SHA256 [~50% | ||
16 | # seem to be common improvement factor]. All this is perfectly natural, | ||
17 | # as SHA512 is a 64-bit algorithm. But isn't IA-32 SSE2 essentially | ||
18 | # a 64-bit instruction set? Is it rich enough to implement SHA512? | ||
19 | # If answer was "no," then you wouldn't have been reading this... | ||
20 | # | ||
21 | # Throughput performance in MBps (larger is better): | ||
22 | # | ||
23 | # 2.4GHz P4 1.4GHz AMD32 1.4GHz AMD64(*) | ||
24 | # SHA256/gcc(*) 54 43 59 | ||
25 | # SHA512/gcc 17 23 92 | ||
26 | # SHA512/sse2 61(**) 57(**) | ||
27 | # SHA512/icc 26 28 | ||
28 | # SHA256/icc(*) 65 54 | ||
29 | # | ||
30 | # (*) AMD64 and SHA256 numbers are presented mostly for amusement or | ||
31 | # reference purposes. | ||
32 | # (**) I.e. it gives ~2-3x speed-up if compared with compiler generated | ||
33 | # code. One can argue that hand-coded *non*-SSE2 implementation | ||
34 | # would perform better than compiler generated one as well, and | ||
35 | # that comparison is therefore not exactly fair. Well, as SHA512 | ||
36 | # puts enormous pressure on IA-32 GP register bank, I reckon that | ||
37 | # hand-coded version wouldn't perform significantly better than | ||
38 | # one compiled with icc, ~20% perhaps... So that this code would | ||
39 | # still outperform it with distinguishing marginal. But feel free | ||
40 | # to prove me wrong:-) | ||
41 | # <appro@fy.chalmers.se> | ||
42 | push(@INC,"perlasm","../../perlasm"); | ||
43 | require "x86asm.pl"; | ||
44 | |||
45 | &asm_init($ARGV[0],"sha512-sse2.pl",$ARGV[$#ARGV] eq "386"); | ||
46 | |||
47 | $K512="esi"; # K512[80] table, found at the end... | ||
48 | #$W512="esp"; # $W512 is not just W512[16]: it comprises *two* copies | ||
49 | # of W512[16] and a copy of A-H variables... | ||
50 | $W512_SZ=8*(16+16+8); # see above... | ||
51 | #$Kidx="ebx"; # index in K512 table, advances from 0 to 80... | ||
52 | $Widx="edx"; # index in W512, wraps around at 16... | ||
53 | $data="edi"; # 16 qwords of input data... | ||
54 | $A="mm0"; # B-D and | ||
55 | $E="mm1"; # F-H are allocated dynamically... | ||
56 | $Aoff=256+0; # A-H offsets relative to $W512... | ||
57 | $Boff=256+8; | ||
58 | $Coff=256+16; | ||
59 | $Doff=256+24; | ||
60 | $Eoff=256+32; | ||
61 | $Foff=256+40; | ||
62 | $Goff=256+48; | ||
63 | $Hoff=256+56; | ||
64 | |||
65 | sub SHA2_ROUND() | ||
66 | { local ($kidx,$widx)=@_; | ||
67 | |||
68 | # One can argue that one could reorder instructions for better | ||
69 | # performance. Well, I tried and it doesn't seem to make any | ||
70 | # noticeable difference. Modern out-of-order execution cores | ||
71 | # reorder instructions to their liking in either case and they | ||
72 | # apparently do decent job. So we can keep the code more | ||
73 | # readable/regular/comprehensible:-) | ||
74 | |||
75 | # I adhere to 64-bit %mmX registers in order to avoid/not care | ||
76 | # about #GP exceptions on misaligned 128-bit access, most | ||
77 | # notably in paddq with memory operand. Not to mention that | ||
78 | # SSE2 intructions operating on %mmX can be scheduled every | ||
79 | # cycle [and not every second one if operating on %xmmN]. | ||
80 | |||
81 | &movq ("mm4",&QWP($Foff,$W512)); # load f | ||
82 | &movq ("mm5",&QWP($Goff,$W512)); # load g | ||
83 | &movq ("mm6",&QWP($Hoff,$W512)); # load h | ||
84 | |||
85 | &movq ("mm2",$E); # %mm2 is sliding right | ||
86 | &movq ("mm3",$E); # %mm3 is sliding left | ||
87 | &psrlq ("mm2",14); | ||
88 | &psllq ("mm3",23); | ||
89 | &movq ("mm7","mm2"); # %mm7 is T1 | ||
90 | &pxor ("mm7","mm3"); | ||
91 | &psrlq ("mm2",4); | ||
92 | &psllq ("mm3",23); | ||
93 | &pxor ("mm7","mm2"); | ||
94 | &pxor ("mm7","mm3"); | ||
95 | &psrlq ("mm2",23); | ||
96 | &psllq ("mm3",4); | ||
97 | &pxor ("mm7","mm2"); | ||
98 | &pxor ("mm7","mm3"); # T1=Sigma1_512(e) | ||
99 | |||
100 | &movq (&QWP($Foff,$W512),$E); # f = e | ||
101 | &movq (&QWP($Goff,$W512),"mm4"); # g = f | ||
102 | &movq (&QWP($Hoff,$W512),"mm5"); # h = g | ||
103 | |||
104 | &pxor ("mm4","mm5"); # f^=g | ||
105 | &pand ("mm4",$E); # f&=e | ||
106 | &pxor ("mm4","mm5"); # f^=g | ||
107 | &paddq ("mm7","mm4"); # T1+=Ch(e,f,g) | ||
108 | |||
109 | &movq ("mm2",&QWP($Boff,$W512)); # load b | ||
110 | &movq ("mm3",&QWP($Coff,$W512)); # load c | ||
111 | &movq ($E,&QWP($Doff,$W512)); # e = d | ||
112 | |||
113 | &paddq ("mm7","mm6"); # T1+=h | ||
114 | &paddq ("mm7",&QWP(0,$K512,$kidx,8)); # T1+=K512[i] | ||
115 | &paddq ("mm7",&QWP(0,$W512,$widx,8)); # T1+=W512[i] | ||
116 | &paddq ($E,"mm7"); # e += T1 | ||
117 | |||
118 | &movq ("mm4",$A); # %mm4 is sliding right | ||
119 | &movq ("mm5",$A); # %mm5 is sliding left | ||
120 | &psrlq ("mm4",28); | ||
121 | &psllq ("mm5",25); | ||
122 | &movq ("mm6","mm4"); # %mm6 is T2 | ||
123 | &pxor ("mm6","mm5"); | ||
124 | &psrlq ("mm4",6); | ||
125 | &psllq ("mm5",5); | ||
126 | &pxor ("mm6","mm4"); | ||
127 | &pxor ("mm6","mm5"); | ||
128 | &psrlq ("mm4",5); | ||
129 | &psllq ("mm5",6); | ||
130 | &pxor ("mm6","mm4"); | ||
131 | &pxor ("mm6","mm5"); # T2=Sigma0_512(a) | ||
132 | |||
133 | &movq (&QWP($Boff,$W512),$A); # b = a | ||
134 | &movq (&QWP($Coff,$W512),"mm2"); # c = b | ||
135 | &movq (&QWP($Doff,$W512),"mm3"); # d = c | ||
136 | |||
137 | &movq ("mm4",$A); # %mm4=a | ||
138 | &por ($A,"mm3"); # a=a|c | ||
139 | &pand ("mm4","mm3"); # %mm4=a&c | ||
140 | &pand ($A,"mm2"); # a=(a|c)&b | ||
141 | &por ("mm4",$A); # %mm4=(a&c)|((a|c)&b) | ||
142 | &paddq ("mm6","mm4"); # T2+=Maj(a,b,c) | ||
143 | |||
144 | &movq ($A,"mm7"); # a=T1 | ||
145 | &paddq ($A,"mm6"); # a+=T2 | ||
146 | } | ||
147 | |||
148 | $func="sha512_block_sse2"; | ||
149 | |||
150 | &function_begin_B($func); | ||
151 | if (0) {# Caller is expected to check if it's appropriate to | ||
152 | # call this routine. Below 3 lines are retained for | ||
153 | # debugging purposes... | ||
154 | &picmeup("eax","OPENSSL_ia32cap"); | ||
155 | &bt (&DWP(0,"eax"),26); | ||
156 | &jnc ("SHA512_Transform"); | ||
157 | } | ||
158 | |||
159 | &push ("ebp"); | ||
160 | &mov ("ebp","esp"); | ||
161 | &push ("ebx"); | ||
162 | &push ("esi"); | ||
163 | &push ("edi"); | ||
164 | |||
165 | &mov ($Widx,&DWP(8,"ebp")); # A-H state, 1st arg | ||
166 | &mov ($data,&DWP(12,"ebp")); # input data, 2nd arg | ||
167 | &call (&label("pic_point")); # make it PIC! | ||
168 | &set_label("pic_point"); | ||
169 | &blindpop($K512); | ||
170 | &lea ($K512,&DWP(&label("K512")."-".&label("pic_point"),$K512)); | ||
171 | |||
172 | $W512 = "esp"; # start using %esp as W512 | ||
173 | &sub ($W512,$W512_SZ); | ||
174 | &and ($W512,-16); # ensure 128-bit alignment | ||
175 | |||
176 | # make private copy of A-H | ||
177 | # v assume the worst and stick to unaligned load | ||
178 | &movdqu ("xmm0",&QWP(0,$Widx)); | ||
179 | &movdqu ("xmm1",&QWP(16,$Widx)); | ||
180 | &movdqu ("xmm2",&QWP(32,$Widx)); | ||
181 | &movdqu ("xmm3",&QWP(48,$Widx)); | ||
182 | |||
183 | &align(8); | ||
184 | &set_label("_chunk_loop"); | ||
185 | |||
186 | &movdqa (&QWP($Aoff,$W512),"xmm0"); # a,b | ||
187 | &movdqa (&QWP($Coff,$W512),"xmm1"); # c,d | ||
188 | &movdqa (&QWP($Eoff,$W512),"xmm2"); # e,f | ||
189 | &movdqa (&QWP($Goff,$W512),"xmm3"); # g,h | ||
190 | |||
191 | &xor ($Widx,$Widx); | ||
192 | |||
193 | &movdq2q($A,"xmm0"); # load a | ||
194 | &movdq2q($E,"xmm2"); # load e | ||
195 | |||
196 | # Why aren't loops unrolled? It makes sense to unroll if | ||
197 | # execution time for loop body is comparable with branch | ||
198 | # penalties and/or if whole data-set resides in register bank. | ||
199 | # Neither is case here... Well, it would be possible to | ||
200 | # eliminate few store operations, but it would hardly affect | ||
201 | # so to say stop-watch performance, as there is a lot of | ||
202 | # available memory slots to fill. It will only relieve some | ||
203 | # pressure off memory bus... | ||
204 | |||
205 | # flip input stream byte order... | ||
206 | &mov ("eax",&DWP(0,$data,$Widx,8)); | ||
207 | &mov ("ebx",&DWP(4,$data,$Widx,8)); | ||
208 | &bswap ("eax"); | ||
209 | &bswap ("ebx"); | ||
210 | &mov (&DWP(0,$W512,$Widx,8),"ebx"); # W512[i] | ||
211 | &mov (&DWP(4,$W512,$Widx,8),"eax"); | ||
212 | &mov (&DWP(128+0,$W512,$Widx,8),"ebx"); # copy of W512[i] | ||
213 | &mov (&DWP(128+4,$W512,$Widx,8),"eax"); | ||
214 | |||
215 | &align(8); | ||
216 | &set_label("_1st_loop"); # 0-15 | ||
217 | # flip input stream byte order... | ||
218 | &mov ("eax",&DWP(0+8,$data,$Widx,8)); | ||
219 | &mov ("ebx",&DWP(4+8,$data,$Widx,8)); | ||
220 | &bswap ("eax"); | ||
221 | &bswap ("ebx"); | ||
222 | &mov (&DWP(0+8,$W512,$Widx,8),"ebx"); # W512[i] | ||
223 | &mov (&DWP(4+8,$W512,$Widx,8),"eax"); | ||
224 | &mov (&DWP(128+0+8,$W512,$Widx,8),"ebx"); # copy of W512[i] | ||
225 | &mov (&DWP(128+4+8,$W512,$Widx,8),"eax"); | ||
226 | &set_label("_1st_looplet"); | ||
227 | &SHA2_ROUND($Widx,$Widx); &inc($Widx); | ||
228 | |||
229 | &cmp ($Widx,15) | ||
230 | &jl (&label("_1st_loop")); | ||
231 | &je (&label("_1st_looplet")); # playing similar trick on 2nd loop | ||
232 | # does not improve performance... | ||
233 | |||
234 | $Kidx = "ebx"; # start using %ebx as Kidx | ||
235 | &mov ($Kidx,$Widx); | ||
236 | |||
237 | &align(8); | ||
238 | &set_label("_2nd_loop"); # 16-79 | ||
239 | &and($Widx,0xf); | ||
240 | |||
241 | # 128-bit fragment! I update W512[i] and W512[i+1] in | ||
242 | # parallel:-) Note that I refer to W512[(i&0xf)+N] and not to | ||
243 | # W512[(i+N)&0xf]! This is exactly what I maintain the second | ||
244 | # copy of W512[16] for... | ||
245 | &movdqu ("xmm0",&QWP(8*1,$W512,$Widx,8)); # s0=W512[i+1] | ||
246 | &movdqa ("xmm2","xmm0"); # %xmm2 is sliding right | ||
247 | &movdqa ("xmm3","xmm0"); # %xmm3 is sliding left | ||
248 | &psrlq ("xmm2",1); | ||
249 | &psllq ("xmm3",56); | ||
250 | &movdqa ("xmm0","xmm2"); | ||
251 | &pxor ("xmm0","xmm3"); | ||
252 | &psrlq ("xmm2",6); | ||
253 | &psllq ("xmm3",7); | ||
254 | &pxor ("xmm0","xmm2"); | ||
255 | &pxor ("xmm0","xmm3"); | ||
256 | &psrlq ("xmm2",1); | ||
257 | &pxor ("xmm0","xmm2"); # s0 = sigma0_512(s0); | ||
258 | |||
259 | &movdqa ("xmm1",&QWP(8*14,$W512,$Widx,8)); # s1=W512[i+14] | ||
260 | &movdqa ("xmm4","xmm1"); # %xmm4 is sliding right | ||
261 | &movdqa ("xmm5","xmm1"); # %xmm5 is sliding left | ||
262 | &psrlq ("xmm4",6); | ||
263 | &psllq ("xmm5",3); | ||
264 | &movdqa ("xmm1","xmm4"); | ||
265 | &pxor ("xmm1","xmm5"); | ||
266 | &psrlq ("xmm4",13); | ||
267 | &psllq ("xmm5",42); | ||
268 | &pxor ("xmm1","xmm4"); | ||
269 | &pxor ("xmm1","xmm5"); | ||
270 | &psrlq ("xmm4",42); | ||
271 | &pxor ("xmm1","xmm4"); # s1 = sigma1_512(s1); | ||
272 | |||
273 | # + have to explictly load W512[i+9] as it's not 128-bit | ||
274 | # v aligned and paddq would throw an exception... | ||
275 | &movdqu ("xmm6",&QWP(8*9,$W512,$Widx,8)); | ||
276 | &paddq ("xmm0","xmm1"); # s0 += s1 | ||
277 | &paddq ("xmm0","xmm6"); # s0 += W512[i+9] | ||
278 | &paddq ("xmm0",&QWP(0,$W512,$Widx,8)); # s0 += W512[i] | ||
279 | |||
280 | &movdqa (&QWP(0,$W512,$Widx,8),"xmm0"); # W512[i] = s0 | ||
281 | &movdqa (&QWP(16*8,$W512,$Widx,8),"xmm0"); # copy of W512[i] | ||
282 | |||
283 | # as the above fragment was 128-bit, we "owe" 2 rounds... | ||
284 | &SHA2_ROUND($Kidx,$Widx); &inc($Kidx); &inc($Widx); | ||
285 | &SHA2_ROUND($Kidx,$Widx); &inc($Kidx); &inc($Widx); | ||
286 | |||
287 | &cmp ($Kidx,80); | ||
288 | &jl (&label("_2nd_loop")); | ||
289 | |||
290 | # update A-H state | ||
291 | &mov ($Widx,&DWP(8,"ebp")); # A-H state, 1st arg | ||
292 | &movq (&QWP($Aoff,$W512),$A); # write out a | ||
293 | &movq (&QWP($Eoff,$W512),$E); # write out e | ||
294 | &movdqu ("xmm0",&QWP(0,$Widx)); | ||
295 | &movdqu ("xmm1",&QWP(16,$Widx)); | ||
296 | &movdqu ("xmm2",&QWP(32,$Widx)); | ||
297 | &movdqu ("xmm3",&QWP(48,$Widx)); | ||
298 | &paddq ("xmm0",&QWP($Aoff,$W512)); # 128-bit additions... | ||
299 | &paddq ("xmm1",&QWP($Coff,$W512)); | ||
300 | &paddq ("xmm2",&QWP($Eoff,$W512)); | ||
301 | &paddq ("xmm3",&QWP($Goff,$W512)); | ||
302 | &movdqu (&QWP(0,$Widx),"xmm0"); | ||
303 | &movdqu (&QWP(16,$Widx),"xmm1"); | ||
304 | &movdqu (&QWP(32,$Widx),"xmm2"); | ||
305 | &movdqu (&QWP(48,$Widx),"xmm3"); | ||
306 | |||
307 | &add ($data,16*8); # advance input data pointer | ||
308 | &dec (&DWP(16,"ebp")); # decrement 3rd arg | ||
309 | &jnz (&label("_chunk_loop")); | ||
310 | |||
311 | # epilogue | ||
312 | &emms (); # required for at least ELF and Win32 ABIs | ||
313 | &mov ("edi",&DWP(-12,"ebp")); | ||
314 | &mov ("esi",&DWP(-8,"ebp")); | ||
315 | &mov ("ebx",&DWP(-4,"ebp")); | ||
316 | &leave (); | ||
317 | &ret (); | ||
318 | |||
319 | &align(64); | ||
320 | &set_label("K512"); # Yes! I keep it in the code segment! | ||
321 | &data_word(0xd728ae22,0x428a2f98); # u64 | ||
322 | &data_word(0x23ef65cd,0x71374491); # u64 | ||
323 | &data_word(0xec4d3b2f,0xb5c0fbcf); # u64 | ||
324 | &data_word(0x8189dbbc,0xe9b5dba5); # u64 | ||
325 | &data_word(0xf348b538,0x3956c25b); # u64 | ||
326 | &data_word(0xb605d019,0x59f111f1); # u64 | ||
327 | &data_word(0xaf194f9b,0x923f82a4); # u64 | ||
328 | &data_word(0xda6d8118,0xab1c5ed5); # u64 | ||
329 | &data_word(0xa3030242,0xd807aa98); # u64 | ||
330 | &data_word(0x45706fbe,0x12835b01); # u64 | ||
331 | &data_word(0x4ee4b28c,0x243185be); # u64 | ||
332 | &data_word(0xd5ffb4e2,0x550c7dc3); # u64 | ||
333 | &data_word(0xf27b896f,0x72be5d74); # u64 | ||
334 | &data_word(0x3b1696b1,0x80deb1fe); # u64 | ||
335 | &data_word(0x25c71235,0x9bdc06a7); # u64 | ||
336 | &data_word(0xcf692694,0xc19bf174); # u64 | ||
337 | &data_word(0x9ef14ad2,0xe49b69c1); # u64 | ||
338 | &data_word(0x384f25e3,0xefbe4786); # u64 | ||
339 | &data_word(0x8b8cd5b5,0x0fc19dc6); # u64 | ||
340 | &data_word(0x77ac9c65,0x240ca1cc); # u64 | ||
341 | &data_word(0x592b0275,0x2de92c6f); # u64 | ||
342 | &data_word(0x6ea6e483,0x4a7484aa); # u64 | ||
343 | &data_word(0xbd41fbd4,0x5cb0a9dc); # u64 | ||
344 | &data_word(0x831153b5,0x76f988da); # u64 | ||
345 | &data_word(0xee66dfab,0x983e5152); # u64 | ||
346 | &data_word(0x2db43210,0xa831c66d); # u64 | ||
347 | &data_word(0x98fb213f,0xb00327c8); # u64 | ||
348 | &data_word(0xbeef0ee4,0xbf597fc7); # u64 | ||
349 | &data_word(0x3da88fc2,0xc6e00bf3); # u64 | ||
350 | &data_word(0x930aa725,0xd5a79147); # u64 | ||
351 | &data_word(0xe003826f,0x06ca6351); # u64 | ||
352 | &data_word(0x0a0e6e70,0x14292967); # u64 | ||
353 | &data_word(0x46d22ffc,0x27b70a85); # u64 | ||
354 | &data_word(0x5c26c926,0x2e1b2138); # u64 | ||
355 | &data_word(0x5ac42aed,0x4d2c6dfc); # u64 | ||
356 | &data_word(0x9d95b3df,0x53380d13); # u64 | ||
357 | &data_word(0x8baf63de,0x650a7354); # u64 | ||
358 | &data_word(0x3c77b2a8,0x766a0abb); # u64 | ||
359 | &data_word(0x47edaee6,0x81c2c92e); # u64 | ||
360 | &data_word(0x1482353b,0x92722c85); # u64 | ||
361 | &data_word(0x4cf10364,0xa2bfe8a1); # u64 | ||
362 | &data_word(0xbc423001,0xa81a664b); # u64 | ||
363 | &data_word(0xd0f89791,0xc24b8b70); # u64 | ||
364 | &data_word(0x0654be30,0xc76c51a3); # u64 | ||
365 | &data_word(0xd6ef5218,0xd192e819); # u64 | ||
366 | &data_word(0x5565a910,0xd6990624); # u64 | ||
367 | &data_word(0x5771202a,0xf40e3585); # u64 | ||
368 | &data_word(0x32bbd1b8,0x106aa070); # u64 | ||
369 | &data_word(0xb8d2d0c8,0x19a4c116); # u64 | ||
370 | &data_word(0x5141ab53,0x1e376c08); # u64 | ||
371 | &data_word(0xdf8eeb99,0x2748774c); # u64 | ||
372 | &data_word(0xe19b48a8,0x34b0bcb5); # u64 | ||
373 | &data_word(0xc5c95a63,0x391c0cb3); # u64 | ||
374 | &data_word(0xe3418acb,0x4ed8aa4a); # u64 | ||
375 | &data_word(0x7763e373,0x5b9cca4f); # u64 | ||
376 | &data_word(0xd6b2b8a3,0x682e6ff3); # u64 | ||
377 | &data_word(0x5defb2fc,0x748f82ee); # u64 | ||
378 | &data_word(0x43172f60,0x78a5636f); # u64 | ||
379 | &data_word(0xa1f0ab72,0x84c87814); # u64 | ||
380 | &data_word(0x1a6439ec,0x8cc70208); # u64 | ||
381 | &data_word(0x23631e28,0x90befffa); # u64 | ||
382 | &data_word(0xde82bde9,0xa4506ceb); # u64 | ||
383 | &data_word(0xb2c67915,0xbef9a3f7); # u64 | ||
384 | &data_word(0xe372532b,0xc67178f2); # u64 | ||
385 | &data_word(0xea26619c,0xca273ece); # u64 | ||
386 | &data_word(0x21c0c207,0xd186b8c7); # u64 | ||
387 | &data_word(0xcde0eb1e,0xeada7dd6); # u64 | ||
388 | &data_word(0xee6ed178,0xf57d4f7f); # u64 | ||
389 | &data_word(0x72176fba,0x06f067aa); # u64 | ||
390 | &data_word(0xa2c898a6,0x0a637dc5); # u64 | ||
391 | &data_word(0xbef90dae,0x113f9804); # u64 | ||
392 | &data_word(0x131c471b,0x1b710b35); # u64 | ||
393 | &data_word(0x23047d84,0x28db77f5); # u64 | ||
394 | &data_word(0x40c72493,0x32caab7b); # u64 | ||
395 | &data_word(0x15c9bebc,0x3c9ebe0a); # u64 | ||
396 | &data_word(0x9c100d4c,0x431d67c4); # u64 | ||
397 | &data_word(0xcb3e42b6,0x4cc5d4be); # u64 | ||
398 | &data_word(0xfc657e2a,0x597f299c); # u64 | ||
399 | &data_word(0x3ad6faec,0x5fcb6fab); # u64 | ||
400 | &data_word(0x4a475817,0x6c44198c); # u64 | ||
401 | |||
402 | &function_end_B($func); | ||
403 | |||
404 | &asm_finish(); | ||
diff --git a/src/lib/libcrypto/stack/Makefile b/src/lib/libcrypto/stack/Makefile index 711b16832a..5327692ac8 100644 --- a/src/lib/libcrypto/stack/Makefile +++ b/src/lib/libcrypto/stack/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -77,10 +74,11 @@ clean: | |||
77 | 74 | ||
78 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 75 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
79 | 76 | ||
80 | stack.o: ../../e_os.h ../../include/openssl/bio.h | 77 | stack.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
81 | stack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 78 | stack.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
82 | stack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 79 | stack.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
83 | stack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 80 | stack.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
84 | stack.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 81 | stack.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
85 | stack.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 82 | stack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
86 | stack.o: ../cryptlib.h stack.c | 83 | stack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
84 | stack.o: ../../include/openssl/symhacks.h ../cryptlib.h stack.c | ||
diff --git a/src/lib/libcrypto/txt_db/Makefile b/src/lib/libcrypto/txt_db/Makefile index 3cb550a795..e6f30331d8 100644 --- a/src/lib/libcrypto/txt_db/Makefile +++ b/src/lib/libcrypto/txt_db/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= | 8 | INCLUDES= |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -51,6 +46,7 @@ links: | |||
51 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 46 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
52 | 47 | ||
53 | install: | 48 | install: |
49 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 50 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
55 | do \ | 51 | do \ |
56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 52 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -66,6 +62,7 @@ lint: | |||
66 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 62 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
67 | 63 | ||
68 | depend: | 64 | depend: |
65 | @[ -n "$(MAKEDEPEND)" ] # should be set by top Makefile... | ||
69 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 66 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
70 | 67 | ||
71 | dclean: | 68 | dclean: |
@@ -81,6 +78,7 @@ txt_db.o: ../../e_os.h ../../include/openssl/bio.h | |||
81 | txt_db.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 78 | txt_db.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
82 | txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 79 | txt_db.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
83 | txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 80 | txt_db.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
84 | txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 81 | txt_db.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
85 | txt_db.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 82 | txt_db.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
86 | txt_db.o: ../../include/openssl/txt_db.h ../cryptlib.h txt_db.c | 83 | txt_db.o: ../../include/openssl/symhacks.h ../../include/openssl/txt_db.h |
84 | txt_db.o: ../cryptlib.h txt_db.c | ||
diff --git a/src/lib/libcrypto/ui/Makefile b/src/lib/libcrypto/ui/Makefile index fcb2a66a39..a685659fb4 100644 --- a/src/lib/libcrypto/ui/Makefile +++ b/src/lib/libcrypto/ui/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -55,6 +50,7 @@ links: | |||
55 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 50 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
56 | 51 | ||
57 | install: | 52 | install: |
53 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
58 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 54 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
59 | do \ | 55 | do \ |
60 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 56 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -70,6 +66,7 @@ lint: | |||
70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 66 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
71 | 67 | ||
72 | depend: | 68 | depend: |
69 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
73 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 70 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
74 | 71 | ||
75 | dclean: | 72 | dclean: |
@@ -81,35 +78,34 @@ clean: | |||
81 | 78 | ||
82 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 79 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
83 | 80 | ||
84 | ui_compat.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 81 | ui_compat.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
85 | ui_compat.o: ../../include/openssl/opensslconf.h | 82 | ui_compat.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
86 | ui_compat.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 83 | ui_compat.o: ../../include/openssl/stack.h ../../include/openssl/ui.h |
87 | ui_compat.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 84 | ui_compat.o: ../../include/openssl/ui_compat.h ui_compat.c |
88 | ui_compat.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
89 | ui_compat.o: ui_compat.c | ||
90 | ui_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h | 85 | ui_err.o: ../../include/openssl/bio.h ../../include/openssl/crypto.h |
91 | ui_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 86 | ui_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
92 | ui_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 87 | ui_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
93 | ui_err.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 88 | ui_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
94 | ui_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 89 | ui_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
95 | ui_err.o: ../../include/openssl/ui.h ui_err.c | 90 | ui_err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h ui_err.c |
96 | ui_lib.o: ../../e_os.h ../../include/openssl/bio.h | 91 | ui_lib.o: ../../e_os.h ../../include/openssl/bio.h |
97 | ui_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 92 | ui_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
98 | ui_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 93 | ui_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
99 | ui_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 94 | ui_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
100 | ui_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 95 | ui_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
101 | ui_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 96 | ui_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
102 | ui_lib.o: ../../include/openssl/ui.h ../cryptlib.h ui_lib.c ui_locl.h | 97 | ui_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
98 | ui_lib.o: ../cryptlib.h ui_lib.c ui_locl.h | ||
103 | ui_openssl.o: ../../e_os.h ../../include/openssl/bio.h | 99 | ui_openssl.o: ../../e_os.h ../../include/openssl/bio.h |
104 | ui_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 100 | ui_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
105 | ui_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 101 | ui_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
106 | ui_openssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 102 | ui_openssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
107 | ui_openssl.o: ../../include/openssl/opensslv.h | 103 | ui_openssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
108 | ui_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 104 | ui_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
109 | ui_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 105 | ui_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
110 | ui_openssl.o: ../cryptlib.h ui_locl.h ui_openssl.c | 106 | ui_openssl.o: ../cryptlib.h ui_locl.h ui_openssl.c |
111 | ui_util.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 107 | ui_util.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
112 | ui_util.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 108 | ui_util.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
113 | ui_util.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 109 | ui_util.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
114 | ui_util.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 110 | ui_util.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
115 | ui_util.o: ui_util.c | 111 | ui_util.o: ../../include/openssl/ui.h ui_locl.h ui_util.c |
diff --git a/src/lib/libcrypto/util/opensslwrap.sh b/src/lib/libcrypto/util/opensslwrap.sh index 91d29e2b87..b27cbb897f 100755 --- a/src/lib/libcrypto/util/opensslwrap.sh +++ b/src/lib/libcrypto/util/opensslwrap.sh | |||
@@ -3,6 +3,10 @@ | |||
3 | HERE="`echo $0 | sed -e 's|[^/]*$||'`" | 3 | HERE="`echo $0 | sed -e 's|[^/]*$||'`" |
4 | OPENSSL="${HERE}../apps/openssl" | 4 | OPENSSL="${HERE}../apps/openssl" |
5 | 5 | ||
6 | if [ -d "${HERE}../engines" -a "x$OPENSSL_ENGINES" = "x" ]; then | ||
7 | OPENSSL_ENGINES="${HERE}../engines"; export OPENSSL_ENGINES | ||
8 | fi | ||
9 | |||
6 | if [ -x "${OPENSSL}.exe" ]; then | 10 | if [ -x "${OPENSSL}.exe" ]; then |
7 | # The original reason for this script existence is to work around | 11 | # The original reason for this script existence is to work around |
8 | # certain caveats in run-time linker behaviour. On Windows platforms | 12 | # certain caveats in run-time linker behaviour. On Windows platforms |
diff --git a/src/lib/libcrypto/util/shlib_wrap.sh b/src/lib/libcrypto/util/shlib_wrap.sh index dc5f5b1ce4..a2f62d696f 100755 --- a/src/lib/libcrypto/util/shlib_wrap.sh +++ b/src/lib/libcrypto/util/shlib_wrap.sh | |||
@@ -22,19 +22,39 @@ SunOS|IRIX*) | |||
22 | # variables depending on target ABI... | 22 | # variables depending on target ABI... |
23 | rld_var=LD_LIBRARY_PATH | 23 | rld_var=LD_LIBRARY_PATH |
24 | case "`(/usr/bin/file "$LIBCRYPTOSO") 2>/dev/null`" in | 24 | case "`(/usr/bin/file "$LIBCRYPTOSO") 2>/dev/null`" in |
25 | *ELF\ 64*SPARC*) | 25 | *ELF\ 64*SPARC*|*ELF\ 64*AMD64*) |
26 | [ -n "$LD_LIBRARY_PATH_64" ] && rld_var=LD_LIBRARY_PATH_64 | 26 | [ -n "$LD_LIBRARY_PATH_64" ] && rld_var=LD_LIBRARY_PATH_64 |
27 | LD_PRELOAD_64="$LIBCRYPTOSO $LIBSSLSO"; export LD_PRELOAD_64 | ||
28 | preload_var=LD_PRELOAD_64 | ||
29 | ;; | ||
30 | # Why are newly built .so's preloaded anyway? Because run-time | ||
31 | # .so lookup path embedded into application takes precedence | ||
32 | # over LD_LIBRARY_PATH and as result application ends up linking | ||
33 | # to previously installed .so's. On IRIX instead of preloading | ||
34 | # newly built .so's we trick run-time linker to fail to find | ||
35 | # the installed .so by setting _RLD_ROOT variable. | ||
36 | *ELF\ 32*MIPS*) | ||
37 | #_RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD_LIST | ||
38 | _RLD_ROOT=/no/such/dir; export _RLD_ROOT | ||
39 | eval $rld_var=\"/usr/lib'${'$rld_var':+:$'$rld_var'}'\" | ||
40 | preload_var=_RLD_LIST | ||
27 | ;; | 41 | ;; |
28 | *ELF\ N32*MIPS*) | 42 | *ELF\ N32*MIPS*) |
29 | [ -n "$LD_LIBRARYN32_PATH" ] && rld_var=LD_LIBRARYN32_PATH | 43 | [ -n "$LD_LIBRARYN32_PATH" ] && rld_var=LD_LIBRARYN32_PATH |
30 | _RLDN32_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLDN32_LIST | 44 | #_RLDN32_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLDN32_LIST |
45 | _RLDN32_ROOT=/no/such/dir; export _RLDN32_ROOT | ||
46 | eval $rld_var=\"/usr/lib32'${'$rld_var':+:$'$rld_var'}'\" | ||
47 | preload_var=_RLDN32_LIST | ||
31 | ;; | 48 | ;; |
32 | *ELF\ 64*MIPS*) | 49 | *ELF\ 64*MIPS*) |
33 | [ -n "$LD_LIBRARY64_PATH" ] && rld_var=LD_LIBRARY64_PATH | 50 | [ -n "$LD_LIBRARY64_PATH" ] && rld_var=LD_LIBRARY64_PATH |
34 | _RLD64_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD64_LIST | 51 | #_RLD64_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT"; export _RLD64_LIST |
52 | _RLD64_ROOT=/no/such/dir; export _RLD64_ROOT | ||
53 | eval $rld_var=\"/usr/lib64'${'$rld_var':+:$'$rld_var'}'\" | ||
54 | preload_var=_RLD64_LIST | ||
35 | ;; | 55 | ;; |
36 | esac | 56 | esac |
37 | eval $rld_var=\"${THERE}:'$'$rld_var\"; export $rld_var | 57 | eval $rld_var=\"${THERE}'${'$rld_var':+:$'$rld_var'}'\"; export $rld_var |
38 | unset rld_var | 58 | unset rld_var |
39 | ;; | 59 | ;; |
40 | *) LD_LIBRARY_PATH="${THERE}:$LD_LIBRARY_PATH" # Linux, ELF HP-UX | 60 | *) LD_LIBRARY_PATH="${THERE}:$LD_LIBRARY_PATH" # Linux, ELF HP-UX |
@@ -52,7 +72,7 @@ SunOS|IRIX*) | |||
52 | ;; | 72 | ;; |
53 | esac | 73 | esac |
54 | 74 | ||
55 | if [ -f "$LIBCRYPTOSO" ]; then | 75 | if [ -f "$LIBCRYPTOSO" -a -z "$preload_var" ]; then |
56 | # Following three lines are major excuse for isolating them into | 76 | # Following three lines are major excuse for isolating them into |
57 | # this wrapper script. Original reason for setting LD_PRELOAD | 77 | # this wrapper script. Original reason for setting LD_PRELOAD |
58 | # was to make it possible to pass 'make test' when user linked | 78 | # was to make it possible to pass 'make test' when user linked |
@@ -64,7 +84,8 @@ if [ -f "$LIBCRYPTOSO" ]; then | |||
64 | *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX | 84 | *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX |
65 | esac | 85 | esac |
66 | _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX | 86 | _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX |
67 | export LD_PRELOAD _RLD_LIST | 87 | DYLD_INSERT_LIBRARIES="$LIBCRYPTOSO:$LIBSSLSO" # MacOS X |
88 | export LD_PRELOAD _RLD_LIST DYLD_INSERT_LIBRARIES | ||
68 | fi | 89 | fi |
69 | 90 | ||
70 | exec "$@" | 91 | exec "$@" |
diff --git a/src/lib/libcrypto/x509/Makefile b/src/lib/libcrypto/x509/Makefile index ee3f8a4a23..ddcc3124a7 100644 --- a/src/lib/libcrypto/x509/Makefile +++ b/src/lib/libcrypto/x509/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -27,13 +22,13 @@ LIBSRC= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c \ | |||
27 | x509_set.c x509cset.c x509rset.c x509_err.c \ | 22 | x509_set.c x509cset.c x509rset.c x509_err.c \ |
28 | x509name.c x509_v3.c x509_ext.c x509_att.c \ | 23 | x509name.c x509_v3.c x509_ext.c x509_att.c \ |
29 | x509type.c x509_lu.c x_all.c x509_txt.c \ | 24 | x509type.c x509_lu.c x_all.c x509_txt.c \ |
30 | x509_trs.c by_file.c by_dir.c | 25 | x509_trs.c by_file.c by_dir.c x509_vpm.c |
31 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ | 26 | LIBOBJ= x509_def.o x509_d2.o x509_r2x.o x509_cmp.o \ |
32 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ | 27 | x509_obj.o x509_req.o x509spki.o x509_vfy.o \ |
33 | x509_set.o x509cset.o x509rset.o x509_err.o \ | 28 | x509_set.o x509cset.o x509rset.o x509_err.o \ |
34 | x509name.o x509_v3.o x509_ext.o x509_att.o \ | 29 | x509name.o x509_v3.o x509_ext.o x509_att.o \ |
35 | x509type.o x509_lu.o x_all.o x509_txt.o \ | 30 | x509type.o x509_lu.o x_all.o x509_txt.o \ |
36 | x509_trs.o by_file.o by_dir.o | 31 | x509_trs.o by_file.o by_dir.o x509_vpm.o |
37 | 32 | ||
38 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
39 | 34 | ||
@@ -53,7 +48,7 @@ lib: $(LIBOBJ) | |||
53 | @touch lib | 48 | @touch lib |
54 | 49 | ||
55 | files: | 50 | files: |
56 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 51 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
57 | 52 | ||
58 | links: | 53 | links: |
59 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 54 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
@@ -61,6 +56,7 @@ links: | |||
61 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
62 | 57 | ||
63 | install: | 58 | install: |
59 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
64 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 60 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
65 | do \ | 61 | do \ |
66 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -76,6 +72,7 @@ lint: | |||
76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
77 | 73 | ||
78 | depend: | 74 | depend: |
75 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
79 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 76 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
80 | 77 | ||
81 | dclean: | 78 | dclean: |
@@ -87,506 +84,323 @@ clean: | |||
87 | 84 | ||
88 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
89 | 86 | ||
90 | by_dir.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 87 | by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
91 | by_dir.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 88 | by_dir.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
92 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 89 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
93 | by_dir.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 90 | by_dir.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
94 | by_dir.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 91 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
95 | by_dir.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 92 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
96 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
97 | by_dir.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
98 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
99 | by_dir.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
100 | by_dir.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
101 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 93 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
102 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 94 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
103 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 95 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
104 | by_dir.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 96 | by_dir.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
105 | by_dir.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 97 | by_dir.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
106 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 98 | by_dir.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_dir.c |
107 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 99 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h |
108 | by_dir.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 100 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
109 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 101 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
110 | by_dir.o: ../cryptlib.h by_dir.c | 102 | by_file.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
111 | by_file.o: ../../e_os.h ../../include/openssl/aes.h | 103 | by_file.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
112 | by_file.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 104 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
113 | by_file.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
114 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
115 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
116 | by_file.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
117 | by_file.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
118 | by_file.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
119 | by_file.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
120 | by_file.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
121 | by_file.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
122 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 105 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
123 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 106 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
124 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 107 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
125 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 108 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
126 | by_file.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 109 | by_file.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
127 | by_file.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 110 | by_file.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
128 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 111 | by_file.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
129 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 112 | by_file.o: ../cryptlib.h by_file.c |
130 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 113 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h |
131 | by_file.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 114 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
132 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | ||
133 | x509_att.o: ../../e_os.h ../../include/openssl/aes.h | ||
134 | x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
135 | x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
136 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
137 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 115 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
138 | x509_att.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 116 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
139 | x509_att.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 117 | x509_att.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
140 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 118 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
141 | x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 119 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
142 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
143 | x509_att.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
144 | x509_att.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
145 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 120 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
146 | 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 |
147 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 122 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
148 | x509_att.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 123 | x509_att.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
149 | x509_att.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 124 | x509_att.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
150 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 125 | x509_att.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
151 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 126 | x509_att.o: ../cryptlib.h x509_att.c |
152 | x509_att.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 127 | x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h |
153 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 128 | x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
154 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | ||
155 | x509_cmp.o: ../../e_os.h ../../include/openssl/aes.h | ||
156 | x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
157 | x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
158 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
159 | x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 129 | x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
160 | x509_cmp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 130 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
161 | x509_cmp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 131 | x509_cmp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
162 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 132 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
163 | x509_cmp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 133 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
164 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
165 | x509_cmp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
166 | x509_cmp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
167 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 134 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
168 | 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 |
169 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 136 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
170 | x509_cmp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 137 | x509_cmp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
171 | x509_cmp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 138 | x509_cmp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
172 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 139 | x509_cmp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
173 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 140 | x509_cmp.o: ../cryptlib.h x509_cmp.c |
174 | x509_cmp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 141 | x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h |
175 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 142 | x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
176 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | 143 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
177 | x509_d2.o: ../../e_os.h ../../include/openssl/aes.h | 144 | x509_d2.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
178 | x509_d2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 145 | x509_d2.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
179 | x509_d2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 146 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
180 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
181 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
182 | x509_d2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
183 | x509_d2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
184 | x509_d2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
185 | x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
186 | x509_d2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
187 | x509_d2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
188 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 147 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
189 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 148 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
190 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 149 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
191 | x509_d2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 150 | x509_d2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
192 | x509_d2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 151 | x509_d2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
193 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 152 | x509_d2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
194 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 153 | x509_d2.o: ../cryptlib.h x509_d2.c |
195 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 154 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h |
196 | x509_d2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 155 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
197 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | 156 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
198 | x509_def.o: ../../e_os.h ../../include/openssl/aes.h | 157 | x509_def.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
199 | x509_def.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 158 | x509_def.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
200 | x509_def.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 159 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
201 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
202 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
203 | x509_def.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
204 | x509_def.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
205 | x509_def.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
206 | x509_def.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
207 | x509_def.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
208 | x509_def.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
209 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 160 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
210 | x509_def.o: ../../include/openssl/opensslconf.h | 161 | x509_def.o: ../../include/openssl/opensslconf.h |
211 | 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 |
212 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 163 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
213 | x509_def.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 164 | x509_def.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
214 | x509_def.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 165 | x509_def.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
215 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 166 | x509_def.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_def.c |
216 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 167 | x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
217 | x509_def.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 168 | x509_err.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
218 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 169 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
219 | x509_def.o: ../cryptlib.h x509_def.c | 170 | x509_err.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
220 | x509_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 171 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
221 | x509_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 172 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
222 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
223 | x509_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
224 | x509_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
225 | x509_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
226 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
227 | x509_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
228 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
229 | x509_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
230 | x509_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
231 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 173 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
232 | 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 |
233 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 175 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
234 | x509_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 176 | x509_err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
235 | x509_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 177 | x509_err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
236 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 178 | x509_err.o: ../../include/openssl/x509_vfy.h x509_err.c |
237 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 179 | x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h |
238 | x509_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 180 | x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
239 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
240 | x509_err.o: x509_err.c | ||
241 | x509_ext.o: ../../e_os.h ../../include/openssl/aes.h | ||
242 | x509_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
243 | x509_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
244 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
245 | x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 181 | x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
246 | x509_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 182 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
247 | x509_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 183 | x509_ext.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
248 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 184 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
249 | x509_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 185 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
250 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
251 | x509_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
252 | x509_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
253 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 186 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
254 | 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 |
255 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 188 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
256 | x509_ext.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 189 | x509_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
257 | x509_ext.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 190 | x509_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
258 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 191 | x509_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
259 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 192 | x509_ext.o: ../cryptlib.h x509_ext.c |
260 | x509_ext.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 193 | x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h |
261 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 194 | x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
262 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | ||
263 | x509_lu.o: ../../e_os.h ../../include/openssl/aes.h | ||
264 | x509_lu.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
265 | x509_lu.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
266 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
267 | x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 195 | x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
268 | x509_lu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 196 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
269 | x509_lu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 197 | x509_lu.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
270 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 198 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
271 | x509_lu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 199 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
272 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
273 | x509_lu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
274 | x509_lu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
275 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 200 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
276 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 201 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
277 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 202 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
278 | x509_lu.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 203 | x509_lu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
279 | x509_lu.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 204 | x509_lu.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
280 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 205 | x509_lu.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
281 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 206 | x509_lu.o: ../cryptlib.h x509_lu.c |
282 | x509_lu.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 207 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h |
283 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 208 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
284 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | 209 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
285 | x509_obj.o: ../../e_os.h ../../include/openssl/aes.h | 210 | x509_obj.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
286 | x509_obj.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 211 | x509_obj.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
287 | x509_obj.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 212 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
288 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
289 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
290 | x509_obj.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
291 | x509_obj.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
292 | x509_obj.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
293 | x509_obj.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
294 | x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
295 | x509_obj.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
296 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 213 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
297 | x509_obj.o: ../../include/openssl/opensslconf.h | 214 | x509_obj.o: ../../include/openssl/opensslconf.h |
298 | 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 |
299 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 216 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
300 | x509_obj.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 217 | x509_obj.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
301 | x509_obj.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 218 | x509_obj.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
302 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 219 | x509_obj.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_obj.c |
303 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 220 | x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h |
304 | x509_obj.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 221 | x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
305 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 222 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
306 | x509_obj.o: ../cryptlib.h x509_obj.c | 223 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
307 | x509_r2x.o: ../../e_os.h ../../include/openssl/aes.h | 224 | x509_r2x.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
308 | x509_r2x.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
309 | x509_r2x.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
310 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
311 | x509_r2x.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
312 | x509_r2x.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
313 | x509_r2x.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
314 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 225 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
315 | x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 226 | x509_r2x.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
316 | x509_r2x.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 227 | x509_r2x.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
317 | x509_r2x.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
318 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
319 | x509_r2x.o: ../../include/openssl/opensslconf.h | ||
320 | 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 |
321 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 229 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
322 | x509_r2x.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 230 | x509_r2x.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
323 | x509_r2x.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 231 | x509_r2x.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
324 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 232 | x509_r2x.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_r2x.c |
325 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 233 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h |
326 | x509_r2x.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 234 | x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
327 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 235 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
328 | x509_r2x.o: ../cryptlib.h x509_r2x.c | 236 | x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
329 | x509_req.o: ../../e_os.h ../../include/openssl/aes.h | 237 | x509_req.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
330 | x509_req.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
331 | x509_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
332 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
333 | x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
334 | x509_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
335 | x509_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
336 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 238 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
337 | x509_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 239 | x509_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
338 | x509_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 240 | x509_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
339 | x509_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
340 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
341 | x509_req.o: ../../include/openssl/opensslconf.h | ||
342 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 241 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
343 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 242 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
344 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 243 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
345 | x509_req.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 244 | x509_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
346 | x509_req.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 245 | x509_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
347 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 246 | x509_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_req.c |
348 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 247 | x509_set.o: ../../e_os.h ../../include/openssl/asn1.h |
349 | x509_req.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 248 | x509_set.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
350 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 249 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
351 | x509_req.o: ../cryptlib.h x509_req.c | 250 | x509_set.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
352 | x509_set.o: ../../e_os.h ../../include/openssl/aes.h | 251 | x509_set.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
353 | x509_set.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 252 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
354 | x509_set.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
355 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
356 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
357 | x509_set.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
358 | x509_set.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
359 | x509_set.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
360 | x509_set.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
361 | x509_set.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
362 | x509_set.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
363 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 253 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
364 | x509_set.o: ../../include/openssl/opensslconf.h | 254 | x509_set.o: ../../include/openssl/opensslconf.h |
365 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 255 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
366 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 256 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
367 | x509_set.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 257 | x509_set.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
368 | x509_set.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 258 | x509_set.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
369 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 259 | x509_set.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_set.c |
370 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 260 | x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h |
371 | x509_set.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 261 | x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
372 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
373 | x509_set.o: ../cryptlib.h x509_set.c | ||
374 | x509_trs.o: ../../e_os.h ../../include/openssl/aes.h | ||
375 | x509_trs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
376 | x509_trs.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
377 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
378 | x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 262 | x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
379 | x509_trs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 263 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
380 | x509_trs.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 264 | x509_trs.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
381 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 265 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
382 | x509_trs.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 266 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
383 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
384 | x509_trs.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
385 | x509_trs.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
386 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 267 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
387 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 268 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
388 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 269 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
389 | x509_trs.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 270 | x509_trs.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
390 | x509_trs.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 271 | x509_trs.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
391 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 272 | x509_trs.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
392 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 273 | x509_trs.o: ../cryptlib.h x509_trs.c |
393 | x509_trs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 274 | x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h |
394 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 275 | x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
395 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | 276 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
396 | x509_txt.o: ../../e_os.h ../../include/openssl/aes.h | 277 | x509_txt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
397 | x509_txt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 278 | x509_txt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
398 | x509_txt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 279 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
399 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
400 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
401 | x509_txt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
402 | x509_txt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
403 | x509_txt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
404 | x509_txt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
405 | x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
406 | x509_txt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
407 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 280 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
408 | x509_txt.o: ../../include/openssl/opensslconf.h | 281 | x509_txt.o: ../../include/openssl/opensslconf.h |
409 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 282 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
410 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 283 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
411 | x509_txt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 284 | x509_txt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
412 | x509_txt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 285 | x509_txt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
413 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 286 | x509_txt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_txt.c |
414 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 287 | x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h |
415 | x509_txt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 288 | x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
416 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
417 | x509_txt.o: ../cryptlib.h x509_txt.c | ||
418 | x509_v3.o: ../../e_os.h ../../include/openssl/aes.h | ||
419 | x509_v3.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
420 | x509_v3.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
421 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
422 | x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 289 | x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
423 | x509_v3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 290 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
424 | x509_v3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 291 | x509_v3.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
425 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 292 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
426 | x509_v3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 293 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
427 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
428 | x509_v3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
429 | x509_v3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
430 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 294 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
431 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 295 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
432 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 296 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
433 | x509_v3.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 297 | x509_v3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
434 | x509_v3.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 298 | x509_v3.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
435 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 299 | x509_v3.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
436 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 300 | x509_v3.o: ../cryptlib.h x509_v3.c |
437 | x509_v3.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 301 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h |
438 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 302 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
439 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | ||
440 | x509_vfy.o: ../../e_os.h ../../include/openssl/aes.h | ||
441 | x509_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
442 | x509_vfy.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
443 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
444 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 303 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
445 | x509_vfy.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 304 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
446 | x509_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 305 | x509_vfy.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
447 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 306 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
448 | x509_vfy.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 307 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
449 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
450 | x509_vfy.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
451 | x509_vfy.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
452 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 308 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
453 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 309 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
454 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 310 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
455 | x509_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 311 | x509_vfy.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
456 | x509_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 312 | x509_vfy.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
457 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 313 | x509_vfy.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
458 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 314 | x509_vfy.o: ../cryptlib.h x509_vfy.c |
459 | x509_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 315 | x509_vpm.o: ../../e_os.h ../../include/openssl/asn1.h |
460 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 316 | x509_vpm.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
461 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | 317 | x509_vpm.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
462 | x509cset.o: ../../e_os.h ../../include/openssl/aes.h | 318 | x509_vpm.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
463 | x509cset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 319 | x509_vpm.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
464 | x509cset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 320 | x509_vpm.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
465 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 321 | x509_vpm.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
466 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 322 | x509_vpm.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
467 | x509cset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 323 | x509_vpm.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
468 | x509cset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 324 | x509_vpm.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
469 | x509cset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 325 | x509_vpm.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
470 | x509cset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 326 | x509_vpm.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
471 | x509cset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 327 | x509_vpm.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
472 | x509cset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 328 | x509_vpm.o: ../cryptlib.h x509_vpm.c |
329 | x509cset.o: ../../e_os.h ../../include/openssl/asn1.h | ||
330 | x509cset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
331 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
332 | x509cset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
333 | x509cset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
334 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
473 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 335 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
474 | x509cset.o: ../../include/openssl/opensslconf.h | 336 | x509cset.o: ../../include/openssl/opensslconf.h |
475 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 337 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
476 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 338 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
477 | x509cset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 339 | x509cset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
478 | x509cset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 340 | x509cset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
479 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 341 | x509cset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509cset.c |
480 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 342 | x509name.o: ../../e_os.h ../../include/openssl/asn1.h |
481 | x509cset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 343 | x509name.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
482 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 344 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
483 | x509cset.o: ../cryptlib.h x509cset.c | 345 | x509name.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
484 | x509name.o: ../../e_os.h ../../include/openssl/aes.h | 346 | x509name.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
485 | x509name.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 347 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
486 | x509name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
487 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
488 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
489 | x509name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
490 | x509name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
491 | x509name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
492 | x509name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
493 | x509name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
494 | x509name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
495 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 348 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
496 | x509name.o: ../../include/openssl/opensslconf.h | 349 | x509name.o: ../../include/openssl/opensslconf.h |
497 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 350 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
498 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 351 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
499 | x509name.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 352 | x509name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
500 | x509name.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 353 | x509name.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
501 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 354 | x509name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509name.c |
502 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 355 | x509rset.o: ../../e_os.h ../../include/openssl/asn1.h |
503 | x509name.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 356 | x509rset.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
504 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 357 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
505 | x509name.o: ../cryptlib.h x509name.c | 358 | x509rset.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
506 | x509rset.o: ../../e_os.h ../../include/openssl/aes.h | 359 | x509rset.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
507 | x509rset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 360 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
508 | x509rset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
509 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
510 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
511 | x509rset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
512 | x509rset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
513 | x509rset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
514 | x509rset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
515 | x509rset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
516 | x509rset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
517 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 361 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
518 | x509rset.o: ../../include/openssl/opensslconf.h | 362 | x509rset.o: ../../include/openssl/opensslconf.h |
519 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 363 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
520 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 364 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
521 | x509rset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 365 | x509rset.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
522 | x509rset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 366 | x509rset.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
523 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 367 | x509rset.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509rset.c |
524 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 368 | x509spki.o: ../../e_os.h ../../include/openssl/asn1.h |
525 | x509rset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 369 | x509spki.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
526 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 370 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
527 | x509rset.o: ../cryptlib.h x509rset.c | 371 | x509spki.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
528 | x509spki.o: ../../e_os.h ../../include/openssl/aes.h | 372 | x509spki.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
529 | x509spki.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 373 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
530 | x509spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
531 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
532 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
533 | x509spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
534 | x509spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
535 | x509spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
536 | x509spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
537 | x509spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
538 | x509spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
539 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 374 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
540 | x509spki.o: ../../include/openssl/opensslconf.h | 375 | x509spki.o: ../../include/openssl/opensslconf.h |
541 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 376 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
542 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 377 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
543 | x509spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 378 | x509spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
544 | x509spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 379 | x509spki.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
545 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 380 | x509spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509spki.c |
546 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 381 | x509type.o: ../../e_os.h ../../include/openssl/asn1.h |
547 | x509spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 382 | x509type.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
548 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 383 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
549 | x509spki.o: ../cryptlib.h x509spki.c | 384 | x509type.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
550 | x509type.o: ../../e_os.h ../../include/openssl/aes.h | 385 | x509type.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
551 | x509type.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 386 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
552 | x509type.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
553 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
554 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
555 | x509type.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
556 | x509type.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
557 | x509type.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
558 | x509type.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
559 | x509type.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
560 | x509type.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
561 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 387 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
562 | x509type.o: ../../include/openssl/opensslconf.h | 388 | x509type.o: ../../include/openssl/opensslconf.h |
563 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 389 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
564 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 390 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
565 | x509type.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 391 | x509type.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
566 | x509type.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 392 | x509type.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
567 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 393 | x509type.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509type.c |
568 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 394 | x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
569 | x509type.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 395 | x_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
570 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 396 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
571 | x509type.o: ../cryptlib.h x509type.c | 397 | x_all.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
572 | x_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 398 | x_all.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
573 | x_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 399 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
574 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 400 | x_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
575 | x_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 401 | x_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
576 | x_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 402 | x_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
577 | x_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 403 | x_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
578 | x_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 404 | x_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
579 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 405 | x_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
580 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 406 | x_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_all.c |
581 | x_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
582 | x_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
583 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
584 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
585 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
586 | x_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
587 | x_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
588 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
589 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
590 | x_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
591 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
592 | x_all.o: ../cryptlib.h x_all.c | ||
diff --git a/src/lib/libcrypto/x509v3/Makefile b/src/lib/libcrypto/x509v3/Makefile index 49423f39f7..556ef351bf 100644 --- a/src/lib/libcrypto/x509v3/Makefile +++ b/src/lib/libcrypto/x509v3/Makefile | |||
@@ -7,11 +7,6 @@ TOP= ../.. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I.. -I$(TOP) -I../../include | 8 | INCLUDES= -I.. -I$(TOP) -I../../include |
9 | CFLAG=-g | 9 | CFLAG=-g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP=/usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | AR= ar r | 11 | AR= ar r |
17 | 12 | ||
@@ -25,16 +20,20 @@ LIB=$(TOP)/libcrypto.a | |||
25 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c \ | 20 | LIBSRC= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c \ |
26 | v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c \ | 21 | v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c \ |
27 | v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c \ | 22 | v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c \ |
28 | v3_ocsp.c v3_akeya.c v3_pcia.c v3_pci.c | 23 | v3_ocsp.c v3_akeya.c v3_pmaps.c v3_pcons.c v3_ncons.c v3_pcia.c v3_pci.c \ |
24 | pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c \ | ||
25 | v3_asid.c v3_addr.c | ||
29 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ | 26 | LIBOBJ= v3_bcons.o v3_bitst.o v3_conf.o v3_extku.o v3_ia5.o v3_lib.o \ |
30 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ | 27 | v3_prn.o v3_utl.o v3err.o v3_genn.o v3_alt.o v3_skey.o v3_akey.o v3_pku.o \ |
31 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o v3_purp.o v3_info.o \ | 28 | v3_int.o v3_enum.o v3_sxnet.o v3_cpols.o v3_crld.o v3_purp.o v3_info.o \ |
32 | v3_ocsp.o v3_akeya.o v3_pcia.o v3_pci.o | 29 | v3_ocsp.o v3_akeya.o v3_pmaps.o v3_pcons.o v3_ncons.o v3_pcia.o v3_pci.o \ |
30 | pcy_cache.o pcy_node.o pcy_data.o pcy_map.o pcy_tree.o pcy_lib.o \ | ||
31 | v3_asid.o v3_addr.o | ||
33 | 32 | ||
34 | SRC= $(LIBSRC) | 33 | SRC= $(LIBSRC) |
35 | 34 | ||
36 | EXHEADER= x509v3.h | 35 | EXHEADER= x509v3.h |
37 | HEADER= $(EXHEADER) | 36 | HEADER= $(EXHEADER) pcy_int.h |
38 | 37 | ||
39 | ALL= $(GENERAL) $(SRC) $(HEADER) | 38 | ALL= $(GENERAL) $(SRC) $(HEADER) |
40 | 39 | ||
@@ -57,6 +56,7 @@ links: | |||
57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 56 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
58 | 57 | ||
59 | install: | 58 | install: |
59 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
60 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 60 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
61 | do \ | 61 | do \ |
62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -72,6 +72,7 @@ lint: | |||
72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
73 | 73 | ||
74 | depend: | 74 | depend: |
75 | @[ -n "$(MAKEDEPEND)" ] # should be set by upper Makefile... | ||
75 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 76 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) |
76 | 77 | ||
77 | dclean: | 78 | dclean: |
@@ -83,563 +84,508 @@ clean: | |||
83 | 84 | ||
84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 85 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
85 | 86 | ||
86 | v3_akey.o: ../../e_os.h ../../include/openssl/aes.h | 87 | pcy_cache.o: ../../e_os.h ../../include/openssl/asn1.h |
87 | v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 88 | pcy_cache.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
88 | v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 89 | pcy_cache.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
89 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 90 | pcy_cache.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
90 | v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 91 | pcy_cache.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
91 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 92 | pcy_cache.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
92 | v3_akey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 93 | pcy_cache.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
93 | v3_akey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 94 | pcy_cache.o: ../../include/openssl/objects.h |
94 | v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 95 | pcy_cache.o: ../../include/openssl/opensslconf.h |
95 | v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 96 | pcy_cache.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
96 | v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 97 | pcy_cache.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
97 | v3_akey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 98 | pcy_cache.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
99 | pcy_cache.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
100 | pcy_cache.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
101 | pcy_cache.o: ../cryptlib.h pcy_cache.c pcy_int.h | ||
102 | pcy_data.o: ../../e_os.h ../../include/openssl/asn1.h | ||
103 | pcy_data.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
104 | pcy_data.o: ../../include/openssl/conf.h ../../include/openssl/crypto.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 | ||
107 | pcy_data.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
108 | pcy_data.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
109 | pcy_data.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
110 | pcy_data.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
111 | pcy_data.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
112 | pcy_data.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
113 | pcy_data.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
114 | pcy_data.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
115 | pcy_data.o: ../cryptlib.h pcy_data.c pcy_int.h | ||
116 | pcy_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
117 | pcy_lib.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
118 | pcy_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
119 | pcy_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
120 | pcy_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
121 | pcy_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
122 | pcy_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
123 | pcy_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
124 | pcy_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
125 | pcy_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
126 | pcy_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
127 | pcy_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
128 | pcy_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
129 | pcy_lib.o: ../cryptlib.h pcy_int.h pcy_lib.c | ||
130 | pcy_map.o: ../../e_os.h ../../include/openssl/asn1.h | ||
131 | pcy_map.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
132 | pcy_map.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
133 | pcy_map.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
134 | pcy_map.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
135 | pcy_map.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
136 | pcy_map.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
137 | pcy_map.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
138 | pcy_map.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
139 | pcy_map.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
140 | pcy_map.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
141 | pcy_map.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
142 | pcy_map.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
143 | pcy_map.o: ../cryptlib.h pcy_int.h pcy_map.c | ||
144 | pcy_node.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
145 | pcy_node.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
146 | pcy_node.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
147 | pcy_node.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
148 | pcy_node.o: ../../include/openssl/ecdsa.h ../../include/openssl/evp.h | ||
149 | pcy_node.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
150 | pcy_node.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
151 | pcy_node.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
152 | pcy_node.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
153 | pcy_node.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
154 | pcy_node.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
155 | pcy_node.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
156 | pcy_node.o: pcy_int.h pcy_node.c | ||
157 | pcy_tree.o: ../../e_os.h ../../include/openssl/asn1.h | ||
158 | pcy_tree.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
159 | pcy_tree.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
160 | pcy_tree.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
161 | pcy_tree.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
162 | pcy_tree.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
163 | pcy_tree.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
164 | pcy_tree.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
165 | pcy_tree.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
166 | pcy_tree.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
167 | pcy_tree.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
168 | pcy_tree.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
169 | pcy_tree.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
170 | pcy_tree.o: ../cryptlib.h pcy_int.h pcy_tree.c | ||
171 | v3_addr.o: ../../e_os.h ../../include/openssl/asn1.h | ||
172 | v3_addr.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
173 | v3_addr.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
174 | v3_addr.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
175 | v3_addr.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
176 | v3_addr.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
177 | v3_addr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
178 | v3_addr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
179 | v3_addr.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
180 | v3_addr.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
181 | v3_addr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
182 | v3_addr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
183 | v3_addr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
184 | v3_addr.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_addr.c | ||
185 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h | ||
186 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
187 | v3_akey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
188 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
189 | v3_akey.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
190 | v3_akey.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
191 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
98 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 192 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
99 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 193 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
100 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 194 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
101 | v3_akey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 195 | v3_akey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
102 | v3_akey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 196 | v3_akey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
103 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 197 | v3_akey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
104 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 198 | v3_akey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akey.c |
105 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 199 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h |
106 | v3_akey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 200 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
107 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 201 | v3_akeya.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
108 | v3_akey.o: ../cryptlib.h v3_akey.c | 202 | v3_akeya.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
109 | v3_akeya.o: ../../e_os.h ../../include/openssl/aes.h | 203 | v3_akeya.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
110 | v3_akeya.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 204 | v3_akeya.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
111 | v3_akeya.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 205 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
112 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
113 | v3_akeya.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
114 | v3_akeya.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
115 | v3_akeya.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
116 | v3_akeya.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
117 | v3_akeya.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
118 | v3_akeya.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
119 | v3_akeya.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
120 | v3_akeya.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
121 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 206 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
122 | v3_akeya.o: ../../include/openssl/opensslconf.h | 207 | v3_akeya.o: ../../include/openssl/opensslconf.h |
123 | 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 |
124 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 209 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
125 | v3_akeya.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 210 | v3_akeya.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
126 | v3_akeya.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 211 | v3_akeya.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
127 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 212 | v3_akeya.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
128 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 213 | v3_akeya.o: ../cryptlib.h v3_akeya.c |
129 | v3_akeya.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 214 | v3_alt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
130 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 215 | v3_alt.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
131 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c | 216 | v3_alt.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
132 | v3_alt.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 217 | v3_alt.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
133 | v3_alt.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 218 | v3_alt.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
134 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 219 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
135 | v3_alt.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
136 | v3_alt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
137 | v3_alt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
138 | v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
139 | v3_alt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
140 | v3_alt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
141 | v3_alt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
142 | v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
143 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 220 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
144 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 221 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
145 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 222 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
146 | v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 223 | v3_alt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
147 | v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 224 | v3_alt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
148 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 225 | v3_alt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
149 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 226 | v3_alt.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_alt.c |
150 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 227 | v3_asid.o: ../../e_os.h ../../include/openssl/asn1.h |
151 | v3_alt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 228 | v3_asid.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
152 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 229 | v3_asid.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
153 | v3_alt.o: ../cryptlib.h v3_alt.c | 230 | v3_asid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
154 | v3_bcons.o: ../../e_os.h ../../include/openssl/aes.h | 231 | v3_asid.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
155 | v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 232 | v3_asid.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
156 | v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 233 | v3_asid.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
157 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 234 | v3_asid.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
158 | v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 235 | v3_asid.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
159 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 236 | v3_asid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
160 | v3_bcons.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 237 | v3_asid.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
161 | v3_bcons.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 238 | v3_asid.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
162 | v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 239 | v3_asid.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
163 | v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 240 | v3_asid.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
164 | v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 241 | v3_asid.o: ../cryptlib.h v3_asid.c |
165 | v3_bcons.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 242 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h |
243 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
244 | v3_bcons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
245 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
246 | v3_bcons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
247 | v3_bcons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
248 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
166 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 249 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
167 | v3_bcons.o: ../../include/openssl/opensslconf.h | 250 | v3_bcons.o: ../../include/openssl/opensslconf.h |
168 | 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 |
169 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 252 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
170 | v3_bcons.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 253 | v3_bcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
171 | v3_bcons.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 254 | v3_bcons.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
172 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 255 | v3_bcons.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
173 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 256 | v3_bcons.o: ../cryptlib.h v3_bcons.c |
174 | v3_bcons.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 257 | v3_bitst.o: ../../e_os.h ../../include/openssl/asn1.h |
175 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 258 | v3_bitst.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
176 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c | ||
177 | v3_bitst.o: ../../e_os.h ../../include/openssl/aes.h | ||
178 | v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
179 | v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
180 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
181 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 259 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
182 | v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 260 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
183 | v3_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 261 | v3_bitst.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
184 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 262 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
185 | v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 263 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
186 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
187 | v3_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
188 | v3_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
189 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 264 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
190 | 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 |
191 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 266 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
192 | v3_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 267 | v3_bitst.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
193 | v3_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 268 | v3_bitst.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
194 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 269 | v3_bitst.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
195 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 270 | v3_bitst.o: ../cryptlib.h v3_bitst.c |
196 | v3_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 271 | v3_conf.o: ../../e_os.h ../../include/openssl/asn1.h |
197 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 272 | v3_conf.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
198 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c | ||
199 | v3_conf.o: ../../e_os.h ../../include/openssl/aes.h | ||
200 | v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
201 | v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
202 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
203 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 273 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
204 | v3_conf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 274 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
205 | v3_conf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 275 | v3_conf.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
206 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 276 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
207 | v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 277 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
208 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
209 | v3_conf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
210 | v3_conf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
211 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 278 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
212 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 279 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
213 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 280 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
214 | v3_conf.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 281 | v3_conf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
215 | v3_conf.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 282 | v3_conf.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
216 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 283 | v3_conf.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
217 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 284 | v3_conf.o: ../cryptlib.h v3_conf.c |
218 | v3_conf.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 285 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h |
219 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 286 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
220 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c | 287 | v3_cpols.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
221 | v3_cpols.o: ../../e_os.h ../../include/openssl/aes.h | 288 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
222 | v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 289 | v3_cpols.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
223 | v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 290 | v3_cpols.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
224 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 291 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
225 | v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
226 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
227 | v3_cpols.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
228 | v3_cpols.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
229 | v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
230 | v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
231 | v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
232 | v3_cpols.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
233 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 292 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
234 | v3_cpols.o: ../../include/openssl/opensslconf.h | 293 | v3_cpols.o: ../../include/openssl/opensslconf.h |
235 | 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 |
236 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 295 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
237 | v3_cpols.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 296 | v3_cpols.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
238 | v3_cpols.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 297 | v3_cpols.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
239 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 298 | v3_cpols.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
240 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 299 | v3_cpols.o: ../cryptlib.h pcy_int.h v3_cpols.c |
241 | v3_cpols.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 300 | v3_crld.o: ../../e_os.h ../../include/openssl/asn1.h |
242 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 301 | v3_crld.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
243 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c | 302 | v3_crld.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
244 | v3_crld.o: ../../e_os.h ../../include/openssl/aes.h | 303 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
245 | v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 304 | v3_crld.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
246 | v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 305 | v3_crld.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
247 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 306 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
248 | v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
249 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
250 | v3_crld.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
251 | v3_crld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
252 | v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
253 | v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
254 | v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
255 | v3_crld.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
256 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 307 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
257 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 308 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
258 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 309 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
259 | v3_crld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 310 | v3_crld.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
260 | v3_crld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 311 | v3_crld.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
261 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 312 | v3_crld.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
262 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 313 | v3_crld.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_crld.c |
263 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 314 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h |
264 | v3_crld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 315 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
265 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
266 | v3_crld.o: ../cryptlib.h v3_crld.c | ||
267 | v3_enum.o: ../../e_os.h ../../include/openssl/aes.h | ||
268 | v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
269 | v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
270 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
271 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 316 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
272 | v3_enum.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 317 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
273 | v3_enum.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 318 | v3_enum.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
274 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 319 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
275 | v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 320 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
276 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
277 | v3_enum.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
278 | v3_enum.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
279 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 321 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
280 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 322 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
281 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 323 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
282 | v3_enum.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 324 | v3_enum.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
283 | v3_enum.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 325 | v3_enum.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
284 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 326 | v3_enum.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
285 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 327 | v3_enum.o: ../cryptlib.h v3_enum.c |
286 | v3_enum.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 328 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h |
287 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 329 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
288 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c | 330 | v3_extku.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
289 | v3_extku.o: ../../e_os.h ../../include/openssl/aes.h | 331 | v3_extku.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
290 | v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 332 | v3_extku.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
291 | v3_extku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 333 | v3_extku.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
292 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 334 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
293 | v3_extku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
294 | v3_extku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
295 | v3_extku.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
296 | v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
297 | v3_extku.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
298 | v3_extku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
299 | v3_extku.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
300 | v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
301 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 335 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
302 | v3_extku.o: ../../include/openssl/opensslconf.h | 336 | v3_extku.o: ../../include/openssl/opensslconf.h |
303 | 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 |
304 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 338 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
305 | v3_extku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 339 | v3_extku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
306 | v3_extku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 340 | v3_extku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
307 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 341 | v3_extku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
308 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 342 | v3_extku.o: ../cryptlib.h v3_extku.c |
309 | v3_extku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 343 | v3_genn.o: ../../e_os.h ../../include/openssl/asn1.h |
310 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 344 | v3_genn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
311 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c | 345 | v3_genn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
312 | v3_genn.o: ../../e_os.h ../../include/openssl/aes.h | 346 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
313 | v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 347 | v3_genn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
314 | v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 348 | v3_genn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
315 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 349 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
316 | v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
317 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
318 | v3_genn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
319 | v3_genn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
320 | v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
321 | v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
322 | v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
323 | v3_genn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
324 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 350 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
325 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 351 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
326 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 352 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
327 | v3_genn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 353 | v3_genn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
328 | v3_genn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 354 | v3_genn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
329 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 355 | v3_genn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
330 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 356 | v3_genn.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_genn.c |
331 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 357 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
332 | v3_genn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 358 | v3_ia5.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
333 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 359 | v3_ia5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
334 | v3_genn.o: ../cryptlib.h v3_genn.c | 360 | v3_ia5.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
335 | v3_ia5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 361 | v3_ia5.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
336 | v3_ia5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 362 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
337 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
338 | v3_ia5.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
339 | v3_ia5.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
340 | v3_ia5.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
341 | v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
342 | v3_ia5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
343 | v3_ia5.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
344 | v3_ia5.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
345 | v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
346 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 363 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
347 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 364 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
348 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 365 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
349 | v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 366 | v3_ia5.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
350 | v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 367 | v3_ia5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
351 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 368 | v3_ia5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
352 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 369 | v3_ia5.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_ia5.c |
353 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 370 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h |
354 | v3_ia5.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 371 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
355 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 372 | v3_info.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
356 | v3_ia5.o: ../cryptlib.h v3_ia5.c | 373 | v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
357 | v3_info.o: ../../e_os.h ../../include/openssl/aes.h | 374 | v3_info.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
358 | v3_info.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 375 | v3_info.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
359 | v3_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 376 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
360 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
361 | v3_info.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
362 | v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
363 | v3_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
364 | v3_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
365 | v3_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
366 | v3_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
367 | v3_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
368 | v3_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
369 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 377 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
370 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 378 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
371 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 379 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
372 | v3_info.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 380 | v3_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
373 | v3_info.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 381 | v3_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
374 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 382 | v3_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
375 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 383 | v3_info.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_info.c |
376 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 384 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
377 | v3_info.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 385 | v3_int.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
378 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 386 | v3_int.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
379 | v3_info.o: ../cryptlib.h v3_info.c | 387 | v3_int.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
380 | v3_int.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 388 | v3_int.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
381 | v3_int.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 389 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
382 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
383 | v3_int.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
384 | v3_int.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
385 | v3_int.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
386 | v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
387 | v3_int.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
388 | v3_int.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
389 | v3_int.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
390 | v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
391 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 390 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
392 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 391 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
393 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 392 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
394 | v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 393 | v3_int.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
395 | v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 394 | v3_int.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
396 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 395 | v3_int.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
397 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 396 | v3_int.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_int.c |
398 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 397 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
399 | v3_int.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 398 | v3_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
400 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 399 | v3_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
401 | v3_int.o: ../cryptlib.h v3_int.c | 400 | v3_lib.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
402 | v3_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 401 | v3_lib.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
403 | v3_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 402 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
404 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
405 | v3_lib.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
406 | v3_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
407 | v3_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
408 | v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
409 | v3_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
410 | v3_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
411 | v3_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
412 | v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
413 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 403 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
414 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 404 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
415 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 405 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
416 | v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 406 | v3_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
417 | v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 407 | v3_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
418 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 408 | v3_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
419 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 409 | v3_lib.o: ../../include/openssl/x509v3.h ../cryptlib.h ext_dat.h v3_lib.c |
420 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 410 | v3_ncons.o: ../../e_os.h ../../include/openssl/asn1.h |
421 | v3_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 411 | v3_ncons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
422 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 412 | v3_ncons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
423 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c | 413 | v3_ncons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
424 | v3_ocsp.o: ../../e_os.h ../../include/openssl/aes.h | 414 | v3_ncons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
425 | v3_ocsp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 415 | v3_ncons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
426 | v3_ocsp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 416 | v3_ncons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
427 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 417 | v3_ncons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
418 | v3_ncons.o: ../../include/openssl/opensslconf.h | ||
419 | v3_ncons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
420 | v3_ncons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
421 | v3_ncons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
422 | v3_ncons.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
423 | v3_ncons.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
424 | v3_ncons.o: ../cryptlib.h v3_ncons.c | ||
425 | v3_ocsp.o: ../../e_os.h ../../include/openssl/asn1.h | ||
426 | v3_ocsp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
428 | v3_ocsp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 427 | v3_ocsp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
429 | v3_ocsp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 428 | v3_ocsp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
430 | v3_ocsp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 429 | v3_ocsp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
431 | v3_ocsp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 430 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
432 | v3_ocsp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 431 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
433 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
434 | v3_ocsp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
435 | v3_ocsp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
436 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 432 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
437 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 433 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
438 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 434 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
439 | v3_ocsp.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 435 | v3_ocsp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
440 | v3_ocsp.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 436 | v3_ocsp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
441 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 437 | v3_ocsp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
442 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 438 | v3_ocsp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_ocsp.c |
443 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 439 | v3_pci.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
444 | v3_ocsp.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 440 | v3_pci.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
445 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 441 | v3_pci.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
446 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | 442 | v3_pci.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
447 | v3_pci.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 443 | v3_pci.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
448 | v3_pci.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 444 | v3_pci.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
449 | v3_pci.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
450 | v3_pci.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
451 | v3_pci.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
452 | v3_pci.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
453 | v3_pci.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
454 | v3_pci.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
455 | v3_pci.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
456 | v3_pci.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
457 | v3_pci.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
458 | v3_pci.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 445 | v3_pci.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
459 | v3_pci.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 446 | v3_pci.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
460 | v3_pci.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 447 | v3_pci.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
461 | v3_pci.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 448 | v3_pci.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
462 | v3_pci.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 449 | v3_pci.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
463 | v3_pci.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 450 | v3_pci.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
464 | v3_pci.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 451 | v3_pci.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pci.c |
465 | v3_pci.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 452 | v3_pcia.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
466 | v3_pci.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 453 | v3_pcia.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
467 | v3_pci.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
468 | v3_pci.o: ../cryptlib.h v3_pci.c | ||
469 | v3_pcia.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
470 | v3_pcia.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
471 | v3_pcia.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
472 | v3_pcia.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
473 | v3_pcia.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 454 | v3_pcia.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
474 | v3_pcia.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 455 | v3_pcia.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
475 | v3_pcia.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 456 | v3_pcia.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
476 | v3_pcia.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 457 | v3_pcia.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
477 | v3_pcia.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
478 | v3_pcia.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
479 | v3_pcia.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
480 | v3_pcia.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 458 | v3_pcia.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
481 | v3_pcia.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 459 | v3_pcia.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
482 | v3_pcia.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 460 | v3_pcia.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
483 | v3_pcia.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 461 | v3_pcia.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
484 | v3_pcia.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 462 | v3_pcia.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
485 | v3_pcia.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 463 | v3_pcia.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
486 | v3_pcia.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 464 | v3_pcia.o: ../../include/openssl/x509v3.h v3_pcia.c |
487 | v3_pcia.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 465 | v3_pcons.o: ../../e_os.h ../../include/openssl/asn1.h |
488 | v3_pcia.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 466 | v3_pcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
489 | v3_pcia.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 467 | v3_pcons.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
490 | v3_pcia.o: v3_pcia.c | 468 | v3_pcons.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
491 | v3_pku.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 469 | v3_pcons.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
470 | v3_pcons.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
471 | v3_pcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
472 | v3_pcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
473 | v3_pcons.o: ../../include/openssl/opensslconf.h | ||
474 | v3_pcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
475 | v3_pcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h | ||
476 | v3_pcons.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
477 | v3_pcons.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
478 | v3_pcons.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
479 | v3_pcons.o: ../cryptlib.h v3_pcons.c | ||
480 | v3_pku.o: ../../e_os.h ../../include/openssl/asn1.h | ||
492 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 481 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
493 | v3_pku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 482 | v3_pku.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
494 | v3_pku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | 483 | v3_pku.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
495 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 484 | v3_pku.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
496 | v3_pku.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 485 | v3_pku.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
497 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 486 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
498 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 487 | v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
499 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 488 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
500 | v3_pku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 489 | v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
501 | v3_pku.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
502 | v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
503 | v3_pku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
504 | v3_pku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
505 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
506 | v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
507 | v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
508 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 490 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
509 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 491 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
510 | v3_pku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
511 | v3_pku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 492 | v3_pku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
512 | v3_pku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pku.c | 493 | v3_pku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pku.c |
513 | v3_prn.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | 494 | v3_pmaps.o: ../../e_os.h ../../include/openssl/asn1.h |
514 | v3_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 495 | v3_pmaps.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
515 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 496 | v3_pmaps.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
516 | v3_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 497 | v3_pmaps.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
517 | v3_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 498 | v3_pmaps.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
518 | v3_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 499 | v3_pmaps.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
519 | v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 500 | v3_pmaps.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
520 | v3_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 501 | v3_pmaps.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
521 | v3_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 502 | v3_pmaps.o: ../../include/openssl/opensslconf.h |
522 | v3_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 503 | v3_pmaps.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
523 | v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 504 | v3_pmaps.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
505 | v3_pmaps.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
506 | v3_pmaps.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
507 | v3_pmaps.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
508 | v3_pmaps.o: ../cryptlib.h v3_pmaps.c | ||
509 | v3_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
510 | v3_prn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | ||
511 | v3_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
512 | v3_prn.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
513 | v3_prn.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
514 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
524 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 515 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
525 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 516 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
526 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 517 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
527 | v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 518 | v3_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
528 | v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 519 | v3_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
529 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 520 | v3_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
530 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 521 | v3_prn.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_prn.c |
531 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 522 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h |
532 | v3_prn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 523 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
533 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
534 | v3_prn.o: ../cryptlib.h v3_prn.c | ||
535 | v3_purp.o: ../../e_os.h ../../include/openssl/aes.h | ||
536 | v3_purp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
537 | v3_purp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
538 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
539 | v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 524 | v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
540 | v3_purp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 525 | v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
541 | v3_purp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 526 | v3_purp.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
542 | v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 527 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
543 | v3_purp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 528 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
544 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
545 | v3_purp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
546 | v3_purp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
547 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 529 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
548 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 530 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
549 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 531 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
550 | v3_purp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 532 | v3_purp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
551 | v3_purp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 533 | v3_purp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
552 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 534 | v3_purp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
553 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 535 | v3_purp.o: ../cryptlib.h v3_purp.c |
554 | v3_purp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 536 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h |
555 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 537 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h |
556 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | ||
557 | v3_skey.o: ../../e_os.h ../../include/openssl/aes.h | ||
558 | v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
559 | v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
560 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
561 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 538 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
562 | v3_skey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 539 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
563 | v3_skey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 540 | v3_skey.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
564 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 541 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
565 | v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | 542 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
566 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
567 | v3_skey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
568 | v3_skey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
569 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 543 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
570 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 544 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
571 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 545 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
572 | v3_skey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 546 | v3_skey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
573 | v3_skey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 547 | v3_skey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
574 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 548 | v3_skey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
575 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 549 | v3_skey.o: ../cryptlib.h v3_skey.c |
576 | v3_skey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 550 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h |
577 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 551 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
578 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c | 552 | v3_sxnet.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
579 | v3_sxnet.o: ../../e_os.h ../../include/openssl/aes.h | 553 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
580 | v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 554 | v3_sxnet.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
581 | v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 555 | v3_sxnet.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
582 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 556 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
583 | v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | ||
584 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
585 | v3_sxnet.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
586 | v3_sxnet.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
587 | v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
588 | v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
589 | v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
590 | v3_sxnet.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
591 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 557 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
592 | v3_sxnet.o: ../../include/openssl/opensslconf.h | 558 | v3_sxnet.o: ../../include/openssl/opensslconf.h |
593 | 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 |
594 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | 560 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
595 | v3_sxnet.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | 561 | v3_sxnet.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
596 | v3_sxnet.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | 562 | v3_sxnet.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
597 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 563 | v3_sxnet.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
598 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 564 | v3_sxnet.o: ../cryptlib.h v3_sxnet.c |
599 | v3_sxnet.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | 565 | v3_utl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
600 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
601 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c | ||
602 | v3_utl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
603 | v3_utl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
604 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 566 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
605 | v3_utl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 567 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
606 | v3_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 568 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
607 | v3_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 569 | v3_utl.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
608 | v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
609 | v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 570 | v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
610 | v3_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 571 | v3_utl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
611 | v3_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | 572 | v3_utl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
612 | v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | 573 | v3_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
613 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 574 | v3_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/safestack.h |
614 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
615 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | ||
616 | v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
617 | v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
618 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
619 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 575 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
620 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 576 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h |
621 | v3_utl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
622 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 577 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
623 | v3_utl.o: ../cryptlib.h v3_utl.c | 578 | v3_utl.o: ../cryptlib.h v3_utl.c |
624 | v3err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 579 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
625 | v3err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | 580 | v3err.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
626 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 581 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
627 | v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h | 582 | v3err.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h |
628 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 583 | v3err.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h |
629 | v3err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 584 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
630 | v3err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
631 | v3err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
632 | v3err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
633 | v3err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
634 | v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
635 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 585 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
636 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 586 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
637 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 587 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
638 | v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | 588 | v3err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
639 | v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | 589 | v3err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
640 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 590 | v3err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
641 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 591 | v3err.o: ../../include/openssl/x509v3.h v3err.c |
642 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
643 | v3err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
644 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | ||
645 | v3err.o: v3err.c | ||