diff options
author | djm <> | 2008-09-06 12:15:54 +0000 |
---|---|---|
committer | djm <> | 2008-09-06 12:15:54 +0000 |
commit | f519f07de9bfb123f2b32aa3965e6f73c8364b80 (patch) | |
tree | ad353b318ee632f73212a174cffac9bb9e573b7c /src | |
parent | 89b182c5db7ea802edfc3ee734b4899b43e13e09 (diff) | |
parent | f1625f274acf5dcd5601f6cb5e29e233b2a441a3 (diff) | |
download | openbsd-f519f07de9bfb123f2b32aa3965e6f73c8364b80.tar.gz openbsd-f519f07de9bfb123f2b32aa3965e6f73c8364b80.tar.bz2 openbsd-f519f07de9bfb123f2b32aa3965e6f73c8364b80.zip |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to 'src')
158 files changed, 19566 insertions, 13851 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 | ||
diff --git a/src/lib/libssl/src/ChangeLog.0_9_7-stable_not-in-head b/src/lib/libssl/src/ChangeLog.0_9_7-stable_not-in-head new file mode 100644 index 0000000000..1203a22158 --- /dev/null +++ b/src/lib/libssl/src/ChangeLog.0_9_7-stable_not-in-head | |||
@@ -0,0 +1,163 @@ | |||
1 | This file, together with ChangeLog.0_9_7-stable_not-in-head_FIPS, | ||
2 | provides a collection of those CVS change log entries for the | ||
3 | 0.9.7 branch (OpenSSL_0_9_7-stable) that do not appear similarly in | ||
4 | 0.9.8-dev (CVS head). | ||
5 | |||
6 | ChangeLog.0_9_7-stable_not-in-head_FIPS - "FIPS" related changes | ||
7 | ChangeLog.0_9_7-stable_not-in-head - everything else | ||
8 | |||
9 | Some obvious false positives have been eliminated: e.g., we do not | ||
10 | care about a simple "make update"; and we don't care about changes | ||
11 | identified to the 0.9.7 branch that were explicitly identified as | ||
12 | backports from head. | ||
13 | |||
14 | Eliminating all other entries (and finally this file and its | ||
15 | compantion), either as false positives or as things that should go | ||
16 | into 0.9.8, remains to be done. Any additional changes to 0.9.7 that | ||
17 | are not immediately put into 0.9.8, but belong there as well, should | ||
18 | be added to the end of this file. | ||
19 | |||
20 | |||
21 | 2002-11-04 17:33 levitte | ||
22 | |||
23 | Changed: | ||
24 | Configure (1.314.2.38), "Exp", lines: +4 -2 | ||
25 | |||
26 | Return my normal debug targets to something not so extreme, and | ||
27 | make the extreme ones special (or 'extreme', if you will :-)). | ||
28 | |||
29 | 2002-12-16 19:17 appro | ||
30 | |||
31 | Changed: | ||
32 | crypto/bn/bn_lcl.h (1.23.2.3), "Exp", lines: +3 -0 | ||
33 | crypto/bn/bn_mul.c (1.28.2.4), "Exp", lines: +84 -445 | ||
34 | |||
35 | This is rollback to 0.9.6h bn_mul.c to address problem reported in | ||
36 | RT#272. | ||
37 | |||
38 | 2003-07-27 15:46 ben | ||
39 | |||
40 | Changed: | ||
41 | crypto/aes/aes.h (1.1.2.5), "Exp", lines: +3 -0 | ||
42 | crypto/aes/aes_cfb.c (1.1.2.4), "Exp", lines: +57 -0 | ||
43 | |||
44 | Add untested CFB-r mode. Will be tested soon. | ||
45 | |||
46 | 2003-07-28 17:07 ben | ||
47 | |||
48 | Changed: | ||
49 | Makefile.org (1.154.2.69), "Exp", lines: +5 -1 | ||
50 | crypto/aes/aes.h (1.1.2.6), "Exp", lines: +3 -0 | ||
51 | crypto/aes/aes_cfb.c (1.1.2.5), "Exp", lines: +19 -0 | ||
52 | crypto/dsa/Makefile.ssl (1.49.2.6), "Exp", lines: +3 -2 | ||
53 | crypto/err/Makefile.ssl (1.48.2.4), "Exp", lines: +17 -16 | ||
54 | crypto/evp/e_aes.c (1.6.2.5), "Exp", lines: +8 -0 | ||
55 | crypto/evp/e_des.c (1.5.2.2), "Exp", lines: +1 -1 | ||
56 | crypto/evp/e_des3.c (1.8.2.3), "Exp", lines: +2 -2 | ||
57 | crypto/evp/evp.h (1.86.2.11), "Exp", lines: +28 -11 | ||
58 | crypto/evp/evp_locl.h (1.7.2.3), "Exp", lines: +2 -2 | ||
59 | crypto/objects/obj_dat.h (1.49.2.13), "Exp", lines: +10 -5 | ||
60 | crypto/objects/obj_mac.h (1.19.2.13), "Exp", lines: +5 -0 | ||
61 | crypto/objects/obj_mac.num (1.15.2.9), "Exp", lines: +1 -0 | ||
62 | crypto/objects/objects.txt (1.20.2.14), "Exp", lines: +4 -0 | ||
63 | fips/Makefile.ssl (1.1.2.3), "Exp", lines: +7 -0 | ||
64 | fips/aes/Makefile.ssl (1.1.2.2), "Exp", lines: +23 -1 | ||
65 | fips/aes/fips_aesavs.c (1.1.2.3), "Exp", lines: +9 -1 | ||
66 | test/Makefile.ssl (1.84.2.30), "Exp", lines: +101 -43 | ||
67 | |||
68 | Add support for partial CFB modes, make tests work, update | ||
69 | dependencies. | ||
70 | |||
71 | 2003-07-29 12:56 ben | ||
72 | |||
73 | Changed: | ||
74 | crypto/aes/aes_cfb.c (1.1.2.6), "Exp", lines: +9 -6 | ||
75 | crypto/evp/c_allc.c (1.8.2.3), "Exp", lines: +1 -0 | ||
76 | crypto/evp/evp_test.c (1.14.2.11), "Exp", lines: +17 -8 | ||
77 | crypto/evp/evptests.txt (1.9.2.2), "Exp", lines: +48 -1 | ||
78 | |||
79 | Working CFB1 and test vectors. | ||
80 | |||
81 | 2003-07-29 15:24 ben | ||
82 | |||
83 | Changed: | ||
84 | crypto/evp/e_aes.c (1.6.2.6), "Exp", lines: +14 -0 | ||
85 | crypto/objects/obj_dat.h (1.49.2.14), "Exp", lines: +15 -5 | ||
86 | crypto/objects/obj_mac.h (1.19.2.14), "Exp", lines: +10 -0 | ||
87 | crypto/objects/obj_mac.num (1.15.2.10), "Exp", lines: +2 -0 | ||
88 | crypto/objects/objects.txt (1.20.2.15), "Exp", lines: +2 -0 | ||
89 | fips/aes/Makefile.ssl (1.1.2.3), "Exp", lines: +1 -1 | ||
90 | fips/aes/fips_aesavs.c (1.1.2.4), "Exp", lines: +34 -19 | ||
91 | |||
92 | The rest of the keysizes for CFB1, working AES AVS test for CFB1. | ||
93 | |||
94 | 2003-07-29 19:05 ben | ||
95 | |||
96 | Changed: | ||
97 | crypto/aes/aes.h (1.1.2.7), "Exp", lines: +3 -0 | ||
98 | crypto/aes/aes_cfb.c (1.1.2.7), "Exp", lines: +14 -0 | ||
99 | crypto/evp/c_allc.c (1.8.2.4), "Exp", lines: +1 -0 | ||
100 | crypto/evp/e_aes.c (1.6.2.7), "Exp", lines: +4 -9 | ||
101 | crypto/evp/evptests.txt (1.9.2.3), "Exp", lines: +48 -0 | ||
102 | crypto/objects/obj_dat.h (1.49.2.15), "Exp", lines: +20 -5 | ||
103 | crypto/objects/obj_mac.h (1.19.2.15), "Exp", lines: +15 -0 | ||
104 | crypto/objects/obj_mac.num (1.15.2.11), "Exp", lines: +3 -0 | ||
105 | crypto/objects/objects.txt (1.20.2.16), "Exp", lines: +3 -0 | ||
106 | fips/aes/fips_aesavs.c (1.1.2.7), "Exp", lines: +11 -0 | ||
107 | |||
108 | AES CFB8. | ||
109 | |||
110 | 2003-07-30 20:30 ben | ||
111 | |||
112 | Changed: | ||
113 | Makefile.org (1.154.2.70), "Exp", lines: +16 -5 | ||
114 | crypto/des/cfb_enc.c (1.7.2.1), "Exp", lines: +2 -1 | ||
115 | crypto/des/des_enc.c (1.11.2.2), "Exp", lines: +4 -0 | ||
116 | crypto/evp/e_aes.c (1.6.2.8), "Exp", lines: +7 -14 | ||
117 | crypto/evp/e_des.c (1.5.2.3), "Exp", lines: +37 -1 | ||
118 | crypto/evp/evp.h (1.86.2.12), "Exp", lines: +6 -0 | ||
119 | crypto/evp/evp_locl.h (1.7.2.4), "Exp", lines: +9 -0 | ||
120 | crypto/objects/obj_dat.h (1.49.2.16), "Exp", lines: +48 -23 | ||
121 | crypto/objects/obj_mac.h (1.19.2.16), "Exp", lines: +31 -6 | ||
122 | crypto/objects/obj_mac.num (1.15.2.12), "Exp", lines: +5 -0 | ||
123 | crypto/objects/objects.txt (1.20.2.17), "Exp", lines: +12 -6 | ||
124 | fips/Makefile.ssl (1.1.2.4), "Exp", lines: +8 -1 | ||
125 | fips/fips_make_sha1 (1.1.2.3), "Exp", lines: +3 -0 | ||
126 | fips/aes/Makefile.ssl (1.1.2.4), "Exp", lines: +1 -1 | ||
127 | fips/des/.cvsignore (1.1.2.1), "Exp", lines: +3 -0 | ||
128 | fips/des/Makefile.ssl (1.1.2.1), "Exp", lines: +96 -0 | ||
129 | fips/des/fingerprint.sha1 (1.1.2.1), "Exp", lines: +2 -0 | ||
130 | fips/des/fips_des_enc.c (1.1.2.1), "Exp", lines: +288 -0 | ||
131 | fips/des/fips_des_locl.h (1.1.2.1), "Exp", lines: +428 -0 | ||
132 | fips/des/fips_desmovs.c (1.1.2.1), "Exp", lines: +659 -0 | ||
133 | |||
134 | Whoops, forgot FIPS DES, also add EVPs for DES CFB1 and 8. | ||
135 | |||
136 | 2003-08-01 12:25 ben | ||
137 | |||
138 | Changed: | ||
139 | crypto/des/cfb_enc.c (1.7.2.2), "Exp", lines: +45 -36 | ||
140 | crypto/evp/c_allc.c (1.8.2.5), "Exp", lines: +2 -0 | ||
141 | crypto/evp/e_des.c (1.5.2.4), "Exp", lines: +8 -3 | ||
142 | crypto/evp/evptests.txt (1.9.2.4), "Exp", lines: +6 -0 | ||
143 | |||
144 | Fix DES CFB-r. | ||
145 | |||
146 | 2003-08-01 12:31 ben | ||
147 | |||
148 | Changed: | ||
149 | crypto/evp/evptests.txt (1.9.2.5), "Exp", lines: +4 -0 | ||
150 | |||
151 | DES CFB8 test. | ||
152 | |||
153 | 2005-04-19 16:21 appro | ||
154 | |||
155 | Changed: | ||
156 | Configure (1.314.2.117), "Exp", lines: +24 -21 | ||
157 | Makefile.org (1.154.2.100), "Exp", lines: +1 -11 | ||
158 | TABLE (1.99.2.52), "Exp", lines: +20 -20 | ||
159 | apps/Makefile (1.1.4.15), "Exp", lines: +1 -1 | ||
160 | test/Makefile (1.1.4.12), "Exp", lines: +1 -1 | ||
161 | |||
162 | Enable shared link on HP-UX. | ||
163 | |||
diff --git a/src/lib/libssl/src/ChangeLog.0_9_7-stable_not-in-head_FIPS b/src/lib/libssl/src/ChangeLog.0_9_7-stable_not-in-head_FIPS new file mode 100644 index 0000000000..1e6c88f77a --- /dev/null +++ b/src/lib/libssl/src/ChangeLog.0_9_7-stable_not-in-head_FIPS | |||
@@ -0,0 +1,1494 @@ | |||
1 | See file ChangeLog.0_9_7-stable_not-in-head for explanations. | ||
2 | This is the "FIPS"-related part. | ||
3 | |||
4 | |||
5 | |||
6 | 2003-07-27 19:00 ben | ||
7 | |||
8 | Changed: | ||
9 | Configure (1.314.2.85), "Exp", lines: +2 -0 | ||
10 | Makefile.org (1.154.2.67), "Exp", lines: +12 -3 | ||
11 | crypto/cryptlib.c (1.32.2.9), "Exp", lines: +5 -0 | ||
12 | crypto/md32_common.h (1.22.2.4), "Exp", lines: +11 -0 | ||
13 | crypto/aes/Makefile.ssl (1.4.2.6), "Exp", lines: +2 -1 | ||
14 | crypto/aes/aes_core.c (1.1.2.4), "Exp", lines: +4 -0 | ||
15 | crypto/des/des.h (1.40.2.4), "Exp", lines: +1 -1 | ||
16 | crypto/des/des_old.c (1.11.2.4), "Exp", lines: +1 -1 | ||
17 | crypto/des/destest.c (1.30.2.6), "Exp", lines: +2 -2 | ||
18 | crypto/des/ecb3_enc.c (1.8.2.1), "Exp", lines: +1 -3 | ||
19 | crypto/dsa/Makefile.ssl (1.49.2.5), "Exp", lines: +7 -4 | ||
20 | crypto/dsa/dsa_ossl.c (1.12.2.4), "Exp", lines: +2 -0 | ||
21 | crypto/dsa/dsa_sign.c (1.10.2.3), "Exp", lines: +12 -0 | ||
22 | crypto/dsa/dsa_vrf.c (1.10.2.3), "Exp", lines: +8 -0 | ||
23 | crypto/engine/engine.h (1.36.2.6), "Exp", lines: +4 -0 | ||
24 | crypto/err/err.h (1.35.2.3), "Exp", lines: +2 -0 | ||
25 | crypto/err/err_all.c (1.17.2.2), "Exp", lines: +4 -0 | ||
26 | crypto/err/openssl.ec (1.11.2.1), "Exp", lines: +1 -0 | ||
27 | crypto/evp/Makefile.ssl (1.64.2.8), "Exp", lines: +8 -7 | ||
28 | crypto/evp/c_all.c (1.7.8.7), "Exp", lines: +1 -0 | ||
29 | crypto/evp/e_aes.c (1.6.2.4), "Exp", lines: +12 -4 | ||
30 | crypto/evp/e_des3.c (1.8.2.2), "Exp", lines: +1 -1 | ||
31 | crypto/evp/evp.h (1.86.2.10), "Exp", lines: +2 -0 | ||
32 | crypto/evp/evp_err.c (1.23.2.1), "Exp", lines: +3 -1 | ||
33 | crypto/md4/Makefile.ssl (1.6.2.4), "Exp", lines: +7 -4 | ||
34 | crypto/md5/Makefile.ssl (1.33.2.7), "Exp", lines: +7 -4 | ||
35 | crypto/rand/Makefile.ssl (1.56.2.4), "Exp", lines: +17 -15 | ||
36 | crypto/rand/md_rand.c (1.69.2.2), "Exp", lines: +9 -0 | ||
37 | crypto/rand/rand.h (1.26.2.5), "Exp", lines: +2 -0 | ||
38 | crypto/rand/rand_err.c (1.6.2.1), "Exp", lines: +3 -1 | ||
39 | crypto/rand/rand_lib.c (1.15.2.2), "Exp", lines: +11 -0 | ||
40 | crypto/ripemd/Makefile.ssl (1.25.2.5), "Exp", lines: +7 -2 | ||
41 | crypto/sha/Makefile.ssl (1.26.2.5), "Exp", lines: +16 -6 | ||
42 | fips/.cvsignore (1.1.2.1), "Exp", lines: +1 -0 | ||
43 | fips/Makefile.ssl (1.1.2.1), "Exp", lines: +155 -0 | ||
44 | fips/fingerprint.sha1 (1.1.2.1), "Exp", lines: +3 -0 | ||
45 | fips/fips.c (1.1.2.1), "Exp", lines: +74 -0 | ||
46 | fips/fips.h (1.1.2.1), "Exp", lines: +85 -0 | ||
47 | fips/fips_check_sha1 (1.1.2.1), "Exp", lines: +7 -0 | ||
48 | fips/fips_err.c (1.1.2.1), "Exp", lines: +96 -0 | ||
49 | fips/fips_make_sha1 (1.1.2.1), "Exp", lines: +21 -0 | ||
50 | fips/lib (1.1.2.1), "Exp", lines: +0 -0 | ||
51 | fips/aes/.cvsignore (1.1.2.1), "Exp", lines: +4 -0 | ||
52 | fips/aes/Makefile.ssl (1.1.2.1), "Exp", lines: +95 -0 | ||
53 | fips/aes/fingerprint.sha1 (1.1.2.1), "Exp", lines: +2 -0 | ||
54 | fips/aes/fips_aes_core.c (1.1.2.1), "Exp", lines: +1260 -0 | ||
55 | fips/aes/fips_aes_locl.h (1.1.2.1), "Exp", lines: +85 -0 | ||
56 | fips/aes/fips_aesavs.c (1.1.2.1), "Exp", lines: +896 -0 | ||
57 | fips/dsa/.cvsignore (1.1.2.1), "Exp", lines: +2 -0 | ||
58 | fips/dsa/Makefile.ssl (1.1.2.1), "Exp", lines: +95 -0 | ||
59 | fips/dsa/fingerprint.sha1 (1.1.2.1), "Exp", lines: +1 -0 | ||
60 | fips/dsa/fips_dsa_ossl.c (1.1.2.1), "Exp", lines: +366 -0 | ||
61 | fips/dsa/fips_dsatest.c (1.1.2.1), "Exp", lines: +252 -0 | ||
62 | fips/rand/.cvsignore (1.1.2.1), "Exp", lines: +2 -0 | ||
63 | fips/rand/Makefile.ssl (1.1.2.1), "Exp", lines: +94 -0 | ||
64 | fips/rand/fingerprint.sha1 (1.1.2.1), "Exp", lines: +2 -0 | ||
65 | fips/rand/fips_rand.c (1.1.2.1), "Exp", lines: +236 -0 | ||
66 | fips/rand/fips_rand.h (1.1.2.1), "Exp", lines: +55 -0 | ||
67 | fips/rand/fips_randtest.c (1.1.2.1), "Exp", lines: +348 -0 | ||
68 | fips/sha1/.cvsignore (1.1.2.1), "Exp", lines: +3 -0 | ||
69 | fips/sha1/Makefile.ssl (1.1.2.1), "Exp", lines: +94 -0 | ||
70 | fips/sha1/fingerprint.sha1 (1.1.2.1), "Exp", lines: +3 -0 | ||
71 | fips/sha1/fips_md32_common.h (1.1.2.1), "Exp", lines: +637 -0 | ||
72 | fips/sha1/fips_sha1dgst.c (1.1.2.1), "Exp", lines: +76 -0 | ||
73 | fips/sha1/fips_sha1test.c (1.1.2.1), "Exp", lines: +128 -0 | ||
74 | fips/sha1/fips_sha_locl.h (1.1.2.1), "Exp", lines: +472 -0 | ||
75 | fips/sha1/fips_standalone_sha1.c (1.1.2.1), "Exp", lines: +101 -0 | ||
76 | fips/sha1/standalone.sha1 (1.1.2.1), "Exp", lines: +4 -0 | ||
77 | test/Makefile.ssl (1.84.2.29), "Exp", lines: +81 -13 | ||
78 | util/mkerr.pl (1.18.2.4), "Exp", lines: +2 -1 | ||
79 | |||
80 | Unfinished FIPS stuff for review/improvement. | ||
81 | |||
82 | 2003-07-27 19:19 ben | ||
83 | |||
84 | Changed: | ||
85 | fips/fips_check_sha1 (1.1.2.2), "Exp", lines: +1 -1 | ||
86 | |||
87 | Use unified diff. | ||
88 | |||
89 | 2003-07-27 19:23 ben | ||
90 | |||
91 | Changed: | ||
92 | fips/Makefile.ssl (1.1.2.2), "Exp", lines: +3 -3 | ||
93 | fips/fingerprint.sha1 (1.1.2.2), "Exp", lines: +2 -1 | ||
94 | fips/fips_make_sha1 (1.1.2.2), "Exp", lines: +1 -1 | ||
95 | |||
96 | Build in non-FIPS mode. | ||
97 | |||
98 | 2003-07-27 23:13 ben | ||
99 | |||
100 | Changed: | ||
101 | Makefile.org (1.154.2.68), "Exp", lines: +1 -1 | ||
102 | fips/fips_check_sha1 (1.1.2.3), "Exp", lines: +2 -1 | ||
103 | fips/aes/fips_aesavs.c (1.1.2.2), "Exp", lines: +2 -0 | ||
104 | fips/dsa/fips_dsa_ossl.c (1.1.2.2), "Exp", lines: +8 -0 | ||
105 | fips/dsa/fips_dsatest.c (1.1.2.2), "Exp", lines: +2 -1 | ||
106 | fips/sha1/fingerprint.sha1 (1.1.2.2), "Exp", lines: +1 -1 | ||
107 | fips/sha1/fips_sha1dgst.c (1.1.2.2), "Exp", lines: +5 -1 | ||
108 | fips/sha1/fips_standalone_sha1.c (1.1.2.2), "Exp", lines: +2 -0 | ||
109 | fips/sha1/standalone.sha1 (1.1.2.2), "Exp", lines: +1 -1 | ||
110 | |||
111 | Build when not FIPS. | ||
112 | |||
113 | 2003-07-28 11:56 ben | ||
114 | |||
115 | Changed: | ||
116 | fips/dsa/fingerprint.sha1 (1.1.2.2), "Exp", lines: +1 -1 | ||
117 | fips/sha1/standalone.sha1 (1.1.2.3), "Exp", lines: +1 -1 | ||
118 | |||
119 | New fingerprints. | ||
120 | |||
121 | 2003-07-29 16:06 ben | ||
122 | |||
123 | Changed: | ||
124 | fips/aes/fips_aesavs.c (1.1.2.5), "Exp", lines: +295 -303 | ||
125 | |||
126 | Reformat. | ||
127 | |||
128 | 2003-07-29 16:34 ben | ||
129 | |||
130 | Changed: | ||
131 | fips/aes/fips_aesavs.c (1.1.2.6), "Exp", lines: +43 -17 | ||
132 | |||
133 | MMT for CFB1 | ||
134 | |||
135 | 2003-07-29 17:17 ben | ||
136 | |||
137 | Changed: | ||
138 | fips/fips_err_wrapper.c (1.1.2.1), "Exp", lines: +5 -0 | ||
139 | fips/sha1/sha1hashes.txt (1.1.2.1), "Exp", lines: +342 -0 | ||
140 | fips/sha1/sha1vectors.txt (1.1.2.1), "Exp", lines: +2293 -0 | ||
141 | |||
142 | Missing files. | ||
143 | |||
144 | 2003-07-31 23:30 levitte | ||
145 | |||
146 | Changed: | ||
147 | Makefile.org (1.154.2.71), "Exp", lines: +2 -0 | ||
148 | |||
149 | If FDIRS is to be treated like SDIRS, let's not forget to | ||
150 | initialize it in Makefile.org. | ||
151 | |||
152 | 2003-07-31 23:41 levitte | ||
153 | |||
154 | Changed: | ||
155 | fips/sha1/fips_sha1test.c (1.1.2.2), "Exp", lines: +3 -3 | ||
156 | |||
157 | No C++ comments in C programs! | ||
158 | |||
159 | 2003-08-01 15:07 steve | ||
160 | |||
161 | Changed: | ||
162 | fips/aes/fips_aesavs.c (1.1.2.8), "Exp", lines: +3 -3 | ||
163 | |||
164 | Replace C++ style comments. | ||
165 | |||
166 | 2003-08-03 14:22 ben | ||
167 | |||
168 | Changed: | ||
169 | fips/des/fips_desmovs.c (1.1.2.2), "Exp", lines: +55 -37 | ||
170 | |||
171 | Make tests work (CFB1 still doesn't produce the right answers, | ||
172 | strangely). | ||
173 | |||
174 | 2003-08-08 12:08 levitte | ||
175 | |||
176 | Changed: | ||
177 | fips/des/fips_des_enc.c (1.1.2.2), "Exp", lines: +9 -0 | ||
178 | |||
179 | Avoid clashing with the regular DES functions when not compiling | ||
180 | with -DFIPS. This is basically only visible when building with | ||
181 | shared library supoort... | ||
182 | |||
183 | 2003-08-11 11:36 levitte | ||
184 | |||
185 | Deleted: | ||
186 | fips/sha1/.cvsignore (1.1.2.2) | ||
187 | fips/sha1/Makefile.ssl (1.1.2.3) | ||
188 | fips/sha1/fingerprint.sha1 (1.1.2.3) | ||
189 | fips/sha1/fips_md32_common.h (1.1.2.2) | ||
190 | fips/sha1/fips_sha1dgst.c (1.1.2.3) | ||
191 | fips/sha1/fips_sha1test.c (1.1.2.3) | ||
192 | fips/sha1/fips_sha_locl.h (1.1.2.2) | ||
193 | fips/sha1/fips_standalone_sha1.c (1.1.2.3) | ||
194 | fips/sha1/sha1hashes.txt (1.1.2.2) | ||
195 | fips/sha1/sha1vectors.txt (1.1.2.2) | ||
196 | fips/sha1/standalone.sha1 (1.1.2.4) | ||
197 | fips/dsa/.cvsignore (1.1.2.2) | ||
198 | fips/dsa/Makefile.ssl (1.1.2.2) | ||
199 | fips/dsa/fingerprint.sha1 (1.1.2.3) | ||
200 | fips/dsa/fips_dsa_ossl.c (1.1.2.3) | ||
201 | fips/dsa/fips_dsatest.c (1.1.2.3) | ||
202 | fips/rand/.cvsignore (1.1.2.2) | ||
203 | fips/rand/Makefile.ssl (1.1.2.2) | ||
204 | fips/rand/fingerprint.sha1 (1.1.2.2) | ||
205 | fips/rand/fips_rand.c (1.1.2.2) | ||
206 | fips/rand/fips_rand.h (1.1.2.2) | ||
207 | fips/rand/fips_randtest.c (1.1.2.2) | ||
208 | fips/des/.cvsignore (1.1.2.2) | ||
209 | fips/des/Makefile.ssl (1.1.2.3) | ||
210 | fips/des/fingerprint.sha1 (1.1.2.2) | ||
211 | fips/des/fips_des_enc.c (1.1.2.3) | ||
212 | fips/des/fips_des_locl.h (1.1.2.2) | ||
213 | fips/des/fips_desmovs.c (1.1.2.3) | ||
214 | fips/aes/.cvsignore (1.1.2.2) | ||
215 | fips/aes/Makefile.ssl (1.1.2.5) | ||
216 | fips/aes/fingerprint.sha1 (1.1.2.2) | ||
217 | fips/aes/fips_aes_core.c (1.1.2.2) | ||
218 | fips/aes/fips_aes_locl.h (1.1.2.2) | ||
219 | fips/aes/fips_aesavs.c (1.1.2.9) | ||
220 | fips/.cvsignore (1.1.2.2) | ||
221 | fips/Makefile.ssl (1.1.2.6) | ||
222 | fips/fingerprint.sha1 (1.1.2.3) | ||
223 | fips/fips.c (1.1.2.2) | ||
224 | fips/fips.h (1.1.2.2) | ||
225 | fips/fips_check_sha1 (1.1.2.4) | ||
226 | fips/fips_err.c (1.1.2.2) | ||
227 | fips/fips_err_wrapper.c (1.1.2.2) | ||
228 | fips/fips_make_sha1 (1.1.2.4) | ||
229 | fips/lib (1.1.2.2) | ||
230 | Changed: | ||
231 | util/libeay.num (1.173.2.16), "Exp", lines: +11 -38 | ||
232 | util/mkerr.pl (1.18.2.5), "Exp", lines: +1 -2 | ||
233 | test/Makefile.ssl (1.84.2.31), "Exp", lines: +54 -180 | ||
234 | crypto/ripemd/Makefile.ssl (1.25.2.6), "Exp", lines: +2 -7 | ||
235 | crypto/sha/Makefile.ssl (1.26.2.6), "Exp", lines: +6 -16 | ||
236 | crypto/rand/Makefile.ssl (1.56.2.5), "Exp", lines: +15 -17 | ||
237 | crypto/rand/md_rand.c (1.69.2.3), "Exp", lines: +0 -9 | ||
238 | crypto/rand/rand.h (1.26.2.6), "Exp", lines: +0 -2 | ||
239 | crypto/rand/rand_err.c (1.6.2.2), "Exp", lines: +1 -3 | ||
240 | crypto/rand/rand_lib.c (1.15.2.3), "Exp", lines: +0 -11 | ||
241 | crypto/objects/obj_dat.h (1.49.2.18), "Exp", lines: +3 -27 | ||
242 | crypto/objects/obj_mac.h (1.19.2.18), "Exp", lines: +0 -32 | ||
243 | crypto/objects/obj_mac.num (1.15.2.14), "Exp", lines: +0 -8 | ||
244 | crypto/objects/objects.txt (1.20.2.19), "Exp", lines: +0 -11 | ||
245 | crypto/md4/Makefile.ssl (1.6.2.5), "Exp", lines: +4 -7 | ||
246 | crypto/md5/Makefile.ssl (1.33.2.8), "Exp", lines: +4 -7 | ||
247 | crypto/evp/Makefile.ssl (1.64.2.9), "Exp", lines: +7 -8 | ||
248 | crypto/evp/c_allc.c (1.8.2.6), "Exp", lines: +0 -4 | ||
249 | crypto/evp/e_aes.c (1.6.2.9), "Exp", lines: +4 -22 | ||
250 | crypto/evp/e_des.c (1.5.2.5), "Exp", lines: +2 -43 | ||
251 | crypto/evp/e_des3.c (1.8.2.4), "Exp", lines: +3 -3 | ||
252 | crypto/evp/evp.h (1.86.2.13), "Exp", lines: +11 -36 | ||
253 | crypto/evp/evp_err.c (1.23.2.2), "Exp", lines: +1 -3 | ||
254 | crypto/evp/evp_lib.c (1.6.8.3), "Exp", lines: +0 -24 | ||
255 | crypto/evp/evp_locl.h (1.7.2.5), "Exp", lines: +2 -11 | ||
256 | crypto/evp/evp_test.c (1.14.2.12), "Exp", lines: +8 -17 | ||
257 | crypto/evp/evptests.txt (1.9.2.6), "Exp", lines: +1 -106 | ||
258 | crypto/dsa/Makefile.ssl (1.49.2.7), "Exp", lines: +6 -10 | ||
259 | crypto/dsa/dsa_ossl.c (1.12.2.5), "Exp", lines: +0 -2 | ||
260 | crypto/dsa/dsa_sign.c (1.10.2.4), "Exp", lines: +0 -12 | ||
261 | crypto/dsa/dsa_vrf.c (1.10.2.4), "Exp", lines: +0 -8 | ||
262 | crypto/err/Makefile.ssl (1.48.2.5), "Exp", lines: +16 -17 | ||
263 | crypto/err/err.h (1.35.2.4), "Exp", lines: +0 -2 | ||
264 | crypto/err/err_all.c (1.17.2.3), "Exp", lines: +0 -4 | ||
265 | crypto/err/openssl.ec (1.11.2.2), "Exp", lines: +0 -1 | ||
266 | crypto/des/des.h (1.40.2.5), "Exp", lines: +1 -1 | ||
267 | crypto/des/des_enc.c (1.11.2.3), "Exp", lines: +0 -4 | ||
268 | crypto/des/des_old.c (1.11.2.5), "Exp", lines: +1 -1 | ||
269 | crypto/des/destest.c (1.30.2.7), "Exp", lines: +2 -2 | ||
270 | crypto/des/ecb3_enc.c (1.8.2.2), "Exp", lines: +3 -1 | ||
271 | crypto/aes/Makefile.ssl (1.4.2.7), "Exp", lines: +1 -2 | ||
272 | crypto/aes/aes.h (1.1.2.8), "Exp", lines: +0 -9 | ||
273 | crypto/aes/aes_cfb.c (1.1.2.8), "Exp", lines: +0 -93 | ||
274 | crypto/aes/aes_core.c (1.1.2.5), "Exp", lines: +0 -4 | ||
275 | crypto/cryptlib.c (1.32.2.10), "Exp", lines: +0 -5 | ||
276 | crypto/md32_common.h (1.22.2.5), "Exp", lines: +0 -11 | ||
277 | Configure (1.314.2.86), "Exp", lines: +0 -2 | ||
278 | Makefile.org (1.154.2.72), "Exp", lines: +8 -34 | ||
279 | TABLE (1.99.2.30), "Exp", lines: +0 -50 | ||
280 | |||
281 | A new branch for FIPS-related changes has been created with the | ||
282 | name OpenSSL-fips-0_9_7-stable. | ||
283 | |||
284 | Since the 0.9.7-stable branch is supposed to be in freeze | ||
285 | and should only contain bug corrections, this change removes the | ||
286 | FIPS changes from that branch. | ||
287 | |||
288 | 2004-05-11 14:44 ben | ||
289 | |||
290 | Deleted: | ||
291 | apps/Makefile.ssl (1.100.2.27) | ||
292 | crypto/Makefile.ssl (1.84.2.12) | ||
293 | crypto/aes/Makefile.ssl (1.4.2.9) | ||
294 | crypto/asn1/Makefile.ssl (1.77.2.7) | ||
295 | crypto/bf/Makefile.ssl (1.25.2.6) | ||
296 | crypto/bio/Makefile.ssl (1.52.2.4) | ||
297 | crypto/bn/Makefile.ssl (1.65.2.9) | ||
298 | crypto/buffer/Makefile.ssl (1.32.2.4) | ||
299 | crypto/cast/Makefile.ssl (1.31.2.6) | ||
300 | crypto/comp/Makefile.ssl (1.32.2.4) | ||
301 | crypto/conf/Makefile.ssl (1.38.2.8) | ||
302 | crypto/des/Makefile.ssl (1.61.2.13) | ||
303 | crypto/dh/Makefile.ssl (1.43.2.5) | ||
304 | crypto/dsa/Makefile.ssl (1.49.2.9) | ||
305 | crypto/dso/Makefile.ssl (1.11.2.4) | ||
306 | crypto/ec/Makefile.ssl (1.7.2.4) | ||
307 | crypto/engine/Makefile.ssl (1.30.2.13) | ||
308 | crypto/err/Makefile.ssl (1.48.2.7) | ||
309 | crypto/evp/Makefile.ssl (1.64.2.12) | ||
310 | crypto/hmac/Makefile.ssl (1.33.2.6) | ||
311 | crypto/idea/Makefile.ssl (1.20.2.4) | ||
312 | crypto/krb5/Makefile.ssl (1.5.2.6) | ||
313 | crypto/lhash/Makefile.ssl (1.28.2.4) | ||
314 | crypto/md2/Makefile.ssl (1.29.2.5) | ||
315 | crypto/md4/Makefile.ssl (1.6.2.7) | ||
316 | crypto/md5/Makefile.ssl (1.33.2.10) | ||
317 | crypto/mdc2/Makefile.ssl (1.30.2.4) | ||
318 | crypto/objects/Makefile.ssl (1.46.2.6) | ||
319 | crypto/ocsp/Makefile.ssl (1.19.2.7) | ||
320 | crypto/pem/Makefile.ssl (1.51.2.5) | ||
321 | crypto/pkcs12/Makefile.ssl (1.37.2.5) | ||
322 | crypto/pkcs7/Makefile.ssl (1.47.2.5) | ||
323 | crypto/rand/Makefile.ssl (1.56.2.8) | ||
324 | crypto/rc2/Makefile.ssl (1.20.2.4) | ||
325 | crypto/rc4/Makefile.ssl (1.25.2.6) | ||
326 | crypto/rc5/Makefile.ssl (1.22.2.6) | ||
327 | crypto/ripemd/Makefile.ssl (1.25.2.9) | ||
328 | crypto/rsa/Makefile.ssl (1.53.2.6) | ||
329 | crypto/sha/Makefile.ssl (1.26.2.9) | ||
330 | crypto/stack/Makefile.ssl (1.28.2.4) | ||
331 | crypto/txt_db/Makefile.ssl (1.26.2.4) | ||
332 | crypto/ui/Makefile.ssl (1.10.2.6) | ||
333 | crypto/x509/Makefile.ssl (1.56.2.5) | ||
334 | crypto/x509v3/Makefile.ssl (1.62.2.5) | ||
335 | ssl/Makefile.ssl (1.53.2.11) | ||
336 | test/Makefile.ssl (1.84.2.36) | ||
337 | tools/Makefile.ssl (1.9.2.4) | ||
338 | Changed: | ||
339 | .cvsignore (1.7.6.2), "Exp", lines: +2 -1 | ||
340 | Configure (1.314.2.92), "Exp", lines: +38 -8 | ||
341 | FAQ (1.61.2.31), "Exp", lines: +1 -1 | ||
342 | INSTALL (1.45.2.9), "Exp", lines: +2 -2 | ||
343 | INSTALL.W32 (1.30.2.14), "Exp", lines: +9 -4 | ||
344 | Makefile.org (1.154.2.78), "Exp", lines: +51 -19 | ||
345 | PROBLEMS (1.4.2.10), "Exp", lines: +2 -2 | ||
346 | e_os.h (1.56.2.17), "Exp", lines: +20 -1 | ||
347 | apps/.cvsignore (1.5.8.1), "Exp", lines: +1 -0 | ||
348 | apps/Makefile (1.1.4.1), "Exp", lines: +1147 -0 | ||
349 | apps/apps.c (1.49.2.27), "Exp", lines: +0 -10 | ||
350 | apps/ca.c (1.102.2.31), "Exp", lines: +0 -10 | ||
351 | apps/dgst.c (1.23.2.10), "Exp", lines: +39 -11 | ||
352 | apps/openssl.c (1.48.2.9), "Exp", lines: +19 -0 | ||
353 | crypto/Makefile (1.1.4.1), "Exp", lines: +217 -0 | ||
354 | crypto/cryptlib.c (1.32.2.11), "Exp", lines: +5 -0 | ||
355 | crypto/crypto-lib.com (1.53.2.12), "Exp", lines: +1 -1 | ||
356 | crypto/md32_common.h (1.22.2.6), "Exp", lines: +12 -0 | ||
357 | crypto/aes/Makefile (1.1.4.1), "Exp", lines: +102 -0 | ||
358 | crypto/aes/aes.h (1.1.2.9), "Exp", lines: +9 -0 | ||
359 | crypto/aes/aes_cfb.c (1.1.2.9), "Exp", lines: +93 -0 | ||
360 | crypto/aes/aes_core.c (1.1.2.6), "Exp", lines: +4 -0 | ||
361 | crypto/asn1/Makefile (1.1.4.1), "Exp", lines: +1150 -0 | ||
362 | crypto/bf/Makefile (1.1.4.1), "Exp", lines: +113 -0 | ||
363 | crypto/bio/Makefile (1.1.4.1), "Exp", lines: +214 -0 | ||
364 | crypto/bio/bio.h (1.56.2.6), "Exp", lines: +1 -0 | ||
365 | crypto/bn/Makefile (1.1.4.1), "Exp", lines: +324 -0 | ||
366 | crypto/bn/bntest.c (1.55.2.4), "Exp", lines: +1 -1 | ||
367 | crypto/buffer/Makefile (1.1.4.1), "Exp", lines: +92 -0 | ||
368 | crypto/cast/Makefile (1.1.4.1), "Exp", lines: +118 -0 | ||
369 | crypto/cast/asm/.cvsignore (1.2.8.1), "Exp", lines: +1 -0 | ||
370 | crypto/comp/Makefile (1.1.4.1), "Exp", lines: +112 -0 | ||
371 | crypto/conf/Makefile (1.1.4.1), "Exp", lines: +181 -0 | ||
372 | crypto/des/Makefile (1.1.4.1), "Exp", lines: +314 -0 | ||
373 | crypto/des/cfb64ede.c (1.6.2.4), "Exp", lines: +111 -0 | ||
374 | crypto/des/des.h (1.40.2.6), "Exp", lines: +5 -1 | ||
375 | crypto/des/des_enc.c (1.11.2.4), "Exp", lines: +8 -0 | ||
376 | crypto/des/des_old.c (1.11.2.6), "Exp", lines: +1 -1 | ||
377 | crypto/des/destest.c (1.30.2.8), "Exp", lines: +2 -2 | ||
378 | crypto/des/ecb3_enc.c (1.8.2.3), "Exp", lines: +1 -3 | ||
379 | crypto/des/set_key.c (1.18.2.2), "Exp", lines: +4 -0 | ||
380 | crypto/dh/Makefile (1.1.4.1), "Exp", lines: +131 -0 | ||
381 | crypto/dsa/Makefile (1.1.4.1), "Exp", lines: +173 -0 | ||
382 | crypto/dsa/dsa_gen.c (1.19.2.1), "Exp", lines: +4 -1 | ||
383 | crypto/dsa/dsa_key.c (1.9.2.1), "Exp", lines: +2 -0 | ||
384 | crypto/dsa/dsa_ossl.c (1.12.2.6), "Exp", lines: +2 -0 | ||
385 | crypto/dsa/dsa_sign.c (1.10.2.5), "Exp", lines: +12 -0 | ||
386 | crypto/dsa/dsa_vrf.c (1.10.2.5), "Exp", lines: +8 -0 | ||
387 | crypto/dso/Makefile (1.1.4.1), "Exp", lines: +140 -0 | ||
388 | crypto/ec/Makefile (1.1.4.1), "Exp", lines: +126 -0 | ||
389 | crypto/engine/Makefile (1.1.4.1), "Exp", lines: +536 -0 | ||
390 | crypto/engine/hw_cryptodev.c (1.1.2.6), "Exp", lines: +6 -2 | ||
391 | crypto/err/Makefile (1.1.4.1), "Exp", lines: +118 -0 | ||
392 | crypto/err/err.h (1.35.2.6), "Exp", lines: +2 -0 | ||
393 | crypto/err/err_all.c (1.17.2.4), "Exp", lines: +4 -0 | ||
394 | crypto/err/openssl.ec (1.11.2.3), "Exp", lines: +1 -0 | ||
395 | crypto/evp/Makefile (1.1.4.1), "Exp", lines: +1057 -0 | ||
396 | crypto/evp/bio_md.c (1.11.2.1), "Exp", lines: +6 -0 | ||
397 | crypto/evp/c_allc.c (1.8.2.7), "Exp", lines: +8 -0 | ||
398 | crypto/evp/e_aes.c (1.6.2.10), "Exp", lines: +22 -4 | ||
399 | crypto/evp/e_des.c (1.5.2.8), "Exp", lines: +36 -3 | ||
400 | crypto/evp/e_des3.c (1.8.2.7), "Exp", lines: +43 -4 | ||
401 | crypto/evp/evp.h (1.86.2.15), "Exp", lines: +39 -11 | ||
402 | crypto/evp/evp_err.c (1.23.2.3), "Exp", lines: +3 -1 | ||
403 | crypto/evp/evp_lib.c (1.6.8.4), "Exp", lines: +24 -0 | ||
404 | crypto/evp/evp_locl.h (1.7.2.6), "Exp", lines: +11 -2 | ||
405 | crypto/evp/evp_test.c (1.14.2.13), "Exp", lines: +17 -8 | ||
406 | crypto/evp/evptests.txt (1.9.2.7), "Exp", lines: +106 -1 | ||
407 | crypto/hmac/Makefile (1.1.4.1), "Exp", lines: +99 -0 | ||
408 | crypto/idea/Makefile (1.1.4.1), "Exp", lines: +89 -0 | ||
409 | crypto/krb5/Makefile (1.1.4.1), "Exp", lines: +88 -0 | ||
410 | crypto/lhash/Makefile (1.1.4.1), "Exp", lines: +91 -0 | ||
411 | crypto/md2/Makefile (1.1.4.1), "Exp", lines: +91 -0 | ||
412 | crypto/md4/Makefile (1.1.4.1), "Exp", lines: +93 -0 | ||
413 | crypto/md5/Makefile (1.1.4.1), "Exp", lines: +129 -0 | ||
414 | crypto/mdc2/Makefile (1.1.4.1), "Exp", lines: +96 -0 | ||
415 | crypto/objects/Makefile (1.1.4.1), "Exp", lines: +121 -0 | ||
416 | crypto/objects/obj_dat.h (1.49.2.19), "Exp", lines: +33 -3 | ||
417 | crypto/objects/obj_mac.h (1.19.2.19), "Exp", lines: +40 -0 | ||
418 | crypto/objects/obj_mac.num (1.15.2.15), "Exp", lines: +10 -0 | ||
419 | crypto/objects/objects.txt (1.20.2.20), "Exp", lines: +13 -0 | ||
420 | crypto/ocsp/Makefile (1.1.4.1), "Exp", lines: +291 -0 | ||
421 | crypto/pem/Makefile (1.1.4.1), "Exp", lines: +334 -0 | ||
422 | crypto/pkcs12/Makefile (1.1.4.1), "Exp", lines: +415 -0 | ||
423 | crypto/pkcs7/Makefile (1.1.4.1), "Exp", lines: +241 -0 | ||
424 | crypto/rand/Makefile (1.1.4.1), "Exp", lines: +196 -0 | ||
425 | crypto/rand/md_rand.c (1.69.2.4), "Exp", lines: +9 -0 | ||
426 | crypto/rand/rand.h (1.26.2.7), "Exp", lines: +3 -0 | ||
427 | crypto/rand/rand_err.c (1.6.2.3), "Exp", lines: +4 -1 | ||
428 | crypto/rand/rand_lib.c (1.15.2.4), "Exp", lines: +11 -0 | ||
429 | crypto/rc2/Makefile (1.1.4.1), "Exp", lines: +89 -0 | ||
430 | crypto/rc4/Makefile (1.1.4.1), "Exp", lines: +108 -0 | ||
431 | crypto/rc5/Makefile (1.1.4.1), "Exp", lines: +106 -0 | ||
432 | crypto/ripemd/Makefile (1.1.4.1), "Exp", lines: +111 -0 | ||
433 | crypto/rsa/Makefile (1.1.4.1), "Exp", lines: +239 -0 | ||
434 | crypto/rsa/rsa_eay.c (1.28.2.9), "Exp", lines: +1 -1 | ||
435 | crypto/rsa/rsa_gen.c (1.8.6.1), "Exp", lines: +3 -0 | ||
436 | crypto/sha/Makefile (1.1.4.1), "Exp", lines: +118 -0 | ||
437 | crypto/sha/sha1dgst.c (1.21.2.1), "Exp", lines: +8 -0 | ||
438 | crypto/stack/Makefile (1.1.4.1), "Exp", lines: +86 -0 | ||
439 | crypto/txt_db/Makefile (1.1.4.1), "Exp", lines: +86 -0 | ||
440 | crypto/ui/Makefile (1.1.4.1), "Exp", lines: +115 -0 | ||
441 | crypto/x509/Makefile (1.1.4.1), "Exp", lines: +592 -0 | ||
442 | crypto/x509v3/Makefile (1.1.4.1), "Exp", lines: +601 -0 | ||
443 | fips/Makefile (1.1.4.1), "Exp", lines: +202 -0 | ||
444 | fips/fingerprint.sha1 (1.1.2.4), "Exp", lines: +4 -4 | ||
445 | fips/fips.c (1.1.2.3), "Exp", lines: +120 -5 | ||
446 | fips/fips.h (1.1.2.3), "Exp", lines: +42 -2 | ||
447 | fips/fips_check_sha1 (1.1.2.5), "Exp", lines: +2 -2 | ||
448 | fips/fips_err.h (1.1.4.1), "Exp", lines: +117 -0 | ||
449 | fips/fips_err_wrapper.c (1.1.2.3), "Exp", lines: +4 -2 | ||
450 | fips/fips_locl.h (1.1.4.1), "Exp", lines: +62 -0 | ||
451 | fips/fips_make_sha1 (1.1.2.5), "Exp", lines: +9 -6 | ||
452 | fips/fips_test_suite.c (1.1.4.1), "Exp", lines: +302 -0 | ||
453 | fips/openssl_fips_fingerprint (1.1.4.1), "Exp", lines: +25 -0 | ||
454 | fips/aes/Makefile (1.1.4.1), "Exp", lines: +131 -0 | ||
455 | fips/aes/fingerprint.sha1 (1.1.2.3), "Exp", lines: +3 -2 | ||
456 | fips/aes/fips_aes_core.c (1.1.2.3), "Exp", lines: +5 -2 | ||
457 | fips/aes/fips_aes_locl.h (1.1.2.3), "Exp", lines: +0 -0 | ||
458 | fips/aes/fips_aes_selftest.c (1.1.4.1), "Exp", lines: +112 -0 | ||
459 | fips/aes/fips_aesavs.c (1.1.2.10), "Exp", lines: +12 -6 | ||
460 | fips/des/Makefile (1.1.4.1), "Exp", lines: +155 -0 | ||
461 | fips/des/fingerprint.sha1 (1.1.2.3), "Exp", lines: +5 -2 | ||
462 | fips/des/fips_des_enc.c (1.1.2.4), "Exp", lines: +16 -3 | ||
463 | fips/des/fips_des_locl.h (1.1.2.3), "Exp", lines: +1 -1 | ||
464 | fips/des/fips_des_selftest.c (1.1.4.1), "Exp", lines: +200 -0 | ||
465 | fips/des/fips_desmovs.c (1.1.2.4), "Exp", lines: +186 -79 | ||
466 | fips/des/fips_set_key.c (1.1.4.1), "Exp", lines: +415 -0 | ||
467 | fips/des/asm/fips-dx86-elf.s (1.1.4.1), "Exp", lines: +2697 -0 | ||
468 | fips/dsa/Makefile (1.1.4.1), "Exp", lines: +159 -0 | ||
469 | fips/dsa/fingerprint.sha1 (1.1.2.4), "Exp", lines: +3 -1 | ||
470 | fips/dsa/fips_dsa_gen.c (1.1.4.1), "Exp", lines: +373 -0 | ||
471 | fips/dsa/fips_dsa_ossl.c (1.1.2.4), "Exp", lines: +16 -3 | ||
472 | fips/dsa/fips_dsa_selftest.c (1.1.4.1), "Exp", lines: +168 -0 | ||
473 | fips/dsa/fips_dsatest.c (1.1.2.4), "Exp", lines: +10 -6 | ||
474 | fips/dsa/fips_dssvs.c (1.1.4.1), "Exp", lines: +306 -0 | ||
475 | fips/rand/Makefile (1.1.4.1), "Exp", lines: +104 -0 | ||
476 | fips/rand/fingerprint.sha1 (1.1.2.3), "Exp", lines: +2 -2 | ||
477 | fips/rand/fips_rand.c (1.1.2.3), "Exp", lines: +60 -10 | ||
478 | fips/rand/fips_rand.h (1.1.2.3), "Exp", lines: +19 -1 | ||
479 | fips/rand/fips_randtest.c (1.1.2.3), "Exp", lines: +31 -10 | ||
480 | fips/rsa/Makefile (1.1.4.1), "Exp", lines: +112 -0 | ||
481 | fips/rsa/fingerprint.sha1 (1.1.4.1), "Exp", lines: +3 -0 | ||
482 | fips/rsa/fips_rsa_eay.c (1.1.4.1), "Exp", lines: +735 -0 | ||
483 | fips/rsa/fips_rsa_gen.c (1.1.4.1), "Exp", lines: +249 -0 | ||
484 | fips/rsa/fips_rsa_selftest.c (1.1.4.1), "Exp", lines: +207 -0 | ||
485 | fips/sha1/.cvsignore (1.1.2.3), "Exp", lines: +1 -2 | ||
486 | fips/sha1/Makefile (1.1.4.1), "Exp", lines: +158 -0 | ||
487 | fips/sha1/fingerprint.sha1 (1.1.2.4), "Exp", lines: +5 -3 | ||
488 | fips/sha1/fips_md32_common.h (1.1.2.3), "Exp", lines: +0 -0 | ||
489 | fips/sha1/fips_sha1_selftest.c (1.1.4.1), "Exp", lines: +97 -0 | ||
490 | fips/sha1/fips_sha1dgst.c (1.1.2.4), "Exp", lines: +4 -4 | ||
491 | fips/sha1/fips_sha1test.c (1.1.2.4), "Exp", lines: +17 -0 | ||
492 | fips/sha1/fips_sha_locl.h (1.1.2.3), "Exp", lines: +7 -0 | ||
493 | fips/sha1/fips_standalone_sha1.c (1.1.2.4), "Exp", lines: +60 -7 | ||
494 | fips/sha1/sha1hashes.txt (1.1.2.3), "Exp", lines: +0 -0 | ||
495 | fips/sha1/sha1vectors.txt (1.1.2.3), "Exp", lines: +0 -0 | ||
496 | fips/sha1/standalone.sha1 (1.1.2.5), "Exp", lines: +6 -4 | ||
497 | fips/sha1/asm/sx86-elf.s (1.1.4.1), "Exp", lines: +1568 -0 | ||
498 | ms/do_masm.bat (1.1.8.2), "Exp", lines: +12 -10 | ||
499 | ms/do_ms.bat (1.4.8.2), "Exp", lines: +11 -11 | ||
500 | ms/do_nasm.bat (1.1.8.2), "Exp", lines: +12 -11 | ||
501 | ms/do_nt.bat (1.2.8.1), "Exp", lines: +4 -4 | ||
502 | shlib/hpux10-cc.sh (1.3.2.2), "Exp", lines: +3 -3 | ||
503 | ssl/Makefile (1.1.4.1), "Exp", lines: +1019 -0 | ||
504 | ssl/s3_clnt.c (1.53.2.16), "Exp", lines: +10 -0 | ||
505 | ssl/s3_srvr.c (1.85.2.21), "Exp", lines: +9 -0 | ||
506 | ssl/ssl_cert.c (1.48.2.7), "Exp", lines: +9 -0 | ||
507 | ssl/ssl_lib.c (1.110.2.12), "Exp", lines: +13 -1 | ||
508 | ssl/ssltest.c (1.53.2.23), "Exp", lines: +33 -1 | ||
509 | ssl/t1_enc.c (1.27.2.8), "Exp", lines: +19 -1 | ||
510 | test/.cvsignore (1.4.8.1), "Exp", lines: +4 -0 | ||
511 | test/Makefile (1.1.4.1), "Exp", lines: +941 -0 | ||
512 | test/bctest (1.14.2.1), "Exp", lines: +1 -1 | ||
513 | test/testenc (1.3.8.1), "Exp", lines: +1 -1 | ||
514 | test/testfipsssl (1.1.4.1), "Exp", lines: +113 -0 | ||
515 | tools/Makefile (1.1.4.1), "Exp", lines: +61 -0 | ||
516 | util/cygwin.sh (1.1.2.5), "Exp", lines: +3 -3 | ||
517 | util/domd (1.6.2.3), "Exp", lines: +5 -5 | ||
518 | util/fixNT.sh (1.1.1.2.8.1), "Exp", lines: +3 -3 | ||
519 | util/libeay.num (1.173.2.19), "Exp", lines: +55 -11 | ||
520 | util/mk1mf.pl (1.41.2.10), "Exp", lines: +6 -4 | ||
521 | util/mkdef.pl (1.67.2.7), "Exp", lines: +11 -4 | ||
522 | util/mkerr.pl (1.18.2.6), "Exp", lines: +2 -1 | ||
523 | util/mkfiles.pl (1.12.2.1), "Exp", lines: +8 -1 | ||
524 | util/pod2mantest (1.1.2.7), "Exp", lines: +1 -1 | ||
525 | util/selftest.pl (1.18.2.1), "Exp", lines: +2 -2 | ||
526 | util/pl/BC-16.pl (1.2.2.1), "Exp", lines: +1 -1 | ||
527 | util/pl/BC-32.pl (1.11.2.4), "Exp", lines: +1 -1 | ||
528 | util/pl/Mingw32.pl (1.12.6.5), "Exp", lines: +1 -1 | ||
529 | util/pl/OS2-EMX.pl (1.1.2.3), "Exp", lines: +1 -1 | ||
530 | util/pl/VC-16.pl (1.3.2.1), "Exp", lines: +2 -2 | ||
531 | util/pl/VC-32.pl (1.11.2.3), "Exp", lines: +2 -2 | ||
532 | util/pl/VC-CE.pl (1.1.2.5), "Exp", lines: +1 -1 | ||
533 | util/pl/ultrix.pl (1.2.8.1), "Exp", lines: +1 -1 | ||
534 | |||
535 | Pull FIPS back into stable. | ||
536 | |||
537 | 2004-05-12 10:27 levitte | ||
538 | |||
539 | Changed: | ||
540 | apps/Makefile (1.1.4.2), "Exp", lines: +3 -1 | ||
541 | |||
542 | Only check for FIPS signatures when FIPS is enabled. | ||
543 | |||
544 | 2004-05-12 10:28 levitte | ||
545 | |||
546 | Changed: | ||
547 | crypto/des/FILES0 (1.1.4.2), "Exp", lines: +1 -1 | ||
548 | |||
549 | Makefile.ssl changed name to Makefile. | ||
550 | |||
551 | 2004-05-12 10:28 levitte | ||
552 | |||
553 | Changed: | ||
554 | fips/rand/fips_rand.c (1.1.2.4), "Exp", lines: +5 -1 | ||
555 | |||
556 | Only really build this file when OPENSSL_FIPS is defined. And oh, | ||
557 | let's keep internal variables static. | ||
558 | |||
559 | 2004-05-12 10:42 levitte | ||
560 | |||
561 | Changed: | ||
562 | fips/rand/fingerprint.sha1 (1.1.2.4), "Exp", lines: +1 -1 | ||
563 | |||
564 | I forgot to modify the signature for fips_rand.c... | ||
565 | |||
566 | 2004-05-12 10:46 levitte | ||
567 | |||
568 | Changed: | ||
569 | fips/rsa/.cvsignore (1.1.4.1), "Exp", lines: +1 -0 | ||
570 | fips/.cvsignore (1.1.2.3), "Exp", lines: +1 -1 | ||
571 | fips/aes/.cvsignore (1.1.2.3), "Exp", lines: +0 -3 | ||
572 | fips/des/.cvsignore (1.1.2.3), "Exp", lines: +0 -2 | ||
573 | fips/dsa/.cvsignore (1.1.2.3), "Exp", lines: +0 -1 | ||
574 | fips/rand/.cvsignore (1.1.2.3), "Exp", lines: +0 -1 | ||
575 | |||
576 | Ignore the 'lib' timestamp file. | ||
577 | |||
578 | 2004-05-12 12:07 levitte | ||
579 | |||
580 | Changed: | ||
581 | fips/.cvsignore (1.1.2.4), "Exp", lines: +1 -0 | ||
582 | fips/aes/.cvsignore (1.1.2.4), "Exp", lines: +1 -0 | ||
583 | fips/des/.cvsignore (1.1.2.4), "Exp", lines: +1 -0 | ||
584 | fips/dsa/.cvsignore (1.1.2.4), "Exp", lines: +1 -0 | ||
585 | fips/rand/.cvsignore (1.1.2.4), "Exp", lines: +1 -0 | ||
586 | fips/rsa/.cvsignore (1.1.4.2), "Exp", lines: +1 -0 | ||
587 | fips/sha1/.cvsignore (1.1.2.4), "Exp", lines: +1 -0 | ||
588 | |||
589 | Ignore 'Makefile.save' | ||
590 | |||
591 | 2004-05-12 16:11 ben | ||
592 | |||
593 | Changed: | ||
594 | crypto/rand/rand.h (1.26.2.8), "Exp", lines: +2 -0 | ||
595 | crypto/rand/rand_err.c (1.6.2.4), "Exp", lines: +2 -0 | ||
596 | fips/fingerprint.sha1 (1.1.2.5), "Exp", lines: +1 -1 | ||
597 | fips/fips.c (1.1.2.4), "Exp", lines: +5 -1 | ||
598 | fips/rand/fingerprint.sha1 (1.1.2.5), "Exp", lines: +1 -1 | ||
599 | fips/rand/fips_rand.c (1.1.2.5), "Exp", lines: +29 -0 | ||
600 | |||
601 | Blow up in people's faces if they don't reseed. | ||
602 | |||
603 | 2004-05-15 19:51 ben | ||
604 | |||
605 | Changed: | ||
606 | crypto/dh/dh.h (1.23.2.6), "Exp", lines: +1 -0 | ||
607 | crypto/dh/dh_err.c (1.6.2.3), "Exp", lines: +2 -1 | ||
608 | crypto/dh/dh_gen.c (1.8.8.2), "Exp", lines: +9 -0 | ||
609 | fips/fips_test_suite.c (1.1.4.2), "Exp", lines: +4 -3 | ||
610 | fips/aes/fips_aesavs.c (1.1.2.11), "Exp", lines: +49 -1 | ||
611 | fips/des/fingerprint.sha1 (1.1.2.4), "Exp", lines: +1 -1 | ||
612 | fips/des/fips_desmovs.c (1.1.2.5), "Exp", lines: +49 -1 | ||
613 | fips/des/fips_set_key.c (1.1.4.2), "Exp", lines: +2 -0 | ||
614 | fips/sha1/fingerprint.sha1 (1.1.2.5), "Exp", lines: +1 -1 | ||
615 | fips/sha1/fips_md32_common.h (1.1.2.4), "Exp", lines: +3 -0 | ||
616 | fips/sha1/standalone.sha1 (1.1.2.6), "Exp", lines: +1 -1 | ||
617 | |||
618 | Fix self-tests, ban some things in FIPS mode, fix copyrights. | ||
619 | |||
620 | 2004-05-17 06:28 levitte | ||
621 | |||
622 | Changed: | ||
623 | util/mk1mf.pl (1.41.2.11), "Exp", lines: +8 -2 | ||
624 | util/pl/BC-16.pl (1.2.2.2), "Exp", lines: +9 -4 | ||
625 | util/pl/BC-32.pl (1.11.2.5), "Exp", lines: +8 -3 | ||
626 | util/pl/Mingw32.pl (1.12.6.6), "Exp", lines: +7 -2 | ||
627 | util/pl/OS2-EMX.pl (1.1.2.4), "Exp", lines: +7 -2 | ||
628 | util/pl/VC-16.pl (1.3.2.2), "Exp", lines: +7 -2 | ||
629 | util/pl/VC-32.pl (1.11.2.4), "Exp", lines: +7 -2 | ||
630 | util/pl/VC-CE.pl (1.1.2.6), "Exp", lines: +7 -2 | ||
631 | util/pl/linux.pl (1.3.6.1), "Exp", lines: +7 -2 | ||
632 | util/pl/ultrix.pl (1.2.8.2), "Exp", lines: +7 -2 | ||
633 | util/pl/unix.pl (1.2.8.1), "Exp", lines: +7 -2 | ||
634 | |||
635 | Generate SHA1 files on Windows and other platforms supported by | ||
636 | mk1mf.pl, when building in FIPS mode. | ||
637 | |||
638 | Note: UNTESTED! | ||
639 | |||
640 | 2004-05-17 06:30 levitte | ||
641 | |||
642 | Changed: | ||
643 | apps/apps.h (1.44.2.14), "Exp", lines: +3 -0 | ||
644 | apps/openssl.c (1.48.2.10), "Exp", lines: +9 -5 | ||
645 | |||
646 | Make sure the applications know when we are running in FIPS mode. | ||
647 | We can't use the variable in libcrypto, since it's supposedly | ||
648 | unknown. | ||
649 | |||
650 | Note: currently only supported in MONOLITH mode. | ||
651 | |||
652 | 2004-05-17 06:31 levitte | ||
653 | |||
654 | Changed: | ||
655 | apps/enc.c (1.35.2.9), "Exp", lines: +10 -1 | ||
656 | |||
657 | When in FIPS mode, use SHA1 to digest the key, rather than MD5, as | ||
658 | MD5 isn't a FIPS-approved algorithm. | ||
659 | |||
660 | Note: this means the user needs to keep track of this, and | ||
661 | we need to add support for that... | ||
662 | |||
663 | 2004-05-19 16:16 levitte | ||
664 | |||
665 | Changed: | ||
666 | fips/rsa/fingerprint.sha1 (1.1.4.2), "Exp", lines: +2 -2 | ||
667 | fips/rsa/fips_rsa_eay.c (1.1.4.2), "Exp", lines: +8 -8 | ||
668 | fips/rsa/fips_rsa_gen.c (1.1.4.2), "Exp", lines: +1 -1 | ||
669 | fips/dsa/fingerprint.sha1 (1.1.2.5), "Exp", lines: +2 -2 | ||
670 | fips/dsa/fips_dsa_gen.c (1.1.4.2), "Exp", lines: +2 -2 | ||
671 | fips/dsa/fips_dsa_ossl.c (1.1.2.5), "Exp", lines: +4 -4 | ||
672 | fips/aes/fingerprint.sha1 (1.1.2.4), "Exp", lines: +1 -1 | ||
673 | fips/aes/fips_aes_core.c (1.1.2.4), "Exp", lines: +5 -5 | ||
674 | crypto/rsa/rsa.h (1.36.2.11), "Exp", lines: +4 -0 | ||
675 | crypto/aes/aes.h (1.1.2.10), "Exp", lines: +6 -0 | ||
676 | crypto/dsa/dsa.h (1.26.2.5), "Exp", lines: +4 -0 | ||
677 | |||
678 | Define FIPS_*_SIZE_T for AES, DSA and RSA as well, in preparation | ||
679 | for size_t-ification of those algorithms in future version of | ||
680 | OpenSSL... | ||
681 | |||
682 | 2004-05-27 11:33 levitte | ||
683 | |||
684 | Changed: | ||
685 | makevms.com (1.35.2.3), "Exp", lines: +27 -0 | ||
686 | |||
687 | Copy the FIPS files to the temporary openssl include directory. | ||
688 | |||
689 | 2004-05-27 12:04 levitte | ||
690 | |||
691 | Changed: | ||
692 | fips/fips-lib.com (1.1.2.1), "Exp", lines: +1179 -0 | ||
693 | makevms.com (1.35.2.4), "Exp", lines: +8 -0 | ||
694 | |||
695 | Compile the FIPS directory on VMS as well. fips-lib.com is | ||
696 | essentially a copy of crypto-lib.com, with just a few edits. | ||
697 | |||
698 | 2004-05-27 12:07 levitte | ||
699 | |||
700 | Changed: | ||
701 | fips/install.com (1.1.2.1), "Exp", lines: +55 -0 | ||
702 | install.com (1.4.2.2), "Exp", lines: +6 -6 | ||
703 | |||
704 | Run an installation of FIPS stuff as well. | ||
705 | |||
706 | 2004-05-27 12:19 levitte | ||
707 | |||
708 | Changed: | ||
709 | test/maketests.com (1.13.2.5), "Exp", lines: +3 -3 | ||
710 | apps/makeapps.com (1.18.2.5), "Exp", lines: +3 -3 | ||
711 | |||
712 | Make sure o_str.h is reachable. | ||
713 | |||
714 | 2004-06-19 15:15 ben | ||
715 | |||
716 | Changed: | ||
717 | Makefile.org (1.154.2.80), "Exp", lines: +1 -1 | ||
718 | crypto/dh/dh.h (1.23.2.7), "Exp", lines: +0 -1 | ||
719 | crypto/dh/dh_check.c (1.6.2.1), "Exp", lines: +4 -0 | ||
720 | crypto/dh/dh_err.c (1.6.2.4), "Exp", lines: +0 -1 | ||
721 | crypto/dh/dh_gen.c (1.8.8.3), "Exp", lines: +5 -9 | ||
722 | crypto/dh/dh_key.c (1.16.2.3), "Exp", lines: +4 -0 | ||
723 | fips/Makefile (1.1.4.2), "Exp", lines: +13 -14 | ||
724 | fips/fingerprint.sha1 (1.1.2.6), "Exp", lines: +2 -2 | ||
725 | fips/fips.h (1.1.2.4), "Exp", lines: +1 -0 | ||
726 | fips/fips_err.h (1.1.4.2), "Exp", lines: +1 -0 | ||
727 | fips/fips_make_sha1 (1.1.2.6), "Exp", lines: +3 -0 | ||
728 | fips/fips_test_suite.c (1.1.4.3), "Exp", lines: +13 -9 | ||
729 | fips/openssl_fips_fingerprint (1.1.4.2), "Exp", lines: +1 -2 | ||
730 | |||
731 | The version that was actually submitted for FIPS testing. | ||
732 | |||
733 | 2004-06-19 15:16 ben | ||
734 | |||
735 | Changed: | ||
736 | fips/dh/Makefile (1.1.2.1), "Exp", lines: +92 -0 | ||
737 | fips/dh/fingerprint.sha1 (1.1.2.1), "Exp", lines: +3 -0 | ||
738 | fips/dh/fips_dh_check.c (1.1.2.1), "Exp", lines: +119 -0 | ||
739 | fips/dh/fips_dh_gen.c (1.1.2.1), "Exp", lines: +182 -0 | ||
740 | fips/dh/fips_dh_key.c (1.1.2.1), "Exp", lines: +222 -0 | ||
741 | |||
742 | Add Diffie-Hellman to FIPS. | ||
743 | |||
744 | 2004-06-19 15:18 ben | ||
745 | |||
746 | Changed: | ||
747 | fips/.cvsignore (1.1.2.5), "Exp", lines: +2 -0 | ||
748 | fips/dh/.cvsignore (1.1.2.1), "Exp", lines: +1 -0 | ||
749 | |||
750 | Update ignores. | ||
751 | |||
752 | 2004-06-21 11:07 levitte | ||
753 | |||
754 | Changed: | ||
755 | fips/aes/Makefile (1.1.4.2), "Exp", lines: +7 -5 | ||
756 | fips/des/Makefile (1.1.4.2), "Exp", lines: +7 -5 | ||
757 | fips/dh/Makefile (1.1.2.2), "Exp", lines: +7 -6 | ||
758 | fips/dsa/Makefile (1.1.4.2), "Exp", lines: +7 -6 | ||
759 | fips/rsa/Makefile (1.1.4.2), "Exp", lines: +7 -6 | ||
760 | fips/sha1/Makefile (1.1.4.2), "Exp", lines: +7 -5 | ||
761 | |||
762 | Make sure we don't try to loop over an empty EXHEADER. In the | ||
763 | Makefiles where this was fixed by commenting away code, change it | ||
764 | to check for an empty EXHEADER instead, so we have less hassle in a | ||
765 | future where EXHEADER changes. | ||
766 | |||
767 | PR: 900 | ||
768 | |||
769 | 2004-06-21 20:05 levitte | ||
770 | |||
771 | Changed: | ||
772 | Makefile.org (1.154.2.82), "Exp", lines: +3 -1 | ||
773 | |||
774 | Standard sh doesn't tolerate ! as part of the conditional command. | ||
775 | |||
776 | PR: 900 | ||
777 | |||
778 | 2004-06-28 22:33 levitte | ||
779 | |||
780 | Changed: | ||
781 | fips/dh/fips_dh_check.c (1.1.2.2), "Exp", lines: +6 -0 | ||
782 | fips/dh/fips_dh_gen.c (1.1.2.2), "Exp", lines: +6 -2 | ||
783 | fips/dh/fips_dh_key.c (1.1.2.2), "Exp", lines: +8 -0 | ||
784 | |||
785 | Make sure the FIPS stuff is only really compiled when in FIPS mode. | ||
786 | |||
787 | 2004-07-12 19:59 ben | ||
788 | |||
789 | Changed: | ||
790 | fips/fips_test_suite.c (1.1.4.4), "Exp", lines: +39 -6 | ||
791 | fips/dh/fingerprint.sha1 (1.1.2.2), "Exp", lines: +3 -3 | ||
792 | |||
793 | Corrected test program. | ||
794 | |||
795 | 2004-07-17 14:48 appro | ||
796 | |||
797 | Changed: | ||
798 | fips/des/Makefile (1.1.4.3), "Exp", lines: +1 -1 | ||
799 | |||
800 | Eliminate enforced -g from CFLAGS. It switches off optimization | ||
801 | with some compilers, e.g. DEC C. | ||
802 | |||
803 | 2004-07-21 19:41 steve | ||
804 | |||
805 | Changed: | ||
806 | crypto/pem/pem_all.c (1.20.2.1), "Exp", lines: +119 -0 | ||
807 | |||
808 | When in FIPS mode write private keys in PKCS#8 and PBES2 format to | ||
809 | avoid use of prohibited MD5 algorithm. | ||
810 | |||
811 | 2004-07-23 15:20 ben | ||
812 | |||
813 | Changed: | ||
814 | fips/rand/fingerprint.sha1 (1.1.2.7), "Exp", lines: +1 -1 | ||
815 | fips/rand/fips_rand.c (1.1.2.7), "Exp", lines: +22 -7 | ||
816 | fips/rand/fips_randtest.c (1.1.2.5), "Exp", lines: +2 -2 | ||
817 | |||
818 | Convert to X9.31. | ||
819 | |||
820 | 2004-07-21 19:35 steve | ||
821 | |||
822 | Changed: | ||
823 | fips/fingerprint.sha1 (1.1.2.7), "Exp", lines: +1 -1 | ||
824 | fips/fips.c (1.1.2.5), "Exp", lines: +3 -3 | ||
825 | fips/rsa/fingerprint.sha1 (1.1.4.3), "Exp", lines: +1 -1 | ||
826 | fips/rsa/fips_rsa_selftest.c (1.1.4.2), "Exp", lines: +8 -8 | ||
827 | |||
828 | Avoid compiler warnings. | ||
829 | |||
830 | 2004-07-27 02:17 steve | ||
831 | |||
832 | Changed: | ||
833 | fips/fips_test_suite.c (1.1.4.5), "Exp", lines: +9 -8 | ||
834 | |||
835 | Stop compiler warnings. | ||
836 | |||
837 | 2004-07-27 02:20 steve | ||
838 | |||
839 | Changed: | ||
840 | crypto/err/err.c (1.51.2.6), "Exp", lines: +1 -0 | ||
841 | |||
842 | Add FIPS name to error library. | ||
843 | |||
844 | 2004-07-27 14:22 steve | ||
845 | |||
846 | Changed: | ||
847 | Makefile.org (1.154.2.84), "Exp", lines: +3 -3 | ||
848 | fips/fips_check_sha1 (1.1.2.6), "Exp", lines: +1 -1 | ||
849 | fips/openssl_fips_fingerprint (1.1.4.3), "Exp", lines: +1 -1 | ||
850 | |||
851 | Rename libcrypto.sha1 to libcrypto.a.sha1 | ||
852 | |||
853 | 2004-07-27 20:28 steve | ||
854 | |||
855 | Changed: | ||
856 | ssl/s3_lib.c (1.57.2.11), "Exp", lines: +33 -33 | ||
857 | ssl/ssl.h (1.126.2.20), "Exp", lines: +1 -0 | ||
858 | ssl/ssl_ciph.c (1.33.2.9), "Exp", lines: +11 -0 | ||
859 | ssl/ssl_locl.h (1.47.2.3), "Exp", lines: +2 -1 | ||
860 | |||
861 | New cipher "strength" FIPS which specifies that a cipher suite is | ||
862 | FIPS compatible. | ||
863 | |||
864 | New cipherstring "FIPS" is all FIPS compatible ciphersuites | ||
865 | except eNULL. | ||
866 | |||
867 | Only allow FIPS ciphersuites in FIPS mode. | ||
868 | |||
869 | 2004-07-28 04:24 levitte | ||
870 | |||
871 | Changed: | ||
872 | makevms.com (1.35.2.6), "Exp", lines: +2 -2 | ||
873 | |||
874 | From the FIPS directory, darnit! | ||
875 | |||
876 | 2004-07-28 15:47 levitte | ||
877 | |||
878 | Changed: | ||
879 | makevms.com (1.35.2.7), "Exp", lines: +5 -1 | ||
880 | |||
881 | Define OPENSSL_FIPS in opensslconf.h if a logical name with the | ||
882 | same name is defined. | ||
883 | |||
884 | Go up one directory level before dealing with FIPS stuff. | ||
885 | |||
886 | 2004-07-30 00:26 levitte | ||
887 | |||
888 | Changed: | ||
889 | fips/fips-lib.com (1.1.2.2), "Exp", lines: +3 -3 | ||
890 | |||
891 | We're building crypto stuff, not ssl stuff. Additionally, we're in | ||
892 | the fips subdirectory, not the crypto one... | ||
893 | |||
894 | 2004-07-30 16:37 levitte | ||
895 | |||
896 | Changed: | ||
897 | fips/sha1/fingerprint.sha1 (1.1.2.7), "Exp", lines: +2 -2 | ||
898 | fips/sha1/fips_md32_common.h (1.1.2.6), "Exp", lines: +1 -1 | ||
899 | fips/sha1/fips_sha_locl.h (1.1.2.5), "Exp", lines: +2 -2 | ||
900 | fips/sha1/fips_standalone_sha1.c (1.1.2.5), "Exp", lines: +1 -1 | ||
901 | fips/sha1/standalone.sha1 (1.1.2.8), "Exp", lines: +3 -3 | ||
902 | ssl/ssl_ciph.c (1.33.2.10), "Exp", lines: +2 -2 | ||
903 | fips/rsa/fingerprint.sha1 (1.1.4.4), "Exp", lines: +2 -2 | ||
904 | fips/rsa/fips_rsa_eay.c (1.1.4.3), "Exp", lines: +1 -1 | ||
905 | fips/rsa/fips_rsa_gen.c (1.1.4.3), "Exp", lines: +1 -1 | ||
906 | fips/dh/fingerprint.sha1 (1.1.2.3), "Exp", lines: +1 -1 | ||
907 | fips/dh/fips_dh_gen.c (1.1.2.3), "Exp", lines: +1 -1 | ||
908 | fips/dsa/fingerprint.sha1 (1.1.2.6), "Exp", lines: +2 -2 | ||
909 | fips/dsa/fips_dsa_gen.c (1.1.4.3), "Exp", lines: +4 -3 | ||
910 | fips/dsa/fips_dsa_ossl.c (1.1.2.6), "Exp", lines: +2 -2 | ||
911 | fips/des/fingerprint.sha1 (1.1.2.5), "Exp", lines: +2 -2 | ||
912 | fips/des/fips_des_enc.c (1.1.2.5), "Exp", lines: +2 -2 | ||
913 | fips/des/fips_set_key.c (1.1.4.3), "Exp", lines: +3 -3 | ||
914 | fips/fingerprint.sha1 (1.1.2.8), "Exp", lines: +2 -2 | ||
915 | fips/fips.c (1.1.2.6), "Exp", lines: +76 -23 | ||
916 | fips/fips.h (1.1.2.5), "Exp", lines: +2 -3 | ||
917 | fips/fips_locl.h (1.1.4.2), "Exp", lines: +7 -2 | ||
918 | fips/aes/fingerprint.sha1 (1.1.2.5), "Exp", lines: +1 -1 | ||
919 | fips/aes/fips_aes_core.c (1.1.2.5), "Exp", lines: +1 -1 | ||
920 | crypto/rand/md_rand.c (1.69.2.5), "Exp", lines: +1 -1 | ||
921 | crypto/rand/rand_lib.c (1.15.2.5), "Exp", lines: +2 -1 | ||
922 | crypto/dsa/dsa_sign.c (1.10.2.6), "Exp", lines: +2 -2 | ||
923 | crypto/dsa/dsa_vrf.c (1.10.2.6), "Exp", lines: +1 -1 | ||
924 | crypto/pem/pem_all.c (1.20.2.2), "Exp", lines: +2 -2 | ||
925 | crypto/cryptlib.c (1.32.2.12), "Exp", lines: +122 -6 | ||
926 | crypto/crypto.h (1.62.2.8), "Exp", lines: +8 -1 | ||
927 | crypto/md32_common.h (1.22.2.7), "Exp", lines: +2 -2 | ||
928 | |||
929 | To protect FIPS-related global variables, add locking mechanisms | ||
930 | around them. | ||
931 | |||
932 | NOTE: because two new locks are added, this adds potential | ||
933 | binary incompatibility with earlier versions in the 0.9.7 series. | ||
934 | However, those locks will only ever be touched when FIPS_mode_set() | ||
935 | is called and after, thanks to a variable that's only changed from | ||
936 | 0 to 1 once (when FIPS_mode_set() is called). So basically, as | ||
937 | long as FIPS mode hasn't been engaged explicitely by the calling | ||
938 | application, the new locks are treated as if they didn't exist at | ||
939 | all, thus not becoming a problem. Applications that are built or | ||
940 | rebuilt to use FIPS functionality will need to be recompiled in any | ||
941 | case, thus not being a problem either. | ||
942 | |||
943 | 2004-08-02 16:15 levitte | ||
944 | |||
945 | Changed: | ||
946 | crypto/cryptlib.c (1.32.2.13), "Exp", lines: +4 -4 | ||
947 | |||
948 | Let's lock a write lock when changing values, shall we? | ||
949 | |||
950 | Thanks to Dr Stephen Henson <shenson@drh-consultancy.co.uk> | ||
951 | for making me aware of this error. | ||
952 | |||
953 | 2004-08-05 20:11 steve | ||
954 | |||
955 | Changed: | ||
956 | fips/fingerprint.sha1 (1.1.2.9), "Exp", lines: +1 -1 | ||
957 | fips/fips.c (1.1.2.7), "Exp", lines: +1 -1 | ||
958 | |||
959 | Stop compiler giving bogus shadow warning. | ||
960 | |||
961 | 2004-08-09 14:13 levitte | ||
962 | |||
963 | Changed: | ||
964 | makevms.com (1.35.2.8), "Exp", lines: +1 -1 | ||
965 | |||
966 | In the fips directory, we use FIPS-LIB.COM, not CRYPTO-LIB.COM... | ||
967 | |||
968 | 2004-08-09 14:14 levitte | ||
969 | |||
970 | Changed: | ||
971 | fips/fips-lib.com (1.1.2.3), "Exp", lines: +4 -4 | ||
972 | |||
973 | Correct typos and include directory specifications. | ||
974 | |||
975 | 2004-08-10 11:11 levitte | ||
976 | |||
977 | Changed: | ||
978 | fips/fips-lib.com (1.1.2.4), "Exp", lines: +2 -1 | ||
979 | |||
980 | Update the VMS fips library builder with the DH library. | ||
981 | |||
982 | 2004-08-10 12:04 levitte | ||
983 | |||
984 | Changed: | ||
985 | fips/rand/fingerprint.sha1 (1.1.2.8), "Exp", lines: +1 -1 | ||
986 | fips/rand/fips_rand.c (1.1.2.8), "Exp", lines: +7 -1 | ||
987 | |||
988 | With DEC C in ANSI C mode, we need to define _XOPEN_SOURCE_EXTENDED | ||
989 | to get struct timeval and gettimeofday(). | ||
990 | |||
991 | 2004-09-06 16:19 levitte | ||
992 | |||
993 | Changed: | ||
994 | fips/fips.c (1.1.2.8), "Exp", lines: +5 -4 | ||
995 | |||
996 | Replace the bogus checks of n with proper uses of feof(), ferror() | ||
997 | and clearerr(). | ||
998 | |||
999 | 2004-09-06 16:21 levitte | ||
1000 | |||
1001 | Changed: | ||
1002 | fips/sha1/fips_sha_locl.h (1.1.2.6), "Exp", lines: +2 -2 | ||
1003 | |||
1004 | num is an unsigned long, but since it was transfered from | ||
1005 | crypto/sha/sha_locl.h, where it is in fact an int, we need to check | ||
1006 | for less-than-zero as if it was an int... | ||
1007 | |||
1008 | 2004-10-08 12:03 ben | ||
1009 | |||
1010 | Changed: | ||
1011 | fips/fingerprint.sha1 (1.1.2.10), "Exp", lines: +1 -1 | ||
1012 | fips/sha1/fingerprint.sha1 (1.1.2.8), "Exp", lines: +1 -1 | ||
1013 | fips/sha1/standalone.sha1 (1.1.2.9), "Exp", lines: +1 -1 | ||
1014 | |||
1015 | Update fingerprints. | ||
1016 | |||
1017 | 2004-10-14 07:51 levitte | ||
1018 | |||
1019 | Changed: | ||
1020 | VMS/mkshared.com (1.3.2.1), "Exp", lines: +8 -0 | ||
1021 | |||
1022 | We need to check for OPENSSL_FIPS when building shared libraries, | ||
1023 | so we get correct transfer vectors for those functions when | ||
1024 | required. | ||
1025 | |||
1026 | 2004-10-26 13:47 steve | ||
1027 | |||
1028 | Changed: | ||
1029 | util/mkfiles.pl (1.12.2.2), "Exp", lines: +1 -0 | ||
1030 | |||
1031 | Add fips/dh directory to mkfiles.pl | ||
1032 | |||
1033 | 2004-10-26 14:17 levitte | ||
1034 | |||
1035 | Changed: | ||
1036 | fips/sha1/Makefile (1.1.4.4), "Exp", lines: +3 -1 | ||
1037 | util/mkfiles.pl (1.12.2.3), "Exp", lines: +1 -0 | ||
1038 | fips/Makefile (1.1.4.5), "Exp", lines: +7 -1 | ||
1039 | crypto/sha/Makefile (1.1.4.4), "Exp", lines: +1 -7 | ||
1040 | |||
1041 | fips/dh was missing in mkfiles.pl. make update | ||
1042 | |||
1043 | 2004-10-26 15:01 steve | ||
1044 | |||
1045 | Changed: | ||
1046 | util/mkfiles.pl (1.12.2.4), "Exp", lines: +0 -1 | ||
1047 | |||
1048 | Only add fips/dh once... | ||
1049 | |||
1050 | 2004-11-01 09:20 levitte | ||
1051 | |||
1052 | Changed: | ||
1053 | fips/rand/fingerprint.sha1 (1.1.2.9), "Exp", lines: +1 -1 | ||
1054 | fips/rand/fips_rand.c (1.1.2.9), "Exp", lines: +3 -1 | ||
1055 | |||
1056 | Make sure _XOPEN_SOURCE_EXTENDED is correctly defined, and only if | ||
1057 | not already defined. | ||
1058 | |||
1059 | 2004-12-09 19:03 appro | ||
1060 | |||
1061 | vChanged: | ||
1062 | crypto/Makefile (1.1.4.4), "Exp", lines: +2 -0 | ||
1063 | |||
1064 | Postpone linking of shared libcrypto in FIPS build. | ||
1065 | |||
1066 | 2004-12-09 19:13 appro | ||
1067 | |||
1068 | Changed: | ||
1069 | fips/fingerprint.sha1 (1.1.2.11), "Exp", lines: +1 -1 | ||
1070 | fips/fips.c (1.1.2.9), "Exp", lines: +13 -1 | ||
1071 | fips/openssl_fips_fingerprint (1.1.4.4), "Exp", lines: +4 -2 | ||
1072 | |||
1073 | Cygwin specific FIPS fix-ups. | ||
1074 | |||
1075 | 2004-12-09 23:43 appro | ||
1076 | |||
1077 | Changed: | ||
1078 | Configure (1.314.2.100), "Exp", lines: +2 -3 | ||
1079 | crypto/des/des_enc.c (1.11.2.5), "Exp", lines: +2 -2 | ||
1080 | |||
1081 | Eliminate false dependency on 386 config option is FIPS context. | ||
1082 | At the same time limit assembler support to ELF platforms [that's | ||
1083 | what is there, ELF modules]. | ||
1084 | |||
1085 | 2004-12-10 12:37 appro | ||
1086 | |||
1087 | Changed: | ||
1088 | Configure (1.314.2.101), "Exp", lines: +10 -3 | ||
1089 | crypto/des/des_enc.c (1.11.2.6), "Exp", lines: +2 -2 | ||
1090 | |||
1091 | Respect no-asm with fips option and disable FIPS DES assembler in | ||
1092 | shared context [because it's not PIC]. | ||
1093 | |||
1094 | 2004-12-10 14:15 appro | ||
1095 | |||
1096 | Changed: | ||
1097 | fips/sha1/fingerprint.sha1 (1.1.2.10), "Exp", lines: +1 -1 | ||
1098 | fips/sha1/standalone.sha1 (1.1.2.11), "Exp", lines: +1 -1 | ||
1099 | fips/sha1/asm/sx86-elf.s (1.1.4.3), "Exp", lines: +32 -32 | ||
1100 | |||
1101 | Solaris x86 assembler update. | ||
1102 | |||
1103 | 2004-12-10 17:30 appro | ||
1104 | |||
1105 | Changed: | ||
1106 | fips/fips_check_sha1 (1.1.2.7), "Exp", lines: +1 -1 | ||
1107 | fips/openssl_fips_fingerprint (1.1.4.5), "Exp", lines: +1 -1 | ||
1108 | fips/sha1/Makefile (1.1.4.6), "Exp", lines: +1 -1 | ||
1109 | |||
1110 | Adapt FIPS sub-tree for mingw. | ||
1111 | |||
1112 | 2005-01-03 18:46 steve | ||
1113 | |||
1114 | Changed: | ||
1115 | fips/rsa/fingerprint.sha1 (1.1.4.5), "Exp", lines: +1 -1 | ||
1116 | fips/rsa/fips_rsa_selftest.c (1.1.4.3), "Exp", lines: +55 -11 | ||
1117 | |||
1118 | RSA KAT. | ||
1119 | |||
1120 | 2005-01-11 17:54 levitte | ||
1121 | |||
1122 | Changed: | ||
1123 | fips/rsa/fingerprint.sha1 (1.1.4.6), "Exp", lines: +1 -1 | ||
1124 | fips/rsa/fips_rsa_selftest.c (1.1.4.4), "Exp", lines: +2 -2 | ||
1125 | |||
1126 | Clear signed vs. unsigned conflicts. Change the fingerprint | ||
1127 | accordingly. | ||
1128 | |||
1129 | 2005-01-11 19:25 levitte | ||
1130 | |||
1131 | Changed: | ||
1132 | ssl/ssltest.c (1.53.2.24), "Exp", lines: +2 -2 | ||
1133 | fips/rand/fips_randtest.c (1.1.2.6), "Exp", lines: +3 -3 | ||
1134 | fips/sha1/fips_sha1test.c (1.1.2.5), "Exp", lines: +10 -4 | ||
1135 | fips/des/fips_desmovs.c (1.1.2.6), "Exp", lines: +8 -7 | ||
1136 | fips/dsa/fips_dsatest.c (1.1.2.5), "Exp", lines: +2 -2 | ||
1137 | apps/openssl.c (1.48.2.12), "Exp", lines: +1 -1 | ||
1138 | fips/aes/fips_aesavs.c (1.1.2.12), "Exp", lines: +8 -7 | ||
1139 | |||
1140 | Use EXIT() instead of exit(). | ||
1141 | |||
1142 | 2005-01-26 21:00 steve | ||
1143 | |||
1144 | Changed: | ||
1145 | apps/dgst.c (1.23.2.13), "Exp", lines: +10 -0 | ||
1146 | apps/pkcs12.c (1.60.2.13), "Exp", lines: +8 -1 | ||
1147 | crypto/crypto.h (1.62.2.9), "Exp", lines: +49 -0 | ||
1148 | crypto/md32_common.h (1.22.2.9), "Exp", lines: +1 -1 | ||
1149 | crypto/bf/bf_skey.c (1.6.2.1), "Exp", lines: +2 -1 | ||
1150 | crypto/bf/blowfish.h (1.9.2.1), "Exp", lines: +4 -1 | ||
1151 | crypto/cast/c_skey.c (1.5.6.1), "Exp", lines: +3 -1 | ||
1152 | crypto/cast/cast.h (1.7.2.1), "Exp", lines: +4 -1 | ||
1153 | crypto/evp/bio_md.c (1.11.2.3), "Exp", lines: +2 -7 | ||
1154 | crypto/evp/digest.c (1.21.2.7), "Exp", lines: +11 -0 | ||
1155 | crypto/evp/e_aes.c (1.6.2.11), "Exp", lines: +11 -11 | ||
1156 | crypto/evp/e_des.c (1.5.2.9), "Exp", lines: +5 -3 | ||
1157 | crypto/evp/e_des3.c (1.8.2.8), "Exp", lines: +6 -6 | ||
1158 | crypto/evp/evp.h (1.86.2.16), "Exp", lines: +17 -0 | ||
1159 | crypto/evp/evp_enc.c (1.28.2.11), "Exp", lines: +15 -1 | ||
1160 | crypto/evp/evp_err.c (1.23.2.4), "Exp", lines: +6 -1 | ||
1161 | crypto/evp/evp_locl.h (1.7.2.7), "Exp", lines: +17 -2 | ||
1162 | crypto/evp/m_dss.c (1.8.2.1), "Exp", lines: +1 -1 | ||
1163 | crypto/evp/m_md2.c (1.9.2.1), "Exp", lines: +1 -0 | ||
1164 | crypto/evp/m_md4.c (1.8.2.1), "Exp", lines: +1 -0 | ||
1165 | crypto/evp/m_md5.c (1.9.2.1), "Exp", lines: +1 -0 | ||
1166 | crypto/evp/m_mdc2.c (1.9.2.1), "Exp", lines: +1 -0 | ||
1167 | crypto/evp/m_sha.c (1.8.2.2), "Exp", lines: +1 -0 | ||
1168 | crypto/evp/m_sha1.c (1.8.2.1), "Exp", lines: +1 -1 | ||
1169 | crypto/evp/names.c (1.7.2.1), "Exp", lines: +3 -0 | ||
1170 | crypto/hmac/hmac.c (1.12.2.3), "Exp", lines: +7 -0 | ||
1171 | crypto/hmac/hmac.h (1.14.2.2), "Exp", lines: +1 -0 | ||
1172 | crypto/idea/i_skey.c (1.5.6.1), "Exp", lines: +13 -0 | ||
1173 | crypto/idea/idea.h (1.10.2.1), "Exp", lines: +4 -0 | ||
1174 | crypto/md2/md2.h (1.11.2.1), "Exp", lines: +3 -0 | ||
1175 | crypto/md2/md2_dgst.c (1.13.2.4), "Exp", lines: +3 -1 | ||
1176 | crypto/md4/md4.h (1.3.2.1), "Exp", lines: +3 -0 | ||
1177 | crypto/md4/md4_dgst.c (1.2.2.2), "Exp", lines: +1 -1 | ||
1178 | crypto/md5/md5.h (1.10.2.3), "Exp", lines: +3 -0 | ||
1179 | crypto/md5/md5_dgst.c (1.16.2.2), "Exp", lines: +1 -1 | ||
1180 | crypto/mdc2/mdc2.h (1.9.2.1), "Exp", lines: +3 -1 | ||
1181 | crypto/mdc2/mdc2dgst.c (1.13.2.1), "Exp", lines: +3 -1 | ||
1182 | crypto/rc2/rc2.h (1.10.2.1), "Exp", lines: +4 -1 | ||
1183 | crypto/rc2/rc2_skey.c (1.4.6.1), "Exp", lines: +13 -0 | ||
1184 | crypto/rc4/rc4.h (1.10.2.2), "Exp", lines: +3 -0 | ||
1185 | crypto/rc4/rc4_skey.c (1.10.8.2), "Exp", lines: +2 -1 | ||
1186 | crypto/rc5/rc5.h (1.5.2.1), "Exp", lines: +4 -1 | ||
1187 | crypto/rc5/rc5_skey.c (1.4.6.1), "Exp", lines: +14 -0 | ||
1188 | crypto/ripemd/ripemd.h (1.8.2.1), "Exp", lines: +3 -0 | ||
1189 | crypto/ripemd/rmd_dgst.c (1.13.2.2), "Exp", lines: +2 -1 | ||
1190 | crypto/sha/sha.h (1.11.2.2), "Exp", lines: +3 -0 | ||
1191 | crypto/sha/sha_locl.h (1.16.2.3), "Exp", lines: +4 -0 | ||
1192 | crypto/x509/x509_cmp.c (1.22.2.4), "Exp", lines: +7 -1 | ||
1193 | crypto/x509/x509_vfy.c (1.56.2.13), "Exp", lines: +1 -1 | ||
1194 | ssl/s3_clnt.c (1.53.2.18), "Exp", lines: +2 -0 | ||
1195 | ssl/s3_enc.c (1.31.2.9), "Exp", lines: +3 -0 | ||
1196 | ssl/s3_srvr.c (1.85.2.23), "Exp", lines: +2 -0 | ||
1197 | ssl/t1_enc.c (1.27.2.9), "Exp", lines: +2 -0 | ||
1198 | |||
1199 | FIPS algorithm blocking. | ||
1200 | |||
1201 | Non FIPS algorithms are not normally allowed in FIPS mode. | ||
1202 | |||
1203 | Any attempt to use them via high level functions will | ||
1204 | return an error. | ||
1205 | |||
1206 | The low level non-FIPS algorithm functions cannot return | ||
1207 | errors so they produce assertion failures. HMAC also has to give an | ||
1208 | assertion error because it (erroneously) can't return an error | ||
1209 | either. | ||
1210 | |||
1211 | There are exceptions (such as MD5 in TLS and non | ||
1212 | cryptographic use of algorithms) and applications can override the | ||
1213 | blocking and use non FIPS algorithms anyway. | ||
1214 | |||
1215 | For low level functions the override is perfomed by | ||
1216 | prefixing the algorithm initalization function with "private_" for | ||
1217 | example private_MD5_Init(). | ||
1218 | |||
1219 | For high level functions an override is performed by | ||
1220 | setting a flag in the context. | ||
1221 | |||
1222 | 2005-01-27 02:49 steve | ||
1223 | |||
1224 | Changed: | ||
1225 | apps/dgst.c (1.23.2.14), "Exp", lines: +9 -5 | ||
1226 | crypto/crypto.h (1.62.2.10), "Exp", lines: +3 -0 | ||
1227 | crypto/evp/digest.c (1.21.2.8), "Exp", lines: +34 -0 | ||
1228 | crypto/hmac/hmac.c (1.12.2.4), "Exp", lines: +9 -0 | ||
1229 | |||
1230 | More FIPS algorithm blocking. | ||
1231 | |||
1232 | Catch attempted use of non FIPS algorithms with HMAC. | ||
1233 | |||
1234 | Give an assertion error for applications that ignore FIPS | ||
1235 | digest errors. | ||
1236 | |||
1237 | Make -non-fips-allow work with dgst and HMAC. | ||
1238 | |||
1239 | 2005-01-28 15:03 steve | ||
1240 | |||
1241 | Changed: | ||
1242 | apps/dgst.c (1.23.2.15), "Exp", lines: +2 -1 | ||
1243 | apps/enc.c (1.35.2.13), "Exp", lines: +38 -4 | ||
1244 | crypto/evp/e_rc4.c (1.11.2.2), "Exp", lines: +1 -0 | ||
1245 | crypto/evp/evp.h (1.86.2.17), "Exp", lines: +3 -0 | ||
1246 | crypto/evp/evp_enc.c (1.28.2.12), "Exp", lines: +60 -15 | ||
1247 | crypto/evp/evp_locl.h (1.7.2.8), "Exp", lines: +1 -0 | ||
1248 | test/testenc (1.3.8.2), "Exp", lines: +8 -8 | ||
1249 | |||
1250 | Further FIPS algorithm blocking. | ||
1251 | |||
1252 | Fixes to cipher blocking and enabling code. | ||
1253 | |||
1254 | Add option -non-fips-allow to 'enc' and update testenc. | ||
1255 | |||
1256 | 2005-01-31 02:33 steve | ||
1257 | |||
1258 | Changed: | ||
1259 | ssl/s23_clnt.c (1.20.2.7), "Exp", lines: +16 -0 | ||
1260 | ssl/s23_srvr.c (1.41.2.6), "Exp", lines: +9 -0 | ||
1261 | ssl/s3_clnt.c (1.53.2.19), "Exp", lines: +0 -8 | ||
1262 | ssl/s3_enc.c (1.31.2.10), "Exp", lines: +1 -0 | ||
1263 | ssl/s3_srvr.c (1.85.2.24), "Exp", lines: +0 -8 | ||
1264 | ssl/ssl.h (1.126.2.21), "Exp", lines: +1 -0 | ||
1265 | ssl/ssl_cert.c (1.48.2.10), "Exp", lines: +0 -8 | ||
1266 | ssl/ssl_err.c (1.41.2.4), "Exp", lines: +2 -1 | ||
1267 | ssl/ssl_lib.c (1.110.2.13), "Exp", lines: +8 -9 | ||
1268 | ssl/t1_enc.c (1.27.2.10), "Exp", lines: +0 -18 | ||
1269 | |||
1270 | Only allow TLS is FIPS mode. | ||
1271 | |||
1272 | Remove old FIPS_allow_md5() calls. | ||
1273 | |||
1274 | 2005-02-05 19:24 steve | ||
1275 | |||
1276 | Changed: | ||
1277 | apps/req.c (1.88.2.18), "Exp", lines: +8 -1 | ||
1278 | apps/x509.c (1.67.2.20), "Exp", lines: +8 -1 | ||
1279 | |||
1280 | In FIPS mode use SHA1 as default digest in x509 and req utilities. | ||
1281 | |||
1282 | 2005-03-15 10:46 appro | ||
1283 | |||
1284 | Changed: | ||
1285 | Makefile.org (1.154.2.96), "Exp", lines: +1 -1 | ||
1286 | crypto/Makefile (1.1.4.6), "Exp", lines: +2 -3 | ||
1287 | fips/Makefile (1.1.4.8), "Exp", lines: +4 -1 | ||
1288 | |||
1289 | Real Bourne shell doesn't accept ! as in "if ! grep ..." Fix this | ||
1290 | in crypto/Makefile and make Makefile.org and fips/Makefile more | ||
1291 | discreet. | ||
1292 | |||
1293 | 2005-03-22 18:29 steve | ||
1294 | |||
1295 | Changed: | ||
1296 | fips/fingerprint.sha1 (1.1.2.12), "Exp", lines: +1 -1 | ||
1297 | fips/fips.c (1.1.2.10), "Exp", lines: +1 -0 | ||
1298 | |||
1299 | Fix memory leak. | ||
1300 | |||
1301 | 2005-03-27 05:36 steve | ||
1302 | |||
1303 | Changed: | ||
1304 | crypto/evp/e_null.c (1.9.2.1), "Exp", lines: +1 -1 | ||
1305 | ssl/s3_lib.c (1.57.2.13), "Exp", lines: +3 -3 | ||
1306 | |||
1307 | Allow 'null' cipher and appropriate Kerberos ciphersuites in FIPS | ||
1308 | mode. | ||
1309 | |||
1310 | 2005-04-14 14:44 steve | ||
1311 | |||
1312 | Changed: | ||
1313 | fips/fipshashes.sha1 (1.1.2.1), "Exp", lines: +29 -0 | ||
1314 | util/checkhash.pl (1.1.2.1), "Exp", lines: +181 -0 | ||
1315 | |||
1316 | Perl script that checks or rebuilds FIPS hash files. This works on | ||
1317 | both Unix and Windows. | ||
1318 | |||
1319 | Merge all FIPS hash files into a single hash file | ||
1320 | fips/fips.sha1 | ||
1321 | |||
1322 | 2005-04-15 05:27 steve | ||
1323 | |||
1324 | Changed: | ||
1325 | fips/Makefile (1.1.4.9), "Exp", lines: +1 -1 | ||
1326 | fips/aes/Makefile (1.1.4.4), "Exp", lines: +1 -4 | ||
1327 | fips/des/Makefile (1.1.4.6), "Exp", lines: +1 -4 | ||
1328 | fips/dh/Makefile (1.1.2.5), "Exp", lines: +1 -4 | ||
1329 | fips/dsa/Makefile (1.1.4.4), "Exp", lines: +1 -4 | ||
1330 | fips/rand/Makefile (1.1.4.3), "Exp", lines: +1 -4 | ||
1331 | fips/rsa/Makefile (1.1.4.5), "Exp", lines: +1 -4 | ||
1332 | fips/sha1/Makefile (1.1.4.9), "Exp", lines: +1 -7 | ||
1333 | |||
1334 | Update hash checking in makefiles to use new perl script. | ||
1335 | |||
1336 | 2005-04-17 06:37 steve | ||
1337 | |||
1338 | Changed: | ||
1339 | util/checkhash.pl (1.1.2.2), "Exp", lines: +163 -127 | ||
1340 | |||
1341 | Modify checkhash.pl so it can be run standalone or included as a | ||
1342 | funtion in another perl script. | ||
1343 | |||
1344 | 2005-04-17 16:00 appro | ||
1345 | |||
1346 | Changed: | ||
1347 | fips/sha1/Makefile (1.1.4.10), "Exp", lines: +9 -5 | ||
1348 | |||
1349 | Bring back fips_standalone_sha1. | ||
1350 | |||
1351 | 2005-04-17 16:17 appro | ||
1352 | |||
1353 | Deleted: | ||
1354 | fips/sha1/asm/sx86-elf.s (1.1.4.4) | ||
1355 | Changed: | ||
1356 | Configure (1.314.2.114), "Exp", lines: +1 -1 | ||
1357 | fips/fipshashes.sha1 (1.1.2.2), "Exp", lines: +1 -1 | ||
1358 | fips/sha1/Makefile (1.1.4.11), "Exp", lines: +1 -1 | ||
1359 | fips/sha1/standalone.sha1 (1.1.2.13), "Exp", lines: +1 -1 | ||
1360 | fips/sha1/asm/fips-sx86-elf.s (1.1.2.1), "Exp", lines: +1568 -0 | ||
1361 | |||
1362 | Rename fips/sha1/sx86-elf.s to fips/sha1/fips-sx86-elf.s. | ||
1363 | |||
1364 | 2005-04-17 16:21 steve | ||
1365 | |||
1366 | Changed: | ||
1367 | util/checkhash.pl (1.1.2.3), "Exp", lines: +2 -0 | ||
1368 | |||
1369 | Return 0 for successful hash check. | ||
1370 | |||
1371 | 2005-04-17 16:54 appro | ||
1372 | |||
1373 | Changed: | ||
1374 | Configure (1.314.2.116), "Exp", lines: +8 -1 | ||
1375 | Makefile.org (1.154.2.99), "Exp", lines: +3 -2 | ||
1376 | crypto/aes/aes_cbc.c (1.1.2.11), "Exp", lines: +2 -0 | ||
1377 | fips/fipshashes.sha1 (1.1.2.4), "Exp", lines: +1 -0 | ||
1378 | fips/aes/Makefile (1.1.4.5), "Exp", lines: +4 -2 | ||
1379 | fips/aes/asm/fips-ax86-elf.s (1.1.2.1), "Exp", lines: +1822 -0 | ||
1380 | |||
1381 | Throw in fips/aes/asm/fips-ax86-elf.s. | ||
1382 | |||
1383 | 2005-04-17 16:35 appro | ||
1384 | |||
1385 | Changed: | ||
1386 | Configure (1.314.2.115), "Exp", lines: +1 -1 | ||
1387 | fips/fipshashes.sha1 (1.1.2.3), "Exp", lines: +1 -1 | ||
1388 | fips/des/asm/fips-dx86-elf.s (1.1.4.2), "Exp", lines: +108 -98 | ||
1389 | |||
1390 | Regenerate fips/des/asm/fips-dx86-elf.s with -fPIC flag. | ||
1391 | |||
1392 | 2005-04-17 17:26 appro | ||
1393 | |||
1394 | Changed: | ||
1395 | crypto/cryptlib.c (1.32.2.18), "Exp", lines: +6 -55 | ||
1396 | crypto/crypto.h (1.62.2.11), "Exp", lines: +0 -3 | ||
1397 | fips/fips.c (1.1.2.11), "Exp", lines: +62 -8 | ||
1398 | fips/fips.h (1.1.2.7), "Exp", lines: +2 -3 | ||
1399 | fips/fips_locl.h (1.1.4.3), "Exp", lines: +6 -3 | ||
1400 | fips/fipshashes.sha1 (1.1.2.5), "Exp", lines: +4 -4 | ||
1401 | fips/rand/fips_rand.c (1.1.2.10), "Exp", lines: +3 -1 | ||
1402 | fips/rsa/fips_rsa_gen.c (1.1.4.4), "Exp", lines: +4 -2 | ||
1403 | |||
1404 | Resolve minor binary compatibility issues in fips. | ||
1405 | |||
1406 | 2005-04-17 18:22 appro | ||
1407 | |||
1408 | Changed: | ||
1409 | fips/fipshashes.sha1 (1.1.2.6), "Exp", lines: +12 -12 | ||
1410 | fips/des/fips_des_locl.h (1.1.2.4), "Exp", lines: +1 -1 | ||
1411 | fips/des/fips_set_key.c (1.1.4.4), "Exp", lines: +2 -2 | ||
1412 | fips/dh/fips_dh_key.c (1.1.2.3), "Exp", lines: +1 -1 | ||
1413 | fips/dsa/fips_dsa_ossl.c (1.1.2.7), "Exp", lines: +1 -1 | ||
1414 | fips/dsa/fips_dsa_selftest.c (1.1.4.2), "Exp", lines: +3 -3 | ||
1415 | fips/rand/fips_rand.c (1.1.2.11), "Exp", lines: +2 -2 | ||
1416 | fips/rand/fips_rand.h (1.1.2.5), "Exp", lines: +1 -1 | ||
1417 | fips/rsa/fips_rsa_eay.c (1.1.4.4), "Exp", lines: +1 -1 | ||
1418 | fips/rsa/fips_rsa_gen.c (1.1.4.5), "Exp", lines: +1 -1 | ||
1419 | fips/rsa/fips_rsa_selftest.c (1.1.4.5), "Exp", lines: +11 -11 | ||
1420 | fips/sha1/fips_sha1_selftest.c (1.1.4.2), "Exp", lines: +1 -1 | ||
1421 | fips/sha1/fips_sha1dgst.c (1.1.2.5), "Exp", lines: +1 -1 | ||
1422 | fips/sha1/standalone.sha1 (1.1.2.14), "Exp", lines: +2 -2 | ||
1423 | |||
1424 | Minor fips const-ification. | ||
1425 | |||
1426 | 2005-04-18 07:02 steve | ||
1427 | |||
1428 | Changed: | ||
1429 | crypto/bf/bf_skey.c (1.6.2.2), "Exp", lines: +1 -0 | ||
1430 | crypto/cast/c_skey.c (1.5.6.2), "Exp", lines: +1 -0 | ||
1431 | crypto/idea/i_skey.c (1.5.6.2), "Exp", lines: +1 -0 | ||
1432 | crypto/rc2/rc2_skey.c (1.4.6.2), "Exp", lines: +1 -0 | ||
1433 | crypto/rc4/rc4_skey.c (1.10.8.3), "Exp", lines: +1 -0 | ||
1434 | crypto/rc5/rc5_skey.c (1.4.6.2), "Exp", lines: +1 -0 | ||
1435 | |||
1436 | Pick up definition of FIPS_mode() in fips.h to avoid warnings. | ||
1437 | |||
1438 | 2005-04-18 10:34 steve | ||
1439 | |||
1440 | Deleted: | ||
1441 | fips/fingerprint.sha1 (1.1.2.14) | ||
1442 | fips/fips_check_sha1 (1.1.2.8) | ||
1443 | fips/fips_make_sha1 (1.1.2.7) | ||
1444 | fips/aes/fingerprint.sha1 (1.1.2.7) | ||
1445 | fips/des/fingerprint.sha1 (1.1.2.6) | ||
1446 | fips/dh/fingerprint.sha1 (1.1.2.4) | ||
1447 | fips/dsa/fingerprint.sha1 (1.1.2.7) | ||
1448 | fips/rand/fingerprint.sha1 (1.1.2.10) | ||
1449 | fips/rsa/fingerprint.sha1 (1.1.4.7) | ||
1450 | fips/sha1/fingerprint.sha1 (1.1.2.12) | ||
1451 | Changed: | ||
1452 | fips/sha1/Makefile (1.1.4.12), "Exp", lines: +1 -4 | ||
1453 | |||
1454 | Remove obsolete fingerprint.sha1 files and associated scripts. | ||
1455 | Delete test in fips/sha1/Makefile: the top level test checks the | ||
1456 | same files. | ||
1457 | |||
1458 | 2005-04-19 09:11 appro | ||
1459 | |||
1460 | Deleted: | ||
1461 | fips/fipshashes.sha1 (1.1.2.7) | ||
1462 | fips/sha1/standalone.sha1 (1.1.2.15) | ||
1463 | Changed: | ||
1464 | fips/fipshashes.c (1.1.2.1), "Exp", lines: +32 -0 | ||
1465 | util/checkhash.pl (1.1.2.4), "Exp", lines: +7 -4 | ||
1466 | |||
1467 | Maintain fingerprint hashes as C source. | ||
1468 | |||
1469 | 2005-04-19 09:17 appro | ||
1470 | |||
1471 | Changed: | ||
1472 | util/checkhash.pl (1.1.2.5), "Exp", lines: +1 -1 | ||
1473 | |||
1474 | Complete the transition C-code hashes. | ||
1475 | |||
1476 | 2005-04-21 19:06 steve | ||
1477 | |||
1478 | Changed: | ||
1479 | apps/openssl.c (1.48.2.13), "Exp", lines: +0 -2 | ||
1480 | fips/fips.c (1.1.2.12), "Exp", lines: +0 -27 | ||
1481 | fips/fips.h (1.1.2.8), "Exp", lines: +0 -2 | ||
1482 | fips/fipshashes.c (1.1.2.2), "Exp", lines: +2 -2 | ||
1483 | |||
1484 | Remove defunct FIPS_allow_md5() and related functions. | ||
1485 | |||
1486 | 2005-04-22 06:15 appro | ||
1487 | |||
1488 | Changed: | ||
1489 | fips/fips.c (1.1.2.13), "Exp", lines: +3 -3 | ||
1490 | fips/fips_err.h (1.1.4.4), "Exp", lines: +3 -3 | ||
1491 | fips/fipshashes.c (1.1.2.4), "Exp", lines: +2 -2 | ||
1492 | |||
1493 | Move some variables to .bss. | ||
1494 | |||
diff --git a/src/lib/libssl/src/INSTALL.WCE b/src/lib/libssl/src/INSTALL.WCE index ac587d6bd2..adc03f41d4 100644 --- a/src/lib/libssl/src/INSTALL.WCE +++ b/src/lib/libssl/src/INSTALL.WCE | |||
@@ -11,8 +11,11 @@ | |||
11 | You also need Perl for Win32. You will need ActiveState Perl, available | 11 | You also need Perl for Win32. You will need ActiveState Perl, available |
12 | from http://www.activestate.com/ActivePerl. | 12 | from http://www.activestate.com/ActivePerl. |
13 | 13 | ||
14 | Windows CE support in OpenSSL relies on wcecompat. All Windows CE specific | 14 | Windows CE support in OpenSSL relies on wcecompat and therefore it's |
15 | issues should be directed to www.essemer.com.au. | 15 | appropriate to check http://www.essemer.com.au/windowsce/ for updates in |
16 | case of compilation problems. As for the moment of this writing version | ||
17 | 1.1 is available and actually required for WCE 4.2 and newer platforms. | ||
18 | All Windows CE specific issues should be directed to www.essemer.com.au. | ||
16 | 19 | ||
17 | The C Runtime Library implementation for Windows CE that is included with | 20 | The C Runtime Library implementation for Windows CE that is included with |
18 | Microsoft eMbedded Visual C++ 3.0 is incomplete and in some places | 21 | Microsoft eMbedded Visual C++ 3.0 is incomplete and in some places |
diff --git a/src/lib/libssl/src/Makefile b/src/lib/libssl/src/Makefile index 398fd3d5fd..5aec3a2099 100644 --- a/src/lib/libssl/src/Makefile +++ b/src/lib/libssl/src/Makefile | |||
@@ -4,16 +4,16 @@ | |||
4 | ## Makefile for OpenSSL | 4 | ## Makefile for OpenSSL |
5 | ## | 5 | ## |
6 | 6 | ||
7 | VERSION=0.9.7j | 7 | VERSION=0.9.8h |
8 | MAJOR=0 | 8 | MAJOR=0 |
9 | MINOR=9.7 | 9 | MINOR=9.8 |
10 | SHLIB_VERSION_NUMBER=0.9.7 | 10 | SHLIB_VERSION_NUMBER=0.9.8 |
11 | SHLIB_VERSION_HISTORY= | 11 | SHLIB_VERSION_HISTORY= |
12 | SHLIB_MAJOR=0 | 12 | SHLIB_MAJOR=0 |
13 | SHLIB_MINOR=9.7 | 13 | SHLIB_MINOR=9.8 |
14 | SHLIB_EXT= | 14 | SHLIB_EXT= |
15 | PLATFORM=dist | 15 | PLATFORM=dist |
16 | OPTIONS= no-krb5 | 16 | OPTIONS= no-camellia no-cms no-gmp no-krb5 no-mdc2 no-montasm no-rc5 no-rfc3779 no-seed no-shared no-tlsext no-zlib no-zlib-dynamic |
17 | CONFIGURE_ARGS=dist | 17 | CONFIGURE_ARGS=dist |
18 | SHLIB_TARGET= | 18 | SHLIB_TARGET= |
19 | 19 | ||
@@ -60,9 +60,8 @@ OPENSSLDIR=/usr/local/ssl | |||
60 | # PKCS1_CHECK - pkcs1 tests. | 60 | # PKCS1_CHECK - pkcs1 tests. |
61 | 61 | ||
62 | CC= cc | 62 | CC= cc |
63 | #CFLAG= -DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -m486 -Wall -Wuninitialized -DSHA1_ASM -DMD5_ASM -DRMD160_ASM | 63 | CFLAG= -O |
64 | CFLAG= -DOPENSSL_NO_KRB5 -O | 64 | DEPFLAG= -DOPENSSL_NO_CAMELLIA -DOPENSSL_NO_CMS -DOPENSSL_NO_GMP -DOPENSSL_NO_MDC2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_SEED -DOPENSSL_NO_TLSEXT |
65 | DEPFLAG= | ||
66 | PEX_LIBS= | 65 | PEX_LIBS= |
67 | EX_LIBS= | 66 | EX_LIBS= |
68 | EXE_EXT= | 67 | EXE_EXT= |
@@ -82,93 +81,22 @@ MAKEDEPPROG=makedepend | |||
82 | AS=$(CC) -c | 81 | AS=$(CC) -c |
83 | ASFLAG=$(CFLAG) | 82 | ASFLAG=$(CFLAG) |
84 | 83 | ||
85 | # Set BN_ASM to bn_asm.o if you want to use the C version | ||
86 | BN_ASM= bn_asm.o | ||
87 | #BN_ASM= bn_asm.o | ||
88 | #BN_ASM= asm/bn86-elf.o # elf, linux-elf | ||
89 | #BN_ASM= asm/bn86-sol.o # solaris | ||
90 | #BN_ASM= asm/bn86-out.o # a.out, FreeBSD | ||
91 | #BN_ASM= asm/bn86bsdi.o # bsdi | ||
92 | #BN_ASM= asm/alpha.o # DEC Alpha | ||
93 | #BN_ASM= asm/pa-risc2.o # HP-UX PA-RISC | ||
94 | #BN_ASM= asm/r3000.o # SGI MIPS cpu | ||
95 | #BN_ASM= asm/sparc.o # Sun solaris/SunOS | ||
96 | #BN_ASM= asm/bn-win32.o # Windows 95/NT | ||
97 | #BN_ASM= asm/x86w16.o # 16 bit code for Windows 3.1/DOS | ||
98 | #BN_ASM= asm/x86w32.o # 32 bit code for Windows 3.1 | ||
99 | |||
100 | # For x86 assembler: Set PROCESSOR to 386 if you want to support | 84 | # For x86 assembler: Set PROCESSOR to 386 if you want to support |
101 | # the 80386. | 85 | # the 80386. |
102 | PROCESSOR= | 86 | PROCESSOR= |
103 | 87 | ||
104 | # Set DES_ENC to des_enc.o if you want to use the C version | 88 | # CPUID module collects small commonly used assembler snippets |
105 | #There are 4 x86 assember options. | 89 | CPUID_OBJ= |
106 | FIPS_DES_ENC= | 90 | BN_ASM= bn_asm.o |
107 | FIPS_AES_ENC= | ||
108 | DES_ENC= des_enc.o fcrypt_b.o | 91 | DES_ENC= des_enc.o fcrypt_b.o |
109 | #DES_ENC= des_enc.o fcrypt_b.o # C | 92 | AES_ASM_OBJ= aes_core.o aes_cbc.o |
110 | #DES_ENC= asm/dx86-elf.o asm/yx86-elf.o # elf | ||
111 | #DES_ENC= asm/dx86-sol.o asm/yx86-sol.o # solaris | ||
112 | #DES_ENC= asm/dx86-out.o asm/yx86-out.o # a.out, FreeBSD | ||
113 | #DES_ENC= asm/dx86bsdi.o asm/yx86bsdi.o # bsdi | ||
114 | |||
115 | # Set BF_ENC to bf_enc.o if you want to use the C version | ||
116 | #There are 4 x86 assember options. | ||
117 | BF_ENC= bf_enc.o | 93 | BF_ENC= bf_enc.o |
118 | #BF_ENC= bf_enc.o | ||
119 | #BF_ENC= asm/bx86-elf.o # elf | ||
120 | #BF_ENC= asm/bx86-sol.o # solaris | ||
121 | #BF_ENC= asm/bx86-out.o # a.out, FreeBSD | ||
122 | #BF_ENC= asm/bx86bsdi.o # bsdi | ||
123 | |||
124 | # Set CAST_ENC to c_enc.o if you want to use the C version | ||
125 | #There are 4 x86 assember options. | ||
126 | CAST_ENC= c_enc.o | 94 | CAST_ENC= c_enc.o |
127 | #CAST_ENC= c_enc.o | 95 | RC4_ENC= rc4_enc.o rc4_skey.o |
128 | #CAST_ENC= asm/cx86-elf.o # elf | ||
129 | #CAST_ENC= asm/cx86-sol.o # solaris | ||
130 | #CAST_ENC= asm/cx86-out.o # a.out, FreeBSD | ||
131 | #CAST_ENC= asm/cx86bsdi.o # bsdi | ||
132 | |||
133 | # Set RC4_ENC to rc4_enc.o if you want to use the C version | ||
134 | #There are 4 x86 assember options. | ||
135 | RC4_ENC= rc4_enc.o | ||
136 | #RC4_ENC= rc4_enc.o | ||
137 | #RC4_ENC= asm/rx86-elf.o # elf | ||
138 | #RC4_ENC= asm/rx86-sol.o # solaris | ||
139 | #RC4_ENC= asm/rx86-out.o # a.out, FreeBSD | ||
140 | #RC4_ENC= asm/rx86bsdi.o # bsdi | ||
141 | |||
142 | # Set RC5_ENC to rc5_enc.o if you want to use the C version | ||
143 | #There are 4 x86 assember options. | ||
144 | RC5_ENC= rc5_enc.o | 96 | RC5_ENC= rc5_enc.o |
145 | #RC5_ENC= rc5_enc.o | ||
146 | #RC5_ENC= asm/r586-elf.o # elf | ||
147 | #RC5_ENC= asm/r586-sol.o # solaris | ||
148 | #RC5_ENC= asm/r586-out.o # a.out, FreeBSD | ||
149 | #RC5_ENC= asm/r586bsdi.o # bsdi | ||
150 | |||
151 | # Also need MD5_ASM defined | ||
152 | MD5_ASM_OBJ= | 97 | MD5_ASM_OBJ= |
153 | #MD5_ASM_OBJ= asm/mx86-elf.o # elf | ||
154 | #MD5_ASM_OBJ= asm/mx86-sol.o # solaris | ||
155 | #MD5_ASM_OBJ= asm/mx86-out.o # a.out, FreeBSD | ||
156 | #MD5_ASM_OBJ= asm/mx86bsdi.o # bsdi | ||
157 | |||
158 | # Also need SHA1_ASM defined | ||
159 | SHA1_ASM_OBJ= | 98 | SHA1_ASM_OBJ= |
160 | FIPS_SHA1_ASM_OBJ= | ||
161 | #SHA1_ASM_OBJ= asm/sx86-elf.o # elf | ||
162 | #SHA1_ASM_OBJ= asm/sx86-sol.o # solaris | ||
163 | #SHA1_ASM_OBJ= asm/sx86-out.o # a.out, FreeBSD | ||
164 | #SHA1_ASM_OBJ= asm/sx86bsdi.o # bsdi | ||
165 | |||
166 | # Also need RMD160_ASM defined | ||
167 | RMD160_ASM_OBJ= | 99 | RMD160_ASM_OBJ= |
168 | #RMD160_ASM_OBJ= asm/rm86-elf.o # elf | ||
169 | #RMD160_ASM_OBJ= asm/rm86-sol.o # solaris | ||
170 | #RMD160_ASM_OBJ= asm/rm86-out.o # a.out, FreeBSD | ||
171 | #RMD160_ASM_OBJ= asm/rm86bsdi.o # bsdi | ||
172 | 100 | ||
173 | # KRB5 stuff | 101 | # KRB5 stuff |
174 | KRB5_INCLUDES= | 102 | KRB5_INCLUDES= |
@@ -178,36 +106,20 @@ LIBKRB5= | |||
178 | ZLIB_INCLUDE= | 106 | ZLIB_INCLUDE= |
179 | LIBZLIB= | 107 | LIBZLIB= |
180 | 108 | ||
181 | # This is the location of fipscanister.o and friends. | 109 | DIRS= crypto ssl engines apps test tools |
182 | # The FIPS module build will place it $(INSTALLTOP)/lib | ||
183 | # but since $(INSTALLTOP) can only take the default value | ||
184 | # when the module is built it will be in /usr/local/ssl/lib | ||
185 | # $(INSTALLTOP) for this build make be different so hard | ||
186 | # code the path. | ||
187 | |||
188 | FIPSLIBDIR=/usr/local/ssl/lib | ||
189 | |||
190 | # Shared library base address. Currently only used on Windows. | ||
191 | # | ||
192 | |||
193 | BASEADDR=0xFB00000 | ||
194 | |||
195 | # When we're prepared to use shared libraries in the programs we link here | ||
196 | # we might set SHLIB_MARK to '$(SHARED_LIBS)'. | ||
197 | SHLIB_MARK= | ||
198 | |||
199 | DIRS= crypto fips-1.0 ssl $(SHLIB_MARK) apps test tools | ||
200 | SHLIBDIRS= crypto ssl | 110 | SHLIBDIRS= crypto ssl |
201 | 111 | ||
202 | # dirs in crypto to build | 112 | # dirs in crypto to build |
203 | SDIRS= objects \ | 113 | SDIRS= \ |
204 | md2 md4 md5 sha mdc2 hmac ripemd \ | 114 | objects \ |
205 | des rc2 rc4 rc5 idea bf cast \ | 115 | md2 md4 md5 sha hmac ripemd \ |
206 | bn ec rsa dsa dh dso engine aes \ | 116 | des aes rc2 rc4 idea bf cast \ |
117 | bn ec rsa dsa ecdsa dh ecdh dso engine \ | ||
207 | buffer bio stack lhash rand err \ | 118 | buffer bio stack lhash rand err \ |
208 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 | 119 | evp asn1 pem x509 x509v3 conf txt_db pkcs7 pkcs12 comp ocsp ui krb5 \ |
209 | 120 | store pqueue | |
210 | FDIRS= sha rand des aes dsa rsa dh hmac | 121 | # keep in mind that the above list is adjusted by ./Configure |
122 | # according to no-xxx arguments... | ||
211 | 123 | ||
212 | # tests to perform. "alltests" is a special word indicating that all tests | 124 | # tests to perform. "alltests" is a special word indicating that all tests |
213 | # should be performed. | 125 | # should be performed. |
@@ -240,38 +152,106 @@ WTARFILE= $(NAME)-win.tar | |||
240 | EXHEADER= e_os2.h | 152 | EXHEADER= e_os2.h |
241 | HEADER= e_os.h | 153 | HEADER= e_os.h |
242 | 154 | ||
243 | # When we're prepared to use shared libraries in the programs we link here | 155 | all: Makefile build_all openssl.pc libssl.pc libcrypto.pc |
244 | # we might remove 'clean-shared' from the targets to perform at this stage | 156 | |
157 | # as we stick to -e, CLEARENV ensures that local variables in lower | ||
158 | # Makefiles remain local and variable. $${VAR+VAR} is tribute to Korn | ||
159 | # shell, which [annoyingly enough] terminates unset with error if VAR | ||
160 | # is not present:-( TOP= && unset TOP is tribute to HP-UX /bin/sh, | ||
161 | # which terminates unset with error if no variable was present:-( | ||
162 | CLEARENV= TOP= && unset TOP $${LIB+LIB} $${LIBS+LIBS} \ | ||
163 | $${INCLUDE+INCLUDE} $${INCLUDES+INCLUDES} \ | ||
164 | $${DIR+DIR} $${DIRS+DIRS} $${SRC+SRC} \ | ||
165 | $${LIBSRC+LIBSRC} $${LIBOBJ+LIBOBJ} $${ALL+ALL} \ | ||
166 | $${EXHEADER+EXHEADER} $${HEADER+HEADER} \ | ||
167 | $${GENERAL+GENERAL} $${CFLAGS+CFLAGS} \ | ||
168 | $${ASFLAGS+ASFLAGS} $${AFLAGS+AFLAGS} \ | ||
169 | $${LDCMD+LDCMD} $${LDFLAGS+LDFLAGS} \ | ||
170 | $${SHAREDCMD+SHAREDCMD} $${SHAREDFLAGS+SHAREDFLAGS} \ | ||
171 | $${SHARED_LIB+SHARED_LIB} $${LIBEXTRAS+LIBEXTRAS} | ||
172 | |||
173 | BUILDENV= PLATFORM='${PLATFORM}' PROCESSOR='${PROCESSOR}' \ | ||
174 | CC='${CC}' CFLAG='${CFLAG}' \ | ||
175 | AS='${CC}' ASFLAG='${CFLAG} -c' \ | ||
176 | AR='${AR}' PERL='${PERL}' RANLIB='${RANLIB}' \ | ||
177 | SDIRS='${SDIRS}' LIBRPATH='${INSTALLTOP}/lib' \ | ||
178 | INSTALL_PREFIX='${INSTALL_PREFIX}' \ | ||
179 | INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' \ | ||
180 | MAKEDEPEND='$$$${TOP}/util/domd $$$${TOP} -MD ${MAKEDEPPROG}' \ | ||
181 | DEPFLAG='-DOPENSSL_NO_DEPRECATED ${DEPFLAG}' \ | ||
182 | MAKEDEPPROG='${MAKEDEPPROG}' \ | ||
183 | SHARED_LDFLAGS='${SHARED_LDFLAGS}' \ | ||
184 | KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' \ | ||
185 | EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' \ | ||
186 | SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' \ | ||
187 | PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' \ | ||
188 | CPUID_OBJ='${CPUID_OBJ}' \ | ||
189 | BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' \ | ||
190 | AES_ASM_OBJ='${AES_ASM_OBJ}' \ | ||
191 | BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' \ | ||
192 | RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' \ | ||
193 | SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' \ | ||
194 | MD5_ASM_OBJ='${MD5_ASM_OBJ}' \ | ||
195 | RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' \ | ||
196 | THIS=$${THIS:-$@} MAKEFILE=Makefile MAKEOVERRIDES= | ||
197 | # MAKEOVERRIDES= effectively "equalizes" GNU-ish and SysV-ish make flavors, | ||
198 | # which in turn eliminates ambiguities in variable treatment with -e. | ||
199 | |||
200 | # BUILD_CMD is a generic macro to build a given target in a given | ||
201 | # subdirectory. The target must be given through the shell variable | ||
202 | # `target' and the subdirectory to build in must be given through `dir'. | ||
203 | # This macro shouldn't be used directly, use RECURSIVE_BUILD_CMD or | ||
204 | # BUILD_ONE_CMD instead. | ||
205 | # | ||
206 | # BUILD_ONE_CMD is a macro to build a given target in a given | ||
207 | # subdirectory if that subdirectory is part of $(DIRS). It requires | ||
208 | # exactly the same shell variables as BUILD_CMD. | ||
209 | # | ||
210 | # RECURSIVE_BUILD_CMD is a macro to build a given target in all | ||
211 | # subdirectories defined in $(DIRS). It requires that the target | ||
212 | # is given through the shell variable `target'. | ||
213 | BUILD_CMD= if [ -d "$$dir" ]; then \ | ||
214 | ( cd $$dir && echo "making $$target in $$dir..." && \ | ||
215 | $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. DIR=$$dir $$target \ | ||
216 | ) || exit 1; \ | ||
217 | fi | ||
218 | RECURSIVE_BUILD_CMD=for dir in $(DIRS); do $(BUILD_CMD); done | ||
219 | BUILD_ONE_CMD=\ | ||
220 | if echo " $(DIRS) " | grep " $$dir " >/dev/null 2>/dev/null; then \ | ||
221 | $(BUILD_CMD); \ | ||
222 | fi | ||
245 | 223 | ||
246 | all: Makefile sub_all openssl.pc | 224 | reflect: |
225 | @[ -n "$(THIS)" ] && $(CLEARENV) && $(MAKE) $(THIS) -e $(BUILDENV) | ||
247 | 226 | ||
248 | sub_all: | 227 | sub_all: build_all |
249 | @for i in $(DIRS); \ | 228 | build_all: build_libs build_apps build_tests build_tools |
250 | do \ | ||
251 | if [ -d "$$i" ]; then \ | ||
252 | (cd $$i && echo "making all in $$i..." && \ | ||
253 | $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' AS='${AS}' ASFLAG='${ASFLAG}' SDIRS='$(SDIRS)' FDIRS='$(FDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' FIPS_DES_ENC='${FIPS_DES_ENC}' FIPS_AES_ENC='${FIPS_AES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' FIPS_SHA1_ASM_OBJ='${FIPS_SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' FIPSLIBDIR='${FIPSLIBDIR}' all ) || exit 1; \ | ||
254 | else \ | ||
255 | $(MAKE) $$i; \ | ||
256 | fi; \ | ||
257 | done; | ||
258 | 229 | ||
259 | sub_target: | 230 | build_libs: build_crypto build_ssl build_engines |
260 | @for i in $(DIRS); \ | 231 | |
261 | do \ | 232 | build_crypto: |
262 | if [ -d "$$i" ]; then \ | 233 | @dir=crypto; target=all; $(BUILD_ONE_CMD) |
263 | (cd $$i && echo "making $(TARGET) in $$i..." && \ | 234 | build_ssl: |
264 | $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' AS='${AS}' ASFLAG='${ASFLAG}' SDIRS='$(SDIRS)' FDIRS='$(FDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' FIPS_DES_ENC='${FIPS_DES_ENC}' FIPS_AES_ENC='${FIPS_AES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' FIPS_SHA1_ASM_OBJ='${FIPS_SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' TARGET='$(TARGET)' sub_target ) || exit 1; \ | 235 | @dir=ssl; target=all; $(BUILD_ONE_CMD) |
265 | else \ | 236 | build_engines: |
266 | $(MAKE) $$i; \ | 237 | @dir=engines; target=all; $(BUILD_ONE_CMD) |
267 | fi; \ | 238 | build_apps: |
268 | done; | 239 | @dir=apps; target=all; $(BUILD_ONE_CMD) |
240 | build_tests: | ||
241 | @dir=test; target=all; $(BUILD_ONE_CMD) | ||
242 | build_tools: | ||
243 | @dir=tools; target=all; $(BUILD_ONE_CMD) | ||
244 | |||
245 | all_testapps: build_libs build_testapps | ||
246 | build_testapps: | ||
247 | @dir=crypto; target=testapps; $(BUILD_ONE_CMD) | ||
269 | 248 | ||
270 | libcrypto$(SHLIB_EXT): libcrypto.a | 249 | libcrypto$(SHLIB_EXT): libcrypto.a |
271 | @if [ "$(SHLIB_TARGET)" != "" ]; then \ | 250 | @if [ "$(SHLIB_TARGET)" != "" ]; then \ |
272 | $(MAKE) SHLIBDIRS=crypto build-shared; \ | 251 | $(MAKE) SHLIBDIRS=crypto build-shared; \ |
273 | else \ | 252 | else \ |
274 | echo "There's no support for shared libraries on this platform" >&2; \ | 253 | echo "There's no support for shared libraries on this platform" >&2; \ |
254 | exit 1; \ | ||
275 | fi | 255 | fi |
276 | 256 | ||
277 | libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a | 257 | libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a |
@@ -279,10 +259,11 @@ libssl$(SHLIB_EXT): libcrypto$(SHLIB_EXT) libssl.a | |||
279 | $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \ | 259 | $(MAKE) SHLIBDIRS=ssl SHLIBDEPS='-lcrypto' build-shared; \ |
280 | else \ | 260 | else \ |
281 | echo "There's no support for shared libraries on this platform" >&2; \ | 261 | echo "There's no support for shared libraries on this platform" >&2; \ |
262 | exit 1; \ | ||
282 | fi | 263 | fi |
283 | 264 | ||
284 | clean-shared: | 265 | clean-shared: |
285 | @for i in $(SHLIBDIRS); do \ | 266 | @set -e; for i in $(SHLIBDIRS); do \ |
286 | if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \ | 267 | if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \ |
287 | tmp="$(SHARED_LIBS_LINK_EXTS)"; \ | 268 | tmp="$(SHARED_LIBS_LINK_EXTS)"; \ |
288 | for j in $${tmp:-x}; do \ | 269 | for j in $${tmp:-x}; do \ |
@@ -291,312 +272,59 @@ clean-shared: | |||
291 | fi; \ | 272 | fi; \ |
292 | ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \ | 273 | ( set -x; rm -f lib$$i$(SHLIB_EXT) ); \ |
293 | if [ "$(PLATFORM)" = "Cygwin" ]; then \ | 274 | if [ "$(PLATFORM)" = "Cygwin" ]; then \ |
294 | ( set -x; rm -f cyg$$i-$(SHLIB_VERSION_NUMBER)$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \ | 275 | ( set -x; rm -f cyg$$i$(SHLIB_EXT) lib$$i$(SHLIB_EXT).a ); \ |
295 | fi; \ | 276 | fi; \ |
296 | done | 277 | done |
297 | 278 | ||
298 | link-shared: | 279 | link-shared: |
299 | @if [ -n "$(SHARED_LIBS_LINK_EXTS)" ]; then \ | 280 | @ set -e; for i in ${SHLIBDIRS}; do \ |
300 | tmp="$(SHARED_LIBS_LINK_EXTS)"; \ | 281 | $(MAKE) -f $(HERE)/Makefile.shared -e $(BUILDENV) \ |
301 | for i in $(SHLIBDIRS); do \ | 282 | LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
302 | prev=lib$$i$(SHLIB_EXT); \ | 283 | LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \ |
303 | for j in $${tmp:-x}; do \ | 284 | symlink.$(SHLIB_TARGET); \ |
304 | ( set -x; \ | 285 | libs="$$libs -l$$i"; \ |
305 | rm -f lib$$i$$j; ln -s $$prev lib$$i$$j ); \ | ||
306 | prev=lib$$i$$j; \ | ||
307 | done; \ | ||
308 | done; \ | ||
309 | fi | ||
310 | |||
311 | build-shared: clean-shared do_$(SHLIB_TARGET) link-shared | ||
312 | |||
313 | do_bsd-gcc-shared: do_gnu-shared | ||
314 | do_linux-shared: do_gnu-shared | ||
315 | do_gnu-shared: | ||
316 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
317 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
318 | libs="$(LIBKRB5) $$libs"; \ | ||
319 | fi; \ | ||
320 | ( set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
321 | -shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
322 | -Wl,-soname=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
323 | -Wl,-Bsymbolic \ | ||
324 | -Wl,--whole-archive lib$$i.a \ | ||
325 | -Wl,--no-whole-archive $$libs ${EX_LIBS} ) || exit 1; \ | ||
326 | libs="-l$$i $$libs"; \ | ||
327 | done | 286 | done |
328 | 287 | ||
329 | DETECT_GNU_LD=(${CC} -Wl,-V /dev/null 2>&1 | grep '^GNU ld' )>/dev/null | 288 | build-shared: do_$(SHLIB_TARGET) link-shared |
330 | |||
331 | # For Darwin AKA Mac OS/X (dyld) | ||
332 | do_darwin-shared: | ||
333 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
334 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
335 | libs="$(LIBKRB5) $$libs"; \ | ||
336 | fi; \ | ||
337 | ( set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
338 | --verbose -dynamiclib -o lib$$i${SHLIB_EXT} \ | ||
339 | lib$$i.a $$libs -all_load -current_version ${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
340 | -compatibility_version ${SHLIB_MAJOR}.`echo ${SHLIB_MINOR} | cut -d. -f1` \ | ||
341 | -install_name ${INSTALLTOP}/lib/lib$$i${SHLIB_EXT} ) || exit 1; \ | ||
342 | libs="-l`basename $$i${SHLIB_EXT} .dylib` $$libs"; \ | ||
343 | echo "" ; \ | ||
344 | done | ||
345 | |||
346 | do_cygwin-shared: | ||
347 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
348 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
349 | libs="$(LIBKRB5) $$libs"; \ | ||
350 | fi; \ | ||
351 | shlib=cyg$${i}-$(SHLIB_VERSION_NUMBER).dll; \ | ||
352 | [ "$(PLATFORM)" = "mingw" ] && shlib=$${i}eay32.dll; \ | ||
353 | [ -f apps/$$shlib ] && rm apps/$$shlib; \ | ||
354 | [ -f test/$$shlib ] && rm test/$$shlib; \ | ||
355 | base=; [ $$i = "crypto" ] && base=-Wl,--image-base,0x63000000; \ | ||
356 | ( set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
357 | -shared $$base -o $$shlib \ | ||
358 | -Wl,-Bsymbolic \ | ||
359 | -Wl,--whole-archive lib$$i.a \ | ||
360 | -Wl,--out-implib,lib$$i.dll.a \ | ||
361 | -Wl,--no-whole-archive $$libs ${EX_LIBS} ) || exit 1; \ | ||
362 | cp -p $$shlib apps/; cp -p $$shlib test/; \ | ||
363 | touch -c lib$$i.dll.a; \ | ||
364 | libs="-l$$i $$libs"; \ | ||
365 | done | ||
366 | |||
367 | # This assumes that GNU utilities are *not* used | ||
368 | do_alpha-osf1-shared: | ||
369 | if ${DETECT_GNU_LD}; then \ | ||
370 | $(MAKE) do_gnu-shared; \ | ||
371 | else \ | ||
372 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
373 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
374 | libs="$(LIBKRB5) $$libs"; \ | ||
375 | fi; \ | ||
376 | ( set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
377 | -shared -o lib$$i.so \ | ||
378 | -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \ | ||
379 | -all lib$$i.a -none $$libs ${EX_LIBS} ) || exit 1; \ | ||
380 | libs="-l$$i $$libs"; \ | ||
381 | done; \ | ||
382 | fi | ||
383 | |||
384 | # This assumes that GNU utilities are *not* used | ||
385 | # The difference between alpha-osf1-shared and tru64-shared is the `-msym' | ||
386 | # option passed to the linker. | ||
387 | do_tru64-shared: | ||
388 | if ${DETECT_GNU_LD}; then \ | ||
389 | $(MAKE) do_gnu-shared; \ | ||
390 | else \ | ||
391 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
392 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
393 | libs="$(LIBKRB5) $$libs"; \ | ||
394 | fi; \ | ||
395 | ( set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
396 | -shared -msym -o lib$$i.so \ | ||
397 | -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \ | ||
398 | -all lib$$i.a -none $$libs ${EX_LIBS} ) || exit 1; \ | ||
399 | libs="-l$$i $$libs"; \ | ||
400 | done; \ | ||
401 | fi | ||
402 | |||
403 | # This assumes that GNU utilities are *not* used | ||
404 | # The difference between tru64-shared and tru64-shared-rpath is the | ||
405 | # -rpath ${INSTALLTOP}/lib passed to the linker. | ||
406 | do_tru64-shared-rpath: | ||
407 | if ${DETECT_GNU_LD}; then \ | ||
408 | $(MAKE) do_gnu-shared; \ | ||
409 | else \ | ||
410 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
411 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
412 | libs="$(LIBKRB5) $$libs"; \ | ||
413 | fi; \ | ||
414 | ( set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
415 | -shared -msym -o lib$$i.so \ | ||
416 | -rpath ${INSTALLTOP}/lib \ | ||
417 | -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" \ | ||
418 | -all lib$$i.a -none $$libs ${EX_LIBS} ) || exit 1; \ | ||
419 | libs="-l$$i $$libs"; \ | ||
420 | done; \ | ||
421 | fi | ||
422 | |||
423 | |||
424 | # This assumes that GNU utilities are *not* used | ||
425 | do_solaris-shared: | ||
426 | if ${DETECT_GNU_LD}; then \ | ||
427 | $(MAKE) do_gnu-shared; \ | ||
428 | else \ | ||
429 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
430 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
431 | libs="$(LIBKRB5) $$libs"; \ | ||
432 | fi; \ | ||
433 | ( PATH=/usr/ccs/bin:$$PATH ; export PATH; \ | ||
434 | MINUSZ='-z '; \ | ||
435 | (${CC} -v 2>&1 | grep gcc) > /dev/null && MINUSZ='-Wl,-z,'; \ | ||
436 | set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
437 | -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
438 | -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
439 | -Wl,-Bsymbolic \ | ||
440 | $${MINUSZ}allextract lib$$i.a $${MINUSZ}defaultextract \ | ||
441 | $$libs ${EX_LIBS} ) || exit 1; \ | ||
442 | libs="-l$$i $$libs"; \ | ||
443 | done; \ | ||
444 | fi | ||
445 | |||
446 | # OpenServer 5 native compilers used | ||
447 | do_svr3-shared: | ||
448 | if ${DETECT_GNU_LD}; then \ | ||
449 | $(MAKE) do_gnu-shared; \ | ||
450 | else \ | ||
451 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
452 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
453 | libs="$(LIBKRB5) $$libs"; \ | ||
454 | fi; \ | ||
455 | ( PATH=/usr/ccs/bin:$$PATH ; export PATH; \ | ||
456 | find . -name "*.o" -print > allobjs ; \ | ||
457 | OBJS= ; export OBJS ; \ | ||
458 | for obj in `ar t lib$$i.a` ; do \ | ||
459 | OBJS="$${OBJS} `grep /$$obj allobjs`" ; \ | ||
460 | done ; \ | ||
461 | set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
462 | -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
463 | -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
464 | $${OBJS} $$libs ${EX_LIBS} ) || exit 1; \ | ||
465 | libs="-l$$i $$libs"; \ | ||
466 | done; \ | ||
467 | fi | ||
468 | 289 | ||
469 | # UnixWare 7 and OpenUNIX 8 native compilers used | 290 | do_$(SHLIB_TARGET): |
470 | do_svr5-shared: | 291 | @ set -e; libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ |
471 | if ${DETECT_GNU_LD}; then \ | ||
472 | $(MAKE) do_gnu-shared; \ | ||
473 | else \ | ||
474 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
475 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | 292 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ |
476 | libs="$(LIBKRB5) $$libs"; \ | 293 | libs="$(LIBKRB5) $$libs"; \ |
477 | fi; \ | 294 | fi; \ |
478 | ( PATH=/usr/ccs/bin:$$PATH ; export PATH; \ | 295 | $(CLEARENV) && $(MAKE) -f Makefile.shared -e $(BUILDENV) \ |
479 | SHARE_FLAG='-G'; \ | 296 | LIBNAME=$$i LIBVERSION=${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
480 | (${CC} -v 2>&1 | grep gcc) > /dev/null && SHARE_FLAG='-shared'; \ | 297 | LIBCOMPATVERSIONS=";${SHLIB_VERSION_HISTORY}" \ |
481 | find . -name "*.o" -print > allobjs ; \ | 298 | LIBDEPS="$$libs $(EX_LIBS)" \ |
482 | OBJS= ; export OBJS ; \ | 299 | link_a.$(SHLIB_TARGET); \ |
483 | for obj in `ar t lib$$i.a` ; do \ | ||
484 | OBJS="$${OBJS} `grep /$$obj allobjs`" ; \ | ||
485 | done ; \ | ||
486 | set -x; LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH \ | ||
487 | $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
488 | $${SHARE_FLAG} -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
489 | -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
490 | $${OBJS} $$libs ${EX_LIBS} ) || exit 1; \ | ||
491 | libs="-l$$i $$libs"; \ | 300 | libs="-l$$i $$libs"; \ |
492 | done; \ | ||
493 | fi | ||
494 | |||
495 | # This assumes that GNU utilities are *not* used | ||
496 | do_irix-shared: | ||
497 | if ${DETECT_GNU_LD}; then \ | ||
498 | $(MAKE) do_gnu-shared; \ | ||
499 | else \ | ||
500 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
501 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
502 | libs="$(LIBKRB5) $$libs"; \ | ||
503 | fi; \ | ||
504 | ( WHOLELIB="-all lib$$i.a -none"; \ | ||
505 | (${CC} -v 2>&1 | grep gcc) > /dev/null && WHOLELIB="-Wl,-all,lib$$i.a,-none"; \ | ||
506 | set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
507 | -shared -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
508 | -Wl,-soname,lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | ||
509 | $${WHOLELIB} $$libs ${EX_LIBS}) || exit 1; \ | ||
510 | libs="-l$$i $$libs"; \ | ||
511 | done; \ | ||
512 | fi | ||
513 | |||
514 | # This assumes that GNU utilities are *not* used | ||
515 | # | ||
516 | do_hpux-shared: | ||
517 | for i in ${SHLIBDIRS}; do \ | ||
518 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
519 | libs="$(LIBKRB5) $$libs"; \ | ||
520 | fi; \ | ||
521 | if expr $(PLATFORM) : '.*ia64' > /dev/null; then \ | ||
522 | shlib=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR}; \ | ||
523 | else \ | ||
524 | shlib=lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR}; \ | ||
525 | fi; \ | ||
526 | [ -f $$shlib ] && rm -f $$shlib; \ | ||
527 | ALLSYMSFLAGS='-Wl,-Fl'; \ | ||
528 | expr $(PLATFORM) : 'hpux64' > /dev/null && ALLSYMSFLAGS='-Wl,+forceload'; \ | ||
529 | ( set -x; $${FIPSLD:-${CC}} ${SHARED_LDFLAGS} \ | ||
530 | -Wl,-B,symbolic,+vnocompatwarnings,-z,+h,$$shlib \ | ||
531 | -o $$shlib $$ALLSYMSFLAGS,lib$$i.a -ldld ) || exit 1; \ | ||
532 | chmod a=rx $$shlib; \ | ||
533 | done | 301 | done |
534 | 302 | ||
535 | # The following method is said to work on all platforms. Tests will | 303 | libcrypto.pc: Makefile |
536 | # determine if that's how it's gong to be used. | 304 | @ ( echo 'prefix=$(INSTALLTOP)'; \ |
537 | # This assumes that for all but GNU systems, GNU utilities are *not* used. | 305 | echo 'exec_prefix=$${prefix}'; \ |
538 | # ALLSYMSFLAGS would be: | 306 | echo 'libdir=$${exec_prefix}/lib'; \ |
539 | # GNU systems: --whole-archive | 307 | echo 'includedir=$${prefix}/include'; \ |
540 | # Tru64 Unix: -all | 308 | echo ''; \ |
541 | # Solaris: -z allextract | 309 | echo 'Name: OpenSSL-libcrypto'; \ |
542 | # Irix: -all | 310 | echo 'Description: OpenSSL cryptography library'; \ |
543 | # HP/UX-32bit: -Fl | 311 | echo 'Version: '$(VERSION); \ |
544 | # HP/UX-64bit: +forceload | 312 | echo 'Requires: '; \ |
545 | # AIX: -bnogc | 313 | echo 'Libs: -L$${libdir} -lcrypto $(EX_LIBS)'; \ |
546 | # SHAREDFLAGS would be: | 314 | echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libcrypto.pc |
547 | # GNU systems: -shared -Wl,-soname=lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
548 | # Tru64 Unix: -shared \ | ||
549 | # -set_version "${SHLIB_VERSION_HISTORY}${SHLIB_VERSION_NUMBER}" | ||
550 | # Solaris: -G -h lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
551 | # Irix: -shared -Wl,-soname,lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
552 | # HP/UX-32bit: +vnocompatwarnings -b -z +s \ | ||
553 | # +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
554 | # HP/UX-64bit: -b -z +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} | ||
555 | # AIX: -G -bE:lib$$i.exp -bM:SRE | ||
556 | # SHAREDCMD would be: | ||
557 | # GNU systems: $(CC) | ||
558 | # Tru64 Unix: $(CC) | ||
559 | # Solaris: $(CC) | ||
560 | # Irix: $(CC) | ||
561 | # HP/UX-32bit: /usr/ccs/bin/ld | ||
562 | # HP/UX-64bit: /usr/ccs/bin/ld | ||
563 | # AIX: $(CC) | ||
564 | ALLSYMSFLAG=-bnogc | ||
565 | SHAREDFLAGS=${SHARED_LDFLAGS} -G -bE:lib$$i.exp -bM:SRE | ||
566 | SHAREDCMD=$(CC) | ||
567 | do_aix-shared: | ||
568 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | ||
569 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | ||
570 | libs="$(LIBKRB5) $$libs"; \ | ||
571 | fi; \ | ||
572 | ( set -x; \ | ||
573 | OBJECT_MODE=`expr x${SHARED_LDFLAGS} : 'x\-[a-z]\([0-9]*\)'`; \ | ||
574 | OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \ | ||
575 | ld -r -o lib$$i.o $(ALLSYMSFLAG) lib$$i.a && \ | ||
576 | ( nm -Pg lib$$i.o | grep ' [BD] ' | cut -f1 -d' ' > lib$$i.exp; \ | ||
577 | $${FIPSLD:-${CC}} $(SHAREDFLAGS) \ | ||
578 | -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} lib$$i.o \ | ||
579 | $$libs ${EX_LIBS} ) ) \ | ||
580 | || exit 1; \ | ||
581 | libs="-l$$i $$libs"; \ | ||
582 | done | ||
583 | 315 | ||
584 | do_reliantunix-shared: | 316 | libssl.pc: Makefile |
585 | libs='-L. ${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \ | 317 | @ ( echo 'prefix=$(INSTALLTOP)'; \ |
586 | if [ "${SHLIBDIRS}" = "ssl" -a -n "$(LIBKRB5)" ]; then \ | 318 | echo 'exec_prefix=$${prefix}'; \ |
587 | libs="$(LIBKRB5) $$libs"; \ | 319 | echo 'libdir=$${exec_prefix}/lib'; \ |
588 | fi; \ | 320 | echo 'includedir=$${prefix}/include'; \ |
589 | tmpdir=/tmp/openssl.$$$$ ; rm -rf $$tmpdir ; \ | 321 | echo ''; \ |
590 | ( set -x; \ | 322 | echo 'Name: OpenSSL'; \ |
591 | ( Opwd=`pwd` ; mkdir $$tmpdir || exit 1; \ | 323 | echo 'Description: Secure Sockets Layer and cryptography libraries'; \ |
592 | cd $$tmpdir || exit 1 ; ar x $$Opwd/lib$$i.a ; \ | 324 | echo 'Version: '$(VERSION); \ |
593 | $${FIPSLD:-${CC}} -G -o lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} *.o \ | 325 | echo 'Requires: '; \ |
594 | ) || exit 1; \ | 326 | echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \ |
595 | cp $$tmpdir/lib$$i.so.${SHLIB_MAJOR}.${SHLIB_MINOR} . ; \ | 327 | echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > libssl.pc |
596 | ) || exit 1; \ | ||
597 | rm -rf $$tmpdir ; \ | ||
598 | libs="-l$$i $$libs"; \ | ||
599 | done | ||
600 | 328 | ||
601 | openssl.pc: Makefile | 329 | openssl.pc: Makefile |
602 | @ ( echo 'prefix=$(INSTALLTOP)'; \ | 330 | @ ( echo 'prefix=$(INSTALLTOP)'; \ |
@@ -608,31 +336,25 @@ openssl.pc: Makefile | |||
608 | echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \ | 336 | echo 'Description: Secure Sockets Layer and cryptography libraries and tools'; \ |
609 | echo 'Version: '$(VERSION); \ | 337 | echo 'Version: '$(VERSION); \ |
610 | echo 'Requires: '; \ | 338 | echo 'Requires: '; \ |
611 | echo 'Libs: -L$${libdir} -lssl -lcrypto $(LIBKRB5) $(EX_LIBS)'; \ | 339 | echo 'Libs: -L$${libdir} -lssl -lcrypto $(EX_LIBS)'; \ |
612 | echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc | 340 | echo 'Cflags: -I$${includedir} $(KRB5_INCLUDES)' ) > openssl.pc |
613 | 341 | ||
614 | Makefile: Makefile.org | 342 | Makefile: Makefile.org Configure config |
615 | @echo "Makefile is older than Makefile.org." | 343 | @echo "Makefile is older than Makefile.org, Configure or config." |
616 | @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please." | 344 | @echo "Reconfigure the source tree (via './config' or 'perl Configure'), please." |
617 | @false | 345 | @false |
618 | 346 | ||
619 | libclean: | 347 | libclean: |
620 | rm -f *.map *.so *.so.* engines/*.so *.a */lib */*/lib | 348 | rm -f *.map *.so *.so.* *.dll engines/*.so engines/*.dll *.a engines/*.a */lib */*/lib |
621 | 349 | ||
622 | clean: libclean | 350 | clean: libclean |
623 | rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c | 351 | rm -f shlib/*.o *.o core a.out fluff rehash.time testlog make.log cctest cctest.c |
624 | @for i in $(DIRS) ;\ | 352 | @set -e; target=clean; $(RECURSIVE_BUILD_CMD) |
625 | do \ | 353 | rm -f $(LIBS) |
626 | if [ -d "$$i" ]; then \ | 354 | rm -f openssl.pc libssl.pc libcrypto.pc |
627 | (cd $$i && echo "making clean in $$i..." && \ | ||
628 | $(MAKE) EXE_EXT='${EXE_EXT}' SDIRS='${SDIRS}' clean ) || exit 1; \ | ||
629 | rm -f $(LIBS); \ | ||
630 | fi; \ | ||
631 | done; | ||
632 | rm -f openssl.pc | ||
633 | rm -f speed.* .pure | 355 | rm -f speed.* .pure |
634 | rm -f $(TARFILE) | 356 | rm -f $(TARFILE) |
635 | @for i in $(ONEDIRS) ;\ | 357 | @set -e; for i in $(ONEDIRS) ;\ |
636 | do \ | 358 | do \ |
637 | rm -fr $$i/*; \ | 359 | rm -fr $$i/*; \ |
638 | done | 360 | done |
@@ -643,37 +365,20 @@ makefile.one: files | |||
643 | 365 | ||
644 | files: | 366 | files: |
645 | $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO | 367 | $(PERL) $(TOP)/util/files.pl Makefile > $(TOP)/MINFO |
646 | @for i in $(DIRS) ;\ | 368 | @set -e; target=files; $(RECURSIVE_BUILD_CMD) |
647 | do \ | ||
648 | if [ -d "$$i" ]; then \ | ||
649 | (cd $$i && echo "making 'files' in $$i..." && \ | ||
650 | $(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' files ) || exit 1; \ | ||
651 | fi; \ | ||
652 | done; | ||
653 | 369 | ||
654 | links: | 370 | links: |
655 | @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl | 371 | @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl |
656 | @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER) | 372 | @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER) |
657 | @for i in $(DIRS); do \ | 373 | @set -e; target=links; $(RECURSIVE_BUILD_CMD) |
658 | if [ -d "$$i" ]; then \ | ||
659 | (cd $$i && echo "making links in $$i..." && \ | ||
660 | $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' FIPS_DES_ENC='${FIPS_DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' FIPS_SHA1_ASM_OBJ='${FIPS_SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' links ) || exit 1; \ | ||
661 | fi; \ | ||
662 | done; | ||
663 | 374 | ||
664 | gentests: | 375 | gentests: |
665 | @(cd test && echo "generating dummy tests (if needed)..." && \ | 376 | @(cd test && echo "generating dummy tests (if needed)..." && \ |
666 | $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' FIPS_DES_ENC='${FIPS_DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' FIPS_SHA1_ASM_OBJ='${FIPS_SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate ); | 377 | $(CLEARENV) && $(MAKE) -e $(BUILDENV) TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on generate ); |
667 | 378 | ||
668 | dclean: | 379 | dclean: |
669 | rm -f *.bak | 380 | rm -f *.bak |
670 | @for i in $(DIRS) ;\ | 381 | @set -e; target=dclean; $(RECURSIVE_BUILD_CMD) |
671 | do \ | ||
672 | if [ -d "$$i" ]; then \ | ||
673 | (cd $$i && echo "making dclean in $$i..." && \ | ||
674 | $(MAKE) SDIRS='${SDIRS}' PERL='${PERL}' dclean ) || exit 1; \ | ||
675 | fi; \ | ||
676 | done; | ||
677 | 382 | ||
678 | rehash: rehash.time | 383 | rehash: rehash.time |
679 | rehash.time: certs | 384 | rehash.time: certs |
@@ -687,29 +392,17 @@ test: tests | |||
687 | 392 | ||
688 | tests: rehash | 393 | tests: rehash |
689 | @(cd test && echo "testing..." && \ | 394 | @(cd test && echo "testing..." && \ |
690 | $(MAKE) CC='${CC}' PLATFORM='${PLATFORM}' CFLAG='${CFLAG}' SDIRS='$(SDIRS)' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' FIPS_DES_ENC='${FIPS_DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' FIPS_SHA1_ASM_OBJ='${FIPS_SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PROCESSOR='${PROCESSOR}' PERL='${PERL}' RANLIB='${RANLIB}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' SHARED_LIBS='${SHARED_LIBS}' SHLIB_EXT='${SHLIB_EXT}' SHLIB_TARGET='${SHLIB_TARGET}' TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests ); | 395 | $(CLEARENV) && $(MAKE) -e $(BUILDENV) TOP=.. TESTS='${TESTS}' OPENSSL_DEBUG_MEMORY=on tests ); |
691 | util/shlib_wrap.sh apps/openssl version -a | 396 | util/opensslwrap.sh version -a |
692 | 397 | ||
693 | report: | 398 | report: |
694 | @$(PERL) util/selftest.pl | 399 | @$(PERL) util/selftest.pl |
695 | 400 | ||
696 | depend: | 401 | depend: |
697 | @for i in $(DIRS) ;\ | 402 | @set -e; target=depend; $(RECURSIVE_BUILD_CMD) |
698 | do \ | ||
699 | if [ -d "$$i" ]; then \ | ||
700 | (cd $$i && echo "making dependencies $$i..." && \ | ||
701 | $(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \ | ||
702 | fi; \ | ||
703 | done; | ||
704 | 403 | ||
705 | lint: | 404 | lint: |
706 | @for i in $(DIRS) ;\ | 405 | @set -e; target=lint; $(RECURSIVE_BUILD_CMD) |
707 | do \ | ||
708 | if [ -d "$$i" ]; then \ | ||
709 | (cd $$i && echo "making lint $$i..." && \ | ||
710 | $(MAKE) SDIRS='${SDIRS}' lint ) || exit 1; \ | ||
711 | fi; \ | ||
712 | done; | ||
713 | 406 | ||
714 | tags: | 407 | tags: |
715 | rm -f TAGS | 408 | rm -f TAGS |
@@ -717,7 +410,8 @@ tags: | |||
717 | 410 | ||
718 | errors: | 411 | errors: |
719 | $(PERL) util/mkerr.pl -recurse -write | 412 | $(PERL) util/mkerr.pl -recurse -write |
720 | (cd crypto/engine; $(MAKE) PERL=$(PERL) errors) | 413 | (cd engines; $(MAKE) PERL=$(PERL) errors) |
414 | $(PERL) util/ck_errf.pl */*.c */*/*.c | ||
721 | 415 | ||
722 | stacks: | 416 | stacks: |
723 | $(PERL) util/mkstack.pl -write | 417 | $(PERL) util/mkstack.pl -write |
@@ -779,45 +473,36 @@ dist: | |||
779 | @$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar | 473 | @$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar |
780 | 474 | ||
781 | dist_pem_h: | 475 | dist_pem_h: |
782 | (cd crypto/pem; $(MAKE) CC='${CC}' SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean) | 476 | (cd crypto/pem; $(MAKE) -e $(BUILDENV) pem.h; $(MAKE) clean) |
783 | 477 | ||
784 | install: all install_docs install_sw | 478 | install: all install_docs install_sw |
785 | 479 | ||
786 | install_sw: | 480 | install_sw: |
787 | @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \ | 481 | @$(PERL) $(TOP)/util/mkdir-p.pl $(INSTALL_PREFIX)$(INSTALLTOP)/bin \ |
788 | $(INSTALL_PREFIX)$(INSTALLTOP)/lib \ | 482 | $(INSTALL_PREFIX)$(INSTALLTOP)/lib \ |
483 | $(INSTALL_PREFIX)$(INSTALLTOP)/lib/engines \ | ||
789 | $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \ | 484 | $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig \ |
790 | $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \ | 485 | $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl \ |
791 | $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \ | 486 | $(INSTALL_PREFIX)$(OPENSSLDIR)/misc \ |
792 | $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \ | 487 | $(INSTALL_PREFIX)$(OPENSSLDIR)/certs \ |
793 | $(INSTALL_PREFIX)$(OPENSSLDIR)/private | 488 | $(INSTALL_PREFIX)$(OPENSSLDIR)/private |
794 | @headerlist="$(EXHEADER)"; for i in $$headerlist ;\ | 489 | @set -e; headerlist="$(EXHEADER)"; for i in $$headerlist;\ |
795 | do \ | 490 | do \ |
796 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 491 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
797 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | 492 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ |
798 | done; | 493 | done; |
799 | @for i in $(DIRS) ;\ | 494 | @set -e; target=install; $(RECURSIVE_BUILD_CMD) |
800 | do \ | 495 | @set -e; for i in $(LIBS) ;\ |
801 | if [ -d "$$i" ]; then \ | ||
802 | (cd $$i; echo "installing $$i..."; \ | ||
803 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALL_PREFIX='${INSTALL_PREFIX}' INSTALLTOP='${INSTALLTOP}' OPENSSLDIR='${OPENSSLDIR}' EX_LIBS='${EX_LIBS}' SDIRS='${SDIRS}' RANLIB='${RANLIB}' EXE_EXT='${EXE_EXT}' install ); \ | ||
804 | fi; \ | ||
805 | done | ||
806 | @for i in $(LIBS) ;\ | ||
807 | do \ | 496 | do \ |
808 | if [ -f "$$i" ]; then \ | 497 | if [ -f "$$i" ]; then \ |
809 | ( echo installing $$i; \ | 498 | ( echo installing $$i; \ |
810 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ | 499 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ |
811 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 500 | $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ |
812 | : ; \ | ||
813 | else \ | ||
814 | $(RANLIB) $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ | ||
815 | fi; \ | ||
816 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ | 501 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ |
817 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \ | 502 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i ); \ |
818 | fi; \ | 503 | fi; \ |
819 | done; | 504 | done; |
820 | @if [ -n "$(SHARED_LIBS)" ]; then \ | 505 | @set -e; if [ -n "$(SHARED_LIBS)" ]; then \ |
821 | tmp="$(SHARED_LIBS)"; \ | 506 | tmp="$(SHARED_LIBS)"; \ |
822 | for i in $${tmp:-x}; \ | 507 | for i in $${tmp:-x}; \ |
823 | do \ | 508 | do \ |
@@ -828,20 +513,19 @@ install_sw: | |||
828 | chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ | 513 | chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ |
829 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ | 514 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ |
830 | else \ | 515 | else \ |
831 | c=`echo $$i | sed 's/^lib\(.*\)\.dll/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \ | 516 | c=`echo $$i | sed 's/^lib\(.*\)\.dll\.a/cyg\1-$(SHLIB_VERSION_NUMBER).dll/'`; \ |
832 | cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \ | 517 | cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \ |
833 | chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \ | 518 | chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new; \ |
834 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \ | 519 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \ |
835 | cp $$i.a $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \ | 520 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ |
836 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new; \ | 521 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new; \ |
837 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.a; \ | 522 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ |
838 | fi ); \ | 523 | fi ); \ |
839 | fi; \ | 524 | fi; \ |
840 | done; \ | 525 | done; \ |
841 | ( here="`pwd`"; \ | 526 | ( here="`pwd`"; \ |
842 | cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ | 527 | cd $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ |
843 | set $(MAKE); \ | 528 | $(MAKE) -f $$here/Makefile HERE="$$here" link-shared ); \ |
844 | $$1 -f $$here/Makefile link-shared ); \ | ||
845 | if [ "$(INSTALLTOP)" != "/usr" ]; then \ | 529 | if [ "$(INSTALLTOP)" != "/usr" ]; then \ |
846 | echo 'OpenSSL shared libraries have been installed in:'; \ | 530 | echo 'OpenSSL shared libraries have been installed in:'; \ |
847 | echo ' $(INSTALLTOP)'; \ | 531 | echo ' $(INSTALLTOP)'; \ |
@@ -849,6 +533,10 @@ install_sw: | |||
849 | sed -e '1,/^$$/d' doc/openssl-shared.txt; \ | 533 | sed -e '1,/^$$/d' doc/openssl-shared.txt; \ |
850 | fi; \ | 534 | fi; \ |
851 | fi | 535 | fi |
536 | cp libcrypto.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig | ||
537 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libcrypto.pc | ||
538 | cp libssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig | ||
539 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/libssl.pc | ||
852 | cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig | 540 | cp openssl.pc $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig |
853 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc | 541 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/pkgconfig/openssl.pc |
854 | 542 | ||
@@ -864,9 +552,9 @@ install_docs: | |||
864 | if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \ | 552 | if [ "$(PLATFORM)" = "DJGPP" -o "$(PLATFORM)" = "Cygwin" -o "$(PLATFORM)" = "mingw" ]; then \ |
865 | filecase=-i; \ | 553 | filecase=-i; \ |
866 | fi; \ | 554 | fi; \ |
867 | for i in doc/apps/*.pod; do \ | 555 | set -e; for i in doc/apps/*.pod; do \ |
868 | fn=`basename $$i .pod`; \ | 556 | fn=`basename $$i .pod`; \ |
869 | if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \ | 557 | sec=`$(PERL) util/extract-section.pl 1 < $$i`; \ |
870 | echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \ | 558 | echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \ |
871 | (cd `$(PERL) util/dirname.pl $$i`; \ | 559 | (cd `$(PERL) util/dirname.pl $$i`; \ |
872 | sh -c "$$pod2man \ | 560 | sh -c "$$pod2man \ |
@@ -881,9 +569,9 @@ install_docs: | |||
881 | $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \ | 569 | $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \ |
882 | done); \ | 570 | done); \ |
883 | done; \ | 571 | done; \ |
884 | for i in doc/crypto/*.pod doc/ssl/*.pod; do \ | 572 | set -e; for i in doc/crypto/*.pod doc/ssl/*.pod; do \ |
885 | fn=`basename $$i .pod`; \ | 573 | fn=`basename $$i .pod`; \ |
886 | if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \ | 574 | sec=`$(PERL) util/extract-section.pl 3 < $$i`; \ |
887 | echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \ | 575 | echo "installing man$$sec/$$fn.$${sec}$(MANSUFFIX)"; \ |
888 | (cd `$(PERL) util/dirname.pl $$i`; \ | 576 | (cd `$(PERL) util/dirname.pl $$i`; \ |
889 | sh -c "$$pod2man \ | 577 | sh -c "$$pod2man \ |
diff --git a/src/lib/libssl/src/Netware/build.bat b/src/lib/libssl/src/Netware/build.bat new file mode 100644 index 0000000000..823134bda1 --- /dev/null +++ b/src/lib/libssl/src/Netware/build.bat | |||
@@ -0,0 +1,228 @@ | |||
1 | @echo off | ||
2 | |||
3 | rem ======================================================================== | ||
4 | rem Batch file to automate building OpenSSL for NetWare. | ||
5 | rem | ||
6 | rem usage: | ||
7 | rem build [target] [debug opts] [assembly opts] [configure opts] | ||
8 | rem | ||
9 | rem target - "netware-clib" - CLib NetWare build (WinSock Sockets) | ||
10 | rem - "netware-clib-bsdsock" - CLib NetWare build (BSD Sockets) | ||
11 | rem - "netware-libc" - LibC NetWare build (WinSock Sockets) | ||
12 | rem - "netware-libc-bsdsock" - LibC NetWare build (BSD Sockets) | ||
13 | rem | ||
14 | rem debug opts - "debug" - build debug | ||
15 | rem | ||
16 | rem assembly opts - "nw-mwasm" - use Metrowerks assembler | ||
17 | rem - "nw-nasm" - use NASM assembler | ||
18 | rem - "no-asm" - don't use assembly | ||
19 | rem | ||
20 | rem configure opts- all unrecognized arguments are passed to the | ||
21 | rem perl configure script | ||
22 | rem | ||
23 | rem If no arguments are specified the default is to build non-debug with | ||
24 | rem no assembly. NOTE: there is no default BLD_TARGET. | ||
25 | rem | ||
26 | |||
27 | |||
28 | |||
29 | rem No assembly is the default - Uncomment section below to change | ||
30 | rem the assembler default | ||
31 | set ASM_MODE= | ||
32 | set ASSEMBLER= | ||
33 | set NO_ASM=no-asm | ||
34 | |||
35 | rem Uncomment to default to the Metrowerks assembler | ||
36 | rem set ASM_MODE=nw-mwasm | ||
37 | rem set ASSEMBLER=Metrowerks | ||
38 | rem set NO_ASM= | ||
39 | |||
40 | rem Uncomment to default to the NASM assembler | ||
41 | rem set ASM_MODE=nw-nasm | ||
42 | rem set ASSEMBLER=NASM | ||
43 | rem set NO_ASM= | ||
44 | |||
45 | rem No default Bld target | ||
46 | set BLD_TARGET=no_target | ||
47 | rem set BLD_TARGET=netware-clib | ||
48 | rem set BLD_TARGET=netware-libc | ||
49 | |||
50 | |||
51 | rem Default to build non-debug | ||
52 | set DEBUG= | ||
53 | |||
54 | rem Uncomment to default to debug build | ||
55 | rem set DEBUG=debug | ||
56 | |||
57 | |||
58 | set CONFIG_OPTS= | ||
59 | set ARG_PROCESSED=NO | ||
60 | |||
61 | |||
62 | rem Process command line args | ||
63 | :opts | ||
64 | if "a%1" == "a" goto endopt | ||
65 | if "%1" == "no-asm" set NO_ASM=no-asm | ||
66 | if "%1" == "no-asm" set ARG_PROCESSED=YES | ||
67 | if "%1" == "debug" set DEBUG=debug | ||
68 | if "%1" == "debug" set ARG_PROCESSED=YES | ||
69 | if "%1" == "nw-nasm" set ASM_MODE=nw-nasm | ||
70 | if "%1" == "nw-nasm" set ASSEMBLER=NASM | ||
71 | if "%1" == "nw-nasm" set NO_ASM= | ||
72 | if "%1" == "nw-nasm" set ARG_PROCESSED=YES | ||
73 | if "%1" == "nw-mwasm" set ASM_MODE=nw-mwasm | ||
74 | if "%1" == "nw-mwasm" set ASSEMBLER=Metrowerks | ||
75 | if "%1" == "nw-mwasm" set NO_ASM= | ||
76 | if "%1" == "nw-mwasm" set ARG_PROCESSED=YES | ||
77 | if "%1" == "netware-clib" set BLD_TARGET=netware-clib | ||
78 | if "%1" == "netware-clib" set ARG_PROCESSED=YES | ||
79 | if "%1" == "netware-clib-bsdsock" set BLD_TARGET=netware-clib-bsdsock | ||
80 | if "%1" == "netware-clib-bsdsock" set ARG_PROCESSED=YES | ||
81 | if "%1" == "netware-libc" set BLD_TARGET=netware-libc | ||
82 | if "%1" == "netware-libc" set ARG_PROCESSED=YES | ||
83 | if "%1" == "netware-libc-bsdsock" set BLD_TARGET=netware-libc-bsdsock | ||
84 | if "%1" == "netware-libc-bsdsock" set ARG_PROCESSED=YES | ||
85 | |||
86 | rem If we didn't recognize the argument, consider it an option for config | ||
87 | if "%ARG_PROCESSED%" == "NO" set CONFIG_OPTS=%CONFIG_OPTS% %1 | ||
88 | if "%ARG_PROCESSED%" == "YES" set ARG_PROCESSED=NO | ||
89 | |||
90 | shift | ||
91 | goto opts | ||
92 | :endopt | ||
93 | |||
94 | rem make sure a valid BLD_TARGET was specified | ||
95 | if "%BLD_TARGET%" == "no_target" goto no_target | ||
96 | |||
97 | rem build the nlm make file name which includes target and debug info | ||
98 | set NLM_MAKE= | ||
99 | if "%BLD_TARGET%" == "netware-clib" set NLM_MAKE=netware\nlm_clib | ||
100 | if "%BLD_TARGET%" == "netware-clib-bsdsock" set NLM_MAKE=netware\nlm_clib_bsdsock | ||
101 | if "%BLD_TARGET%" == "netware-libc" set NLM_MAKE=netware\nlm_libc | ||
102 | if "%BLD_TARGET%" == "netware-libc-bsdsock" set NLM_MAKE=netware\nlm_libc_bsdsock | ||
103 | if "%DEBUG%" == "" set NLM_MAKE=%NLM_MAKE%.mak | ||
104 | if "%DEBUG%" == "debug" set NLM_MAKE=%NLM_MAKE%_dbg.mak | ||
105 | |||
106 | if "%NO_ASM%" == "no-asm" set ASM_MODE= | ||
107 | if "%NO_ASM%" == "no-asm" set ASSEMBLER= | ||
108 | if "%NO_ASM%" == "no-asm" set CONFIG_OPTS=%CONFIG_OPTS% no-asm | ||
109 | if "%NO_ASM%" == "no-asm" goto do_config | ||
110 | |||
111 | |||
112 | rem ================================================== | ||
113 | echo Generating x86 for %ASSEMBLER% assembler | ||
114 | |||
115 | echo Bignum | ||
116 | cd crypto\bn\asm | ||
117 | rem perl x86.pl %ASM_MODE% > bn-nw.asm | ||
118 | perl bn-586.pl %ASM_MODE% > bn-nw.asm | ||
119 | perl co-586.pl %ASM_MODE% > co-nw.asm | ||
120 | cd ..\..\.. | ||
121 | |||
122 | echo AES | ||
123 | cd crypto\aes\asm | ||
124 | perl aes-586.pl %ASM_MODE% > a-nw.asm | ||
125 | cd ..\..\.. | ||
126 | |||
127 | echo DES | ||
128 | cd crypto\des\asm | ||
129 | perl des-586.pl %ASM_MODE% > d-nw.asm | ||
130 | cd ..\..\.. | ||
131 | |||
132 | echo "crypt(3)" | ||
133 | |||
134 | cd crypto\des\asm | ||
135 | perl crypt586.pl %ASM_MODE% > y-nw.asm | ||
136 | cd ..\..\.. | ||
137 | |||
138 | echo Blowfish | ||
139 | |||
140 | cd crypto\bf\asm | ||
141 | perl bf-586.pl %ASM_MODE% > b-nw.asm | ||
142 | cd ..\..\.. | ||
143 | |||
144 | echo CAST5 | ||
145 | cd crypto\cast\asm | ||
146 | perl cast-586.pl %ASM_MODE% > c-nw.asm | ||
147 | cd ..\..\.. | ||
148 | |||
149 | echo RC4 | ||
150 | cd crypto\rc4\asm | ||
151 | perl rc4-586.pl %ASM_MODE% > r4-nw.asm | ||
152 | cd ..\..\.. | ||
153 | |||
154 | echo MD5 | ||
155 | cd crypto\md5\asm | ||
156 | perl md5-586.pl %ASM_MODE% > m5-nw.asm | ||
157 | cd ..\..\.. | ||
158 | |||
159 | echo SHA1 | ||
160 | cd crypto\sha\asm | ||
161 | perl sha1-586.pl %ASM_MODE% > s1-nw.asm | ||
162 | cd ..\..\.. | ||
163 | |||
164 | echo RIPEMD160 | ||
165 | cd crypto\ripemd\asm | ||
166 | perl rmd-586.pl %ASM_MODE% > rm-nw.asm | ||
167 | cd ..\..\.. | ||
168 | |||
169 | echo RC5\32 | ||
170 | cd crypto\rc5\asm | ||
171 | perl rc5-586.pl %ASM_MODE% > r5-nw.asm | ||
172 | cd ..\..\.. | ||
173 | |||
174 | echo CPUID | ||
175 | cd crypto | ||
176 | perl x86cpuid.pl %ASM_MODE% > x86cpuid-nw.asm | ||
177 | cd ..\ | ||
178 | |||
179 | rem =============================================================== | ||
180 | rem | ||
181 | :do_config | ||
182 | |||
183 | echo . | ||
184 | echo configure options: %CONFIG_OPTS% %BLD_TARGET% | ||
185 | echo . | ||
186 | perl configure %CONFIG_OPTS% %BLD_TARGET% | ||
187 | |||
188 | perl util\mkfiles.pl >MINFO | ||
189 | |||
190 | echo . | ||
191 | echo mk1mf.pl options: %DEBUG% %ASM_MODE% %CONFIG_OPTS% %BLD_TARGET% | ||
192 | echo . | ||
193 | perl util\mk1mf.pl %DEBUG% %ASM_MODE% %CONFIG_OPTS% %BLD_TARGET% >%NLM_MAKE% | ||
194 | |||
195 | make -f %NLM_MAKE% vclean | ||
196 | echo . | ||
197 | echo The makefile "%NLM_MAKE%" has been created use your maketool to | ||
198 | echo build (ex: make -f %NLM_MAKE%) | ||
199 | goto end | ||
200 | |||
201 | rem =============================================================== | ||
202 | rem | ||
203 | :no_target | ||
204 | echo . | ||
205 | echo . No build target specified!!! | ||
206 | echo . | ||
207 | echo . usage: build [target] [debug opts] [assembly opts] [configure opts] | ||
208 | echo . | ||
209 | echo . target - "netware-clib" - CLib NetWare build (WinSock Sockets) | ||
210 | echo . - "netware-clib-bsdsock" - CLib NetWare build (BSD Sockets) | ||
211 | echo . - "netware-libc" - LibC NetWare build (WinSock Sockets) | ||
212 | echo . - "netware-libc-bsdsock" - LibC NetWare build (BSD Sockets) | ||
213 | echo . | ||
214 | echo . debug opts - "debug" - build debug | ||
215 | echo . | ||
216 | echo . assembly opts - "nw-mwasm" - use Metrowerks assembler | ||
217 | echo . "nw-nasm" - use NASM assembler | ||
218 | echo . "no-asm" - don't use assembly | ||
219 | echo . | ||
220 | echo . configure opts- all unrecognized arguments are passed to the | ||
221 | echo . perl configure script | ||
222 | echo . | ||
223 | echo . If no debug or assembly opts are specified the default is to build | ||
224 | echo . non-debug without assembly | ||
225 | echo . | ||
226 | |||
227 | |||
228 | :end | ||
diff --git a/src/lib/libssl/src/Netware/cpy_tests.bat b/src/lib/libssl/src/Netware/cpy_tests.bat new file mode 100644 index 0000000000..1583f28067 --- /dev/null +++ b/src/lib/libssl/src/Netware/cpy_tests.bat | |||
@@ -0,0 +1,113 @@ | |||
1 | @echo off | ||
2 | |||
3 | rem Batch file to copy OpenSSL stuff to a NetWare server for testing | ||
4 | |||
5 | rem This batch file will create an "opensssl" directory at the root of the | ||
6 | rem specified NetWare drive and copy the required files to run the tests. | ||
7 | rem It should be run from inside the "openssl\netware" subdirectory. | ||
8 | |||
9 | rem Usage: | ||
10 | rem cpy_tests.bat <test subdirectory> <NetWare drive> | ||
11 | rem <test subdirectory> - out_nw.dbg | out_nw | ||
12 | rem <NetWare drive> - any mapped drive letter | ||
13 | rem | ||
14 | rem example ( copy from debug build to m: dirve ): | ||
15 | rem cpy_tests.bat out_nw.dbg m: | ||
16 | rem | ||
17 | rem CAUTION: If a directory named OpenSSL exists on the target drive | ||
18 | rem it will be deleted first. | ||
19 | |||
20 | |||
21 | if "%1" == "" goto usage | ||
22 | if "%2" == "" goto usage | ||
23 | |||
24 | rem Assume running in \openssl directory unless cpy_tests.bat exists then | ||
25 | rem it must be the \openssl\netware directory | ||
26 | set loc=. | ||
27 | if exist cpy_tests.bat set loc=.. | ||
28 | |||
29 | rem make sure the local build subdirectory specified is valid | ||
30 | if not exist %loc%\%1\NUL goto invalid_dir | ||
31 | |||
32 | rem make sure target drive is valid | ||
33 | if not exist %2\NUL goto invalid_drive | ||
34 | |||
35 | rem If an OpenSSL directory exists on the target drive, remove it | ||
36 | if exist %2\openssl\NUL goto remove_openssl | ||
37 | goto do_copy | ||
38 | |||
39 | :remove_openssl | ||
40 | echo . | ||
41 | echo OpenSSL directory exists on %2 - it will be removed! | ||
42 | pause | ||
43 | rmdir %2\openssl /s /q | ||
44 | |||
45 | :do_copy | ||
46 | rem make an "openssl" directory and others at the root of the NetWare drive | ||
47 | mkdir %2\openssl | ||
48 | mkdir %2\openssl\test_out | ||
49 | mkdir %2\openssl\apps | ||
50 | mkdir %2\openssl\certs | ||
51 | mkdir %2\openssl\test | ||
52 | |||
53 | |||
54 | rem copy the test nlms | ||
55 | copy %loc%\%1\*.nlm %2\openssl\ | ||
56 | |||
57 | rem copy the test perl script | ||
58 | copy %loc%\netware\do_tests.pl %2\openssl\ | ||
59 | |||
60 | rem copy the certs directory stuff | ||
61 | xcopy %loc%\certs\*.* %2\openssl\certs\ /s | ||
62 | |||
63 | rem copy the test directory stuff | ||
64 | copy %loc%\test\CAss.cnf %2\openssl\test\ | ||
65 | copy %loc%\test\Uss.cnf %2\openssl\test\ | ||
66 | copy %loc%\test\pkcs7.pem %2\openssl\test\ | ||
67 | copy %loc%\test\pkcs7-1.pem %2\openssl\test\ | ||
68 | copy %loc%\test\testcrl.pem %2\openssl\test\ | ||
69 | copy %loc%\test\testp7.pem %2\openssl\test\ | ||
70 | copy %loc%\test\testreq2.pem %2\openssl\test\ | ||
71 | copy %loc%\test\testrsa.pem %2\openssl\test\ | ||
72 | copy %loc%\test\testsid.pem %2\openssl\test\ | ||
73 | copy %loc%\test\testx509.pem %2\openssl\test\ | ||
74 | copy %loc%\test\v3-cert1.pem %2\openssl\test\ | ||
75 | copy %loc%\test\v3-cert2.pem %2\openssl\test\ | ||
76 | copy %loc%\crypto\evp\evptests.txt %2\openssl\test\ | ||
77 | |||
78 | rem copy the apps directory stuff | ||
79 | copy %loc%\apps\client.pem %2\openssl\apps\ | ||
80 | copy %loc%\apps\server.pem %2\openssl\apps\ | ||
81 | copy %loc%\apps\openssl.cnf %2\openssl\apps\ | ||
82 | |||
83 | echo . | ||
84 | echo Tests copied | ||
85 | echo Run the test script at the console by typing: | ||
86 | echo "Perl \openssl\do_tests.pl" | ||
87 | echo . | ||
88 | echo Make sure the Search path includes the OpenSSL subdirectory | ||
89 | |||
90 | goto end | ||
91 | |||
92 | :invalid_dir | ||
93 | echo. | ||
94 | echo Invalid build directory specified: %1 | ||
95 | echo. | ||
96 | goto usage | ||
97 | |||
98 | :invalid_drive | ||
99 | echo. | ||
100 | echo Invalid drive: %2 | ||
101 | echo. | ||
102 | goto usage | ||
103 | |||
104 | :usage | ||
105 | echo. | ||
106 | echo usage: cpy_tests.bat [test subdirectory] [NetWare drive] | ||
107 | echo [test subdirectory] - out_nw_clib.dbg, out_nw_libc.dbg, etc. | ||
108 | echo [NetWare drive] - any mapped drive letter | ||
109 | echo. | ||
110 | echo example: cpy_test out_nw_clib.dbg M: | ||
111 | echo (copy from clib debug build area to M: drive) | ||
112 | |||
113 | :end | ||
diff --git a/src/lib/libssl/src/Netware/do_tests.pl b/src/lib/libssl/src/Netware/do_tests.pl new file mode 100644 index 0000000000..ac482dbe2b --- /dev/null +++ b/src/lib/libssl/src/Netware/do_tests.pl | |||
@@ -0,0 +1,624 @@ | |||
1 | # perl script to run OpenSSL tests | ||
2 | |||
3 | |||
4 | my $base_path = "\\openssl"; | ||
5 | |||
6 | my $output_path = "$base_path\\test_out"; | ||
7 | my $cert_path = "$base_path\\certs"; | ||
8 | my $test_path = "$base_path\\test"; | ||
9 | my $app_path = "$base_path\\apps"; | ||
10 | |||
11 | my $tmp_cert = "$output_path\\cert.tmp"; | ||
12 | my $OpenSSL_config = "$app_path\\openssl.cnf"; | ||
13 | my $log_file = "$output_path\\tests.log"; | ||
14 | |||
15 | my $pause = 0; | ||
16 | |||
17 | |||
18 | # process the command line args to see if they wanted us to pause | ||
19 | # between executing each command | ||
20 | foreach $i (@ARGV) | ||
21 | { | ||
22 | if ($i =~ /^-p$/) | ||
23 | { $pause=1; } | ||
24 | } | ||
25 | |||
26 | |||
27 | |||
28 | main(); | ||
29 | |||
30 | |||
31 | ############################################################################ | ||
32 | sub main() | ||
33 | { | ||
34 | # delete all the output files in the output directory | ||
35 | unlink <$output_path\\*.*>; | ||
36 | |||
37 | # open the main log file | ||
38 | open(OUT, ">$log_file") || die "unable to open $log_file\n"; | ||
39 | |||
40 | print( OUT "========================================================\n"); | ||
41 | my $outFile = "$output_path\\version.out"; | ||
42 | system("openssl2 version (CLIB_OPT)/>$outFile"); | ||
43 | log_output("CHECKING FOR OPENSSL VERSION:", $outFile); | ||
44 | |||
45 | algorithm_tests(); | ||
46 | encryption_tests(); | ||
47 | evp_tests(); | ||
48 | pem_tests(); | ||
49 | verify_tests(); | ||
50 | ca_tests(); | ||
51 | ssl_tests(); | ||
52 | |||
53 | close(OUT); | ||
54 | |||
55 | print("\nCompleted running tests.\n\n"); | ||
56 | print("Check log file for errors: $log_file\n"); | ||
57 | } | ||
58 | |||
59 | ############################################################################ | ||
60 | sub algorithm_tests | ||
61 | { | ||
62 | my $i; | ||
63 | my $outFile; | ||
64 | my @tests = ( rsa_test, destest, ideatest, bftest, bntest, shatest, sha1test, | ||
65 | sha256t, sha512t, dsatest, md2test, md4test, md5test, mdc2test, | ||
66 | rc2test, rc4test, rc5test, randtest, rmdtest, dhtest, ecdhtest, | ||
67 | ecdsatest, ectest, exptest, casttest, hmactest ); | ||
68 | |||
69 | print( "\nRUNNING CRYPTO ALGORITHM TESTS:\n\n"); | ||
70 | |||
71 | print( OUT "\n========================================================\n"); | ||
72 | print( OUT "CRYPTO ALGORITHM TESTS:\n\n"); | ||
73 | |||
74 | foreach $i (@tests) | ||
75 | { | ||
76 | if (-e "$base_path\\$i.nlm") | ||
77 | { | ||
78 | $outFile = "$output_path\\$i.out"; | ||
79 | system("$i (CLIB_OPT)/>$outFile"); | ||
80 | log_desc("Test: $i\.nlm:"); | ||
81 | log_output("", $outFile ); | ||
82 | } | ||
83 | else | ||
84 | { | ||
85 | log_desc("Test: $i\.nlm: file not found"); | ||
86 | } | ||
87 | } | ||
88 | } | ||
89 | |||
90 | ############################################################################ | ||
91 | sub encryption_tests | ||
92 | { | ||
93 | my $i; | ||
94 | my $outFile; | ||
95 | my @enc_tests = ( "enc", "rc4", "des-cfb", "des-ede-cfb", "des-ede3-cfb", | ||
96 | "des-ofb", "des-ede-ofb", "des-ede3-ofb", | ||
97 | "des-ecb", "des-ede", "des-ede3", "des-cbc", | ||
98 | "des-ede-cbc", "des-ede3-cbc", "idea-ecb", "idea-cfb", | ||
99 | "idea-ofb", "idea-cbc", "rc2-ecb", "rc2-cfb", | ||
100 | "rc2-ofb", "rc2-cbc", "bf-ecb", "bf-cfb", | ||
101 | "bf-ofb", "bf-cbc" ); | ||
102 | |||
103 | my $input = "$base_path\\do_tests.pl"; | ||
104 | my $cipher = "$output_path\\cipher.out"; | ||
105 | my $clear = "$output_path\\clear.out"; | ||
106 | |||
107 | print( "\nRUNNING ENCRYPTION & DECRYPTION TESTS:\n\n"); | ||
108 | |||
109 | print( OUT "\n========================================================\n"); | ||
110 | print( OUT "FILE ENCRYPTION & DECRYPTION TESTS:\n\n"); | ||
111 | |||
112 | foreach $i (@enc_tests) | ||
113 | { | ||
114 | log_desc("Testing: $i"); | ||
115 | |||
116 | # do encryption | ||
117 | $outFile = "$output_path\\enc.out"; | ||
118 | system("openssl2 $i -e -bufsize 113 -k test -in $input -out $cipher (CLIB_OPT)/>$outFile" ); | ||
119 | log_output("Encrypting: $input --> $cipher", $outFile); | ||
120 | |||
121 | # do decryption | ||
122 | $outFile = "$output_path\\dec.out"; | ||
123 | system("openssl2 $i -d -bufsize 157 -k test -in $cipher -out $clear (CLIB_OPT)/>$outFile"); | ||
124 | log_output("Decrypting: $cipher --> $clear", $outFile); | ||
125 | |||
126 | # compare files | ||
127 | $x = compare_files( $input, $clear, 1); | ||
128 | if ( $x == 0 ) | ||
129 | { | ||
130 | print( "\rSUCCESS - files match: $input, $clear\n"); | ||
131 | print( OUT "SUCCESS - files match: $input, $clear\n"); | ||
132 | } | ||
133 | else | ||
134 | { | ||
135 | print( "\rERROR: files don't match\n"); | ||
136 | print( OUT "ERROR: files don't match\n"); | ||
137 | } | ||
138 | |||
139 | do_wait(); | ||
140 | |||
141 | # Now do the same encryption but use Base64 | ||
142 | |||
143 | # do encryption B64 | ||
144 | $outFile = "$output_path\\B64enc.out"; | ||
145 | system("openssl2 $i -a -e -bufsize 113 -k test -in $input -out $cipher (CLIB_OPT)/>$outFile"); | ||
146 | log_output("Encrypting(B64): $cipher --> $clear", $outFile); | ||
147 | |||
148 | # do decryption B64 | ||
149 | $outFile = "$output_path\\B64dec.out"; | ||
150 | system("openssl2 $i -a -d -bufsize 157 -k test -in $cipher -out $clear (CLIB_OPT)/>$outFile"); | ||
151 | log_output("Decrypting(B64): $cipher --> $clear", $outFile); | ||
152 | |||
153 | # compare files | ||
154 | $x = compare_files( $input, $clear, 1); | ||
155 | if ( $x == 0 ) | ||
156 | { | ||
157 | print( "\rSUCCESS - files match: $input, $clear\n"); | ||
158 | print( OUT "SUCCESS - files match: $input, $clear\n"); | ||
159 | } | ||
160 | else | ||
161 | { | ||
162 | print( "\rERROR: files don't match\n"); | ||
163 | print( OUT "ERROR: files don't match\n"); | ||
164 | } | ||
165 | |||
166 | do_wait(); | ||
167 | |||
168 | } # end foreach | ||
169 | |||
170 | # delete the temporary files | ||
171 | unlink($cipher); | ||
172 | unlink($clear); | ||
173 | } | ||
174 | |||
175 | |||
176 | ############################################################################ | ||
177 | sub pem_tests | ||
178 | { | ||
179 | my $i; | ||
180 | my $tmp_out; | ||
181 | my $outFile = "$output_path\\pem.out"; | ||
182 | |||
183 | my %pem_tests = ( | ||
184 | "crl" => "testcrl.pem", | ||
185 | "pkcs7" => "testp7.pem", | ||
186 | "req" => "testreq2.pem", | ||
187 | "rsa" => "testrsa.pem", | ||
188 | "x509" => "testx509.pem", | ||
189 | "x509" => "v3-cert1.pem", | ||
190 | "sess_id" => "testsid.pem" ); | ||
191 | |||
192 | |||
193 | print( "\nRUNNING PEM TESTS:\n\n"); | ||
194 | |||
195 | print( OUT "\n========================================================\n"); | ||
196 | print( OUT "PEM TESTS:\n\n"); | ||
197 | |||
198 | foreach $i (keys(%pem_tests)) | ||
199 | { | ||
200 | log_desc( "Testing: $i"); | ||
201 | |||
202 | my $input = "$test_path\\$pem_tests{$i}"; | ||
203 | |||
204 | $tmp_out = "$output_path\\$pem_tests{$i}"; | ||
205 | |||
206 | if ($i ne "req" ) | ||
207 | { | ||
208 | system("openssl2 $i -in $input -out $tmp_out (CLIB_OPT)/>$outFile"); | ||
209 | log_output( "openssl2 $i -in $input -out $tmp_out", $outFile); | ||
210 | } | ||
211 | else | ||
212 | { | ||
213 | system("openssl2 $i -in $input -out $tmp_out -config $OpenSSL_config (CLIB_OPT)/>$outFile"); | ||
214 | log_output( "openssl2 $i -in $input -out $tmp_out -config $OpenSSL_config", $outFile ); | ||
215 | } | ||
216 | |||
217 | $x = compare_files( $input, $tmp_out); | ||
218 | if ( $x == 0 ) | ||
219 | { | ||
220 | print( "\rSUCCESS - files match: $input, $tmp_out\n"); | ||
221 | print( OUT "SUCCESS - files match: $input, $tmp_out\n"); | ||
222 | } | ||
223 | else | ||
224 | { | ||
225 | print( "\rERROR: files don't match\n"); | ||
226 | print( OUT "ERROR: files don't match\n"); | ||
227 | } | ||
228 | do_wait(); | ||
229 | |||
230 | } # end foreach | ||
231 | } | ||
232 | |||
233 | |||
234 | ############################################################################ | ||
235 | sub verify_tests | ||
236 | { | ||
237 | my $i; | ||
238 | my $outFile = "$output_path\\verify.out"; | ||
239 | |||
240 | $cert_path =~ s/\\/\//g; | ||
241 | my @cert_files = <$cert_path/*.pem>; | ||
242 | |||
243 | print( "\nRUNNING VERIFY TESTS:\n\n"); | ||
244 | |||
245 | print( OUT "\n========================================================\n"); | ||
246 | print( OUT "VERIFY TESTS:\n\n"); | ||
247 | |||
248 | make_tmp_cert_file(); | ||
249 | |||
250 | foreach $i (@cert_files) | ||
251 | { | ||
252 | system("openssl2 verify -CAfile $tmp_cert $i (CLIB_OPT)/>$outFile"); | ||
253 | log_desc("Verifying cert: $i"); | ||
254 | log_output("openssl2 verify -CAfile $tmp_cert $i", $outFile); | ||
255 | } | ||
256 | } | ||
257 | |||
258 | |||
259 | ############################################################################ | ||
260 | sub ssl_tests | ||
261 | { | ||
262 | my $outFile = "$output_path\\ssl_tst.out"; | ||
263 | my($CAcert) = "$output_path\\certCA.ss"; | ||
264 | my($Ukey) = "$output_path\\keyU.ss"; | ||
265 | my($Ucert) = "$output_path\\certU.ss"; | ||
266 | my($ssltest)= "ssltest -key $Ukey -cert $Ucert -c_key $Ukey -c_cert $Ucert -CAfile $CAcert"; | ||
267 | |||
268 | print( "\nRUNNING SSL TESTS:\n\n"); | ||
269 | |||
270 | print( OUT "\n========================================================\n"); | ||
271 | print( OUT "SSL TESTS:\n\n"); | ||
272 | |||
273 | system("ssltest -ssl2 (CLIB_OPT)/>$outFile"); | ||
274 | log_desc("Testing sslv2:"); | ||
275 | log_output("ssltest -ssl2", $outFile); | ||
276 | |||
277 | system("$ssltest -ssl2 -server_auth (CLIB_OPT)/>$outFile"); | ||
278 | log_desc("Testing sslv2 with server authentication:"); | ||
279 | log_output("$ssltest -ssl2 -server_auth", $outFile); | ||
280 | |||
281 | system("$ssltest -ssl2 -client_auth (CLIB_OPT)/>$outFile"); | ||
282 | log_desc("Testing sslv2 with client authentication:"); | ||
283 | log_output("$ssltest -ssl2 -client_auth", $outFile); | ||
284 | |||
285 | system("$ssltest -ssl2 -server_auth -client_auth (CLIB_OPT)/>$outFile"); | ||
286 | log_desc("Testing sslv2 with both client and server authentication:"); | ||
287 | log_output("$ssltest -ssl2 -server_auth -client_auth", $outFile); | ||
288 | |||
289 | system("ssltest -ssl3 (CLIB_OPT)/>$outFile"); | ||
290 | log_desc("Testing sslv3:"); | ||
291 | log_output("ssltest -ssl3", $outFile); | ||
292 | |||
293 | system("$ssltest -ssl3 -server_auth (CLIB_OPT)/>$outFile"); | ||
294 | log_desc("Testing sslv3 with server authentication:"); | ||
295 | log_output("$ssltest -ssl3 -server_auth", $outFile); | ||
296 | |||
297 | system("$ssltest -ssl3 -client_auth (CLIB_OPT)/>$outFile"); | ||
298 | log_desc("Testing sslv3 with client authentication:"); | ||
299 | log_output("$ssltest -ssl3 -client_auth", $outFile); | ||
300 | |||
301 | system("$ssltest -ssl3 -server_auth -client_auth (CLIB_OPT)/>$outFile"); | ||
302 | log_desc("Testing sslv3 with both client and server authentication:"); | ||
303 | log_output("$ssltest -ssl3 -server_auth -client_auth", $outFile); | ||
304 | |||
305 | system("ssltest (CLIB_OPT)/>$outFile"); | ||
306 | log_desc("Testing sslv2/sslv3:"); | ||
307 | log_output("ssltest", $outFile); | ||
308 | |||
309 | system("$ssltest -server_auth (CLIB_OPT)/>$outFile"); | ||
310 | log_desc("Testing sslv2/sslv3 with server authentication:"); | ||
311 | log_output("$ssltest -server_auth", $outFile); | ||
312 | |||
313 | system("$ssltest -client_auth (CLIB_OPT)/>$outFile"); | ||
314 | log_desc("Testing sslv2/sslv3 with client authentication:"); | ||
315 | log_output("$ssltest -client_auth ", $outFile); | ||
316 | |||
317 | system("$ssltest -server_auth -client_auth (CLIB_OPT)/>$outFile"); | ||
318 | log_desc("Testing sslv2/sslv3 with both client and server authentication:"); | ||
319 | log_output("$ssltest -server_auth -client_auth", $outFile); | ||
320 | |||
321 | system("ssltest -bio_pair -ssl2 (CLIB_OPT)/>$outFile"); | ||
322 | log_desc("Testing sslv2 via BIO pair:"); | ||
323 | log_output("ssltest -bio_pair -ssl2", $outFile); | ||
324 | |||
325 | system("ssltest -bio_pair -dhe1024dsa -v (CLIB_OPT)/>$outFile"); | ||
326 | log_desc("Testing sslv2/sslv3 with 1024 bit DHE via BIO pair:"); | ||
327 | log_output("ssltest -bio_pair -dhe1024dsa -v", $outFile); | ||
328 | |||
329 | system("$ssltest -bio_pair -ssl2 -server_auth (CLIB_OPT)/>$outFile"); | ||
330 | log_desc("Testing sslv2 with server authentication via BIO pair:"); | ||
331 | log_output("$ssltest -bio_pair -ssl2 -server_auth", $outFile); | ||
332 | |||
333 | system("$ssltest -bio_pair -ssl2 -client_auth (CLIB_OPT)/>$outFile"); | ||
334 | log_desc("Testing sslv2 with client authentication via BIO pair:"); | ||
335 | log_output("$ssltest -bio_pair -ssl2 -client_auth", $outFile); | ||
336 | |||
337 | system("$ssltest -bio_pair -ssl2 -server_auth -client_auth (CLIB_OPT)/>$outFile"); | ||
338 | log_desc("Testing sslv2 with both client and server authentication via BIO pair:"); | ||
339 | log_output("$ssltest -bio_pair -ssl2 -server_auth -client_auth", $outFile); | ||
340 | |||
341 | system("ssltest -bio_pair -ssl3 (CLIB_OPT)/>$outFile"); | ||
342 | log_desc("Testing sslv3 via BIO pair:"); | ||
343 | log_output("ssltest -bio_pair -ssl3", $outFile); | ||
344 | |||
345 | system("$ssltest -bio_pair -ssl3 -server_auth (CLIB_OPT)/>$outFile"); | ||
346 | log_desc("Testing sslv3 with server authentication via BIO pair:"); | ||
347 | log_output("$ssltest -bio_pair -ssl3 -server_auth", $outFile); | ||
348 | |||
349 | system("$ssltest -bio_pair -ssl3 -client_auth (CLIB_OPT)/>$outFile"); | ||
350 | log_desc("Testing sslv3 with client authentication via BIO pair:"); | ||
351 | log_output("$ssltest -bio_pair -ssl3 -client_auth", $outFile); | ||
352 | |||
353 | system("$ssltest -bio_pair -ssl3 -server_auth -client_auth (CLIB_OPT)/>$outFile"); | ||
354 | log_desc("Testing sslv3 with both client and server authentication via BIO pair:"); | ||
355 | log_output("$ssltest -bio_pair -ssl3 -server_auth -client_auth", $outFile); | ||
356 | |||
357 | system("ssltest -bio_pair (CLIB_OPT)/>$outFile"); | ||
358 | log_desc("Testing sslv2/sslv3 via BIO pair:"); | ||
359 | log_output("ssltest -bio_pair", $outFile); | ||
360 | |||
361 | system("$ssltest -bio_pair -server_auth (CLIB_OPT)/>$outFile"); | ||
362 | log_desc("Testing sslv2/sslv3 with server authentication via BIO pair:"); | ||
363 | log_output("$ssltest -bio_pair -server_auth", $outFile); | ||
364 | |||
365 | system("$ssltest -bio_pair -client_auth (CLIB_OPT)/>$outFile"); | ||
366 | log_desc("Testing sslv2/sslv3 with client authentication via BIO pair:"); | ||
367 | log_output("$ssltest -bio_pair -client_auth", $outFile); | ||
368 | |||
369 | system("$ssltest -bio_pair -server_auth -client_auth (CLIB_OPT)/>$outFile"); | ||
370 | log_desc("Testing sslv2/sslv3 with both client and server authentication via BIO pair:"); | ||
371 | log_output("$ssltest -bio_pair -server_auth -client_auth", $outFile); | ||
372 | } | ||
373 | |||
374 | |||
375 | ############################################################################ | ||
376 | sub ca_tests | ||
377 | { | ||
378 | my $outFile = "$output_path\\ca_tst.out"; | ||
379 | |||
380 | my($CAkey) = "$output_path\\keyCA.ss"; | ||
381 | my($CAcert) = "$output_path\\certCA.ss"; | ||
382 | my($CAserial) = "$output_path\\certCA.srl"; | ||
383 | my($CAreq) = "$output_path\\reqCA.ss"; | ||
384 | my($CAreq2) = "$output_path\\req2CA.ss"; | ||
385 | |||
386 | my($CAconf) = "$test_path\\CAss.cnf"; | ||
387 | |||
388 | my($Uconf) = "$test_path\\Uss.cnf"; | ||
389 | |||
390 | my($Ukey) = "$output_path\\keyU.ss"; | ||
391 | my($Ureq) = "$output_path\\reqU.ss"; | ||
392 | my($Ucert) = "$output_path\\certU.ss"; | ||
393 | |||
394 | print( "\nRUNNING CA TESTS:\n\n"); | ||
395 | |||
396 | print( OUT "\n========================================================\n"); | ||
397 | print( OUT "CA TESTS:\n"); | ||
398 | |||
399 | system("openssl2 req -config $CAconf -out $CAreq -keyout $CAkey -new (CLIB_OPT)/>$outFile"); | ||
400 | log_desc("Make a certificate request using req:"); | ||
401 | log_output("openssl2 req -config $CAconf -out $CAreq -keyout $CAkey -new", $outFile); | ||
402 | |||
403 | system("openssl2 x509 -CAcreateserial -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey (CLIB_OPT)/>$outFile"); | ||
404 | log_desc("Convert the certificate request into a self signed certificate using x509:"); | ||
405 | log_output("openssl2 x509 -CAcreateserial -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey", $outFile); | ||
406 | |||
407 | system("openssl2 x509 -in $CAcert -x509toreq -signkey $CAkey -out $CAreq2 (CLIB_OPT)/>$outFile"); | ||
408 | log_desc("Convert a certificate into a certificate request using 'x509':"); | ||
409 | log_output("openssl2 x509 -in $CAcert -x509toreq -signkey $CAkey -out $CAreq2", $outFile); | ||
410 | |||
411 | system("openssl2 req -config $OpenSSL_config -verify -in $CAreq -noout (CLIB_OPT)/>$outFile"); | ||
412 | log_output("openssl2 req -config $OpenSSL_config -verify -in $CAreq -noout", $outFile); | ||
413 | |||
414 | system("openssl2 req -config $OpenSSL_config -verify -in $CAreq2 -noout (CLIB_OPT)/>$outFile"); | ||
415 | log_output( "openssl2 req -config $OpenSSL_config -verify -in $CAreq2 -noout", $outFile); | ||
416 | |||
417 | system("openssl2 verify -CAfile $CAcert $CAcert (CLIB_OPT)/>$outFile"); | ||
418 | log_output("openssl2 verify -CAfile $CAcert $CAcert", $outFile); | ||
419 | |||
420 | system("openssl2 req -config $Uconf -out $Ureq -keyout $Ukey -new (CLIB_OPT)/>$outFile"); | ||
421 | log_desc("Make another certificate request using req:"); | ||
422 | log_output("openssl2 req -config $Uconf -out $Ureq -keyout $Ukey -new", $outFile); | ||
423 | |||
424 | system("openssl2 x509 -CAcreateserial -in $Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -CAserial $CAserial (CLIB_OPT)/>$outFile"); | ||
425 | log_desc("Sign certificate request with the just created CA via x509:"); | ||
426 | log_output("openssl2 x509 -CAcreateserial -in $Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -CAserial $CAserial", $outFile); | ||
427 | |||
428 | system("openssl2 verify -CAfile $CAcert $Ucert (CLIB_OPT)/>$outFile"); | ||
429 | log_output("openssl2 verify -CAfile $CAcert $Ucert", $outFile); | ||
430 | |||
431 | system("openssl2 x509 -subject -issuer -startdate -enddate -noout -in $Ucert (CLIB_OPT)/>$outFile"); | ||
432 | log_desc("Certificate details"); | ||
433 | log_output("openssl2 x509 -subject -issuer -startdate -enddate -noout -in $Ucert", $outFile); | ||
434 | |||
435 | print(OUT "--\n"); | ||
436 | print(OUT "The generated CA certificate is $CAcert\n"); | ||
437 | print(OUT "The generated CA private key is $CAkey\n"); | ||
438 | print(OUT "The current CA signing serial number is in $CAserial\n"); | ||
439 | |||
440 | print(OUT "The generated user certificate is $Ucert\n"); | ||
441 | print(OUT "The generated user private key is $Ukey\n"); | ||
442 | print(OUT "--\n"); | ||
443 | } | ||
444 | |||
445 | ############################################################################ | ||
446 | sub evp_tests | ||
447 | { | ||
448 | my $i = 'evp_test'; | ||
449 | |||
450 | print( "\nRUNNING EVP TESTS:\n\n"); | ||
451 | |||
452 | print( OUT "\n========================================================\n"); | ||
453 | print( OUT "EVP TESTS:\n\n"); | ||
454 | |||
455 | if (-e "$base_path\\$i.nlm") | ||
456 | { | ||
457 | my $outFile = "$output_path\\$i.out"; | ||
458 | system("$i $test_path\\evptests.txt (CLIB_OPT)/>$outFile"); | ||
459 | log_desc("Test: $i\.nlm:"); | ||
460 | log_output("", $outFile ); | ||
461 | } | ||
462 | else | ||
463 | { | ||
464 | log_desc("Test: $i\.nlm: file not found"); | ||
465 | } | ||
466 | } | ||
467 | |||
468 | ############################################################################ | ||
469 | sub log_output( $ $ ) | ||
470 | { | ||
471 | my( $desc, $file ) = @_; | ||
472 | my($error) = 0; | ||
473 | my($key); | ||
474 | my($msg); | ||
475 | |||
476 | if ($desc) | ||
477 | { | ||
478 | print("\r$desc\n"); | ||
479 | print(OUT "$desc\n"); | ||
480 | } | ||
481 | |||
482 | # loop waiting for test program to complete | ||
483 | while ( stat($file) == 0) | ||
484 | { print(". "); sleep(1); } | ||
485 | |||
486 | |||
487 | # copy test output to log file | ||
488 | open(IN, "<$file"); | ||
489 | while (<IN>) | ||
490 | { | ||
491 | print(OUT $_); | ||
492 | if ( $_ =~ /ERROR/ ) | ||
493 | { | ||
494 | $error = 1; | ||
495 | } | ||
496 | } | ||
497 | # close and delete the temporary test output file | ||
498 | close(IN); | ||
499 | unlink($file); | ||
500 | |||
501 | if ( $error == 0 ) | ||
502 | { | ||
503 | $msg = "Test Succeeded"; | ||
504 | } | ||
505 | else | ||
506 | { | ||
507 | $msg = "Test Failed"; | ||
508 | } | ||
509 | |||
510 | print(OUT "$msg\n"); | ||
511 | |||
512 | if ($pause) | ||
513 | { | ||
514 | print("$msg - press ENTER to continue..."); | ||
515 | $key = getc; | ||
516 | print("\n"); | ||
517 | } | ||
518 | |||
519 | # Several of the testing scripts run a loop loading the | ||
520 | # same NLM with different options. | ||
521 | # On slow NetWare machines there appears to be some delay in the | ||
522 | # OS actually unloading the test nlms and the OS complains about. | ||
523 | # the NLM already being loaded. This additional pause is to | ||
524 | # to help provide a little more time for unloading before trying to | ||
525 | # load again. | ||
526 | sleep(1); | ||
527 | } | ||
528 | |||
529 | |||
530 | ############################################################################ | ||
531 | sub log_desc( $ ) | ||
532 | { | ||
533 | my( $desc ) = @_; | ||
534 | |||
535 | print("\n"); | ||
536 | print("$desc\n"); | ||
537 | |||
538 | print(OUT "\n"); | ||
539 | print(OUT "$desc\n"); | ||
540 | print(OUT "======================================\n"); | ||
541 | } | ||
542 | |||
543 | ############################################################################ | ||
544 | sub compare_files( $ $ $ ) | ||
545 | { | ||
546 | my( $file1, $file2, $binary ) = @_; | ||
547 | my( $n1, $n2, $b1, $b2 ); | ||
548 | my($ret) = 1; | ||
549 | |||
550 | open(IN0, $file1) || die "\nunable to open $file1\n"; | ||
551 | open(IN1, $file2) || die "\nunable to open $file2\n"; | ||
552 | |||
553 | if ($binary) | ||
554 | { | ||
555 | binmode IN0; | ||
556 | binmode IN1; | ||
557 | } | ||
558 | |||
559 | for (;;) | ||
560 | { | ||
561 | $n1 = read(IN0, $b1, 512); | ||
562 | $n2 = read(IN1, $b2, 512); | ||
563 | |||
564 | if ($n1 != $n2) {last;} | ||
565 | if ($b1 != $b2) {last;} | ||
566 | |||
567 | if ($n1 == 0) | ||
568 | { | ||
569 | $ret = 0; | ||
570 | last; | ||
571 | } | ||
572 | } | ||
573 | close(IN0); | ||
574 | close(IN1); | ||
575 | return($ret); | ||
576 | } | ||
577 | |||
578 | ############################################################################ | ||
579 | sub do_wait() | ||
580 | { | ||
581 | my($key); | ||
582 | |||
583 | if ($pause) | ||
584 | { | ||
585 | print("Press ENTER to continue..."); | ||
586 | $key = getc; | ||
587 | print("\n"); | ||
588 | } | ||
589 | } | ||
590 | |||
591 | |||
592 | ############################################################################ | ||
593 | sub make_tmp_cert_file() | ||
594 | { | ||
595 | my @cert_files = <$cert_path/*.pem>; | ||
596 | |||
597 | # delete the file if it already exists | ||
598 | unlink($tmp_cert); | ||
599 | |||
600 | open( TMP_CERT, ">$tmp_cert") || die "\nunable to open $tmp_cert\n"; | ||
601 | |||
602 | print("building temporary cert file\n"); | ||
603 | |||
604 | # create a temporary cert file that contains all the certs | ||
605 | foreach $i (@cert_files) | ||
606 | { | ||
607 | open( IN_CERT, $i ) || die "\nunable to open $i\n"; | ||
608 | |||
609 | for(;;) | ||
610 | { | ||
611 | $n = sysread(IN_CERT, $data, 1024); | ||
612 | |||
613 | if ($n == 0) | ||
614 | { | ||
615 | close(IN_CERT); | ||
616 | last; | ||
617 | }; | ||
618 | |||
619 | syswrite(TMP_CERT, $data, $n); | ||
620 | } | ||
621 | } | ||
622 | |||
623 | close( TMP_CERT ); | ||
624 | } | ||
diff --git a/src/lib/libssl/src/Netware/globals.txt b/src/lib/libssl/src/Netware/globals.txt new file mode 100644 index 0000000000..fe05d390cf --- /dev/null +++ b/src/lib/libssl/src/Netware/globals.txt | |||
@@ -0,0 +1,254 @@ | |||
1 | An initial review of the OpenSSL code was done to determine how many | ||
2 | global variables where present. The idea was to determine the amount of | ||
3 | work required to pull the globals into an instance data structure in | ||
4 | order to build a Library NLM for NetWare. This file contains the results | ||
5 | of the review. Each file is listed along with the globals in the file. | ||
6 | The initial review was done very quickly so this list is probably | ||
7 | not a comprehensive list. | ||
8 | |||
9 | |||
10 | cryptlib.c | ||
11 | =========================================== | ||
12 | |||
13 | static STACK *app_locks=NULL; | ||
14 | |||
15 | static STACK_OF(CRYPTO_dynlock) *dyn_locks=NULL; | ||
16 | |||
17 | static void (MS_FAR *locking_callback)(int mode,int type, | ||
18 | const char *file,int line)=NULL; | ||
19 | static int (MS_FAR *add_lock_callback)(int *pointer,int amount, | ||
20 | int type,const char *file,int line)=NULL; | ||
21 | static unsigned long (MS_FAR *id_callback)(void)=NULL; | ||
22 | static struct CRYPTO_dynlock_value *(MS_FAR *dynlock_create_callback) | ||
23 | (const char *file,int line)=NULL; | ||
24 | static void (MS_FAR *dynlock_lock_callback)(int mode, | ||
25 | struct CRYPTO_dynlock_value *l, const char *file,int line)=NULL; | ||
26 | static void (MS_FAR *dynlock_destroy_callback)(struct CRYPTO_dynlock_value *l, | ||
27 | const char *file,int line)=NULL; | ||
28 | |||
29 | |||
30 | mem.c | ||
31 | =========================================== | ||
32 | static int allow_customize = 1; /* we provide flexible functions for */ | ||
33 | static int allow_customize_debug = 1;/* exchanging memory-related functions at | ||
34 | |||
35 | /* may be changed as long as `allow_customize' is set */ | ||
36 | static void *(*malloc_locked_func)(size_t) = malloc; | ||
37 | static void (*free_locked_func)(void *) = free; | ||
38 | static void *(*malloc_func)(size_t) = malloc; | ||
39 | static void *(*realloc_func)(void *, size_t)= realloc; | ||
40 | static void (*free_func)(void *) = free; | ||
41 | |||
42 | /* use default functions from mem_dbg.c */ | ||
43 | static void (*malloc_debug_func)(void *,int,const char *,int,int) | ||
44 | = CRYPTO_dbg_malloc; | ||
45 | static void (*realloc_debug_func)(void *,void *,int,const char *,int,int) | ||
46 | = CRYPTO_dbg_realloc; | ||
47 | static void (*free_debug_func)(void *,int) = CRYPTO_dbg_free; | ||
48 | static void (*set_debug_options_func)(long) = CRYPTO_dbg_set_options; | ||
49 | static long (*get_debug_options_func)(void) = CRYPTO_dbg_get_options; | ||
50 | |||
51 | |||
52 | mem_dbg.c | ||
53 | =========================================== | ||
54 | static int mh_mode=CRYPTO_MEM_CHECK_OFF; | ||
55 | static unsigned long order = 0; /* number of memory requests */ | ||
56 | static LHASH *mh=NULL; /* hash-table of memory requests (address as key) */ | ||
57 | |||
58 | static LHASH *amih=NULL; /* hash-table with those app_mem_info_st's */ | ||
59 | static long options = /* extra information to be recorded */ | ||
60 | static unsigned long disabling_thread = 0; | ||
61 | |||
62 | |||
63 | err.c | ||
64 | =========================================== | ||
65 | static LHASH *error_hash=NULL; | ||
66 | static LHASH *thread_hash=NULL; | ||
67 | |||
68 | several files have routines with static "init" to track if error strings | ||
69 | have been loaded ( may not want seperate error strings for each process ) | ||
70 | The "init" variable can't be left "global" because the error has is a ptr | ||
71 | that is malloc'ed. The malloc'ed error has is dependant on the "init" | ||
72 | vars. | ||
73 | |||
74 | files: | ||
75 | pem_err.c | ||
76 | cpt_err.c | ||
77 | pk12err.c | ||
78 | asn1_err.c | ||
79 | bio_err.c | ||
80 | bn_err.c | ||
81 | buf_err.c | ||
82 | comp_err.c | ||
83 | conf_err.c | ||
84 | cpt_err.c | ||
85 | dh_err.c | ||
86 | dsa_err.c | ||
87 | dso_err.c | ||
88 | evp_err.c | ||
89 | obj_err.c | ||
90 | pkcs7err.c | ||
91 | rand_err.c | ||
92 | rsa_err.c | ||
93 | rsar_err.c | ||
94 | ssl_err.c | ||
95 | x509_err.c | ||
96 | v3err.c | ||
97 | err.c | ||
98 | |||
99 | These file have similar "init" globals but they are for other stuff not | ||
100 | error strings: | ||
101 | |||
102 | bn_lib.c | ||
103 | ecc_enc.c | ||
104 | s23_clnt.c | ||
105 | s23_meth.c | ||
106 | s23_srvr.c | ||
107 | s2_clnt.c | ||
108 | s2_lib.c | ||
109 | s2_meth.c | ||
110 | s2_srvr.c | ||
111 | s3_clnt.c | ||
112 | s3_lib.c | ||
113 | s3_srvr.c | ||
114 | t1_clnt.c | ||
115 | t1_meth.c | ||
116 | t1_srvr.c | ||
117 | |||
118 | rand_lib.c | ||
119 | =========================================== | ||
120 | static RAND_METHOD *rand_meth= &rand_ssleay_meth; | ||
121 | |||
122 | md_rand.c | ||
123 | =========================================== | ||
124 | static int state_num=0,state_index=0; | ||
125 | static unsigned char state[STATE_SIZE+MD_DIGEST_LENGTH]; | ||
126 | static unsigned char md[MD_DIGEST_LENGTH]; | ||
127 | static long md_count[2]={0,0}; | ||
128 | static double entropy=0; | ||
129 | static int initialized=0; | ||
130 | |||
131 | /* This should be set to 1 only when ssleay_rand_add() is called inside | ||
132 | an already locked state, so it doesn't try to lock and thereby cause | ||
133 | a hang. And it should always be reset back to 0 before unlocking. */ | ||
134 | static int add_do_not_lock=0; | ||
135 | |||
136 | obj_dat.c | ||
137 | ============================================ | ||
138 | static int new_nid=NUM_NID; | ||
139 | static LHASH *added=NULL; | ||
140 | |||
141 | b_sock.c | ||
142 | =========================================== | ||
143 | static unsigned long BIO_ghbn_hits=0L; | ||
144 | static unsigned long BIO_ghbn_miss=0L; | ||
145 | static struct ghbn_cache_st | ||
146 | { | ||
147 | char name[129]; | ||
148 | struct hostent *ent; | ||
149 | unsigned long order; | ||
150 | } ghbn_cache[GHBN_NUM]; | ||
151 | |||
152 | static int wsa_init_done=0; | ||
153 | |||
154 | |||
155 | bio_lib.c | ||
156 | =========================================== | ||
157 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *bio_meth=NULL; | ||
158 | static int bio_meth_num=0; | ||
159 | |||
160 | |||
161 | bn_lib.c | ||
162 | ======================================== | ||
163 | static int bn_limit_bits=0; | ||
164 | static int bn_limit_num=8; /* (1<<bn_limit_bits) */ | ||
165 | static int bn_limit_bits_low=0; | ||
166 | static int bn_limit_num_low=8; /* (1<<bn_limit_bits_low) */ | ||
167 | static int bn_limit_bits_high=0; | ||
168 | static int bn_limit_num_high=8; /* (1<<bn_limit_bits_high) */ | ||
169 | static int bn_limit_bits_mont=0; | ||
170 | static int bn_limit_num_mont=8; /* (1<<bn_limit_bits_mont) */ | ||
171 | |||
172 | conf_lib.c | ||
173 | ======================================== | ||
174 | static CONF_METHOD *default_CONF_method=NULL; | ||
175 | |||
176 | dh_lib.c | ||
177 | ======================================== | ||
178 | static DH_METHOD *default_DH_method; | ||
179 | static int dh_meth_num = 0; | ||
180 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *dh_meth = NULL; | ||
181 | |||
182 | dsa_lib.c | ||
183 | ======================================== | ||
184 | static DSA_METHOD *default_DSA_method; | ||
185 | static int dsa_meth_num = 0; | ||
186 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *dsa_meth = NULL; | ||
187 | |||
188 | dso_lib.c | ||
189 | ======================================== | ||
190 | static DSO_METHOD *default_DSO_meth = NULL; | ||
191 | |||
192 | rsa_lib.c | ||
193 | ======================================== | ||
194 | static RSA_METHOD *default_RSA_meth=NULL; | ||
195 | static int rsa_meth_num=0; | ||
196 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *rsa_meth=NULL; | ||
197 | |||
198 | x509_trs.c | ||
199 | ======================================= | ||
200 | static int (*default_trust)(int id, X509 *x, int flags) = obj_trust; | ||
201 | static STACK_OF(X509_TRUST) *trtable = NULL; | ||
202 | |||
203 | x509_req.c | ||
204 | ======================================= | ||
205 | static int *ext_nids = ext_nid_list; | ||
206 | |||
207 | o_names.c | ||
208 | ====================================== | ||
209 | static LHASH *names_lh=NULL; | ||
210 | static STACK_OF(NAME_FUNCS) *name_funcs_stack; | ||
211 | static int free_type; | ||
212 | static int names_type_num=OBJ_NAME_TYPE_NUM; | ||
213 | |||
214 | |||
215 | th-lock.c - NEED to add support for locking for NetWare | ||
216 | ============================================== | ||
217 | static long *lock_count; | ||
218 | (other platform specific globals) | ||
219 | |||
220 | x_x509.c | ||
221 | ============================================== | ||
222 | static int x509_meth_num = 0; | ||
223 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *x509_meth = NULL; | ||
224 | |||
225 | |||
226 | evp_pbe.c | ||
227 | ============================================ | ||
228 | static STACK *pbe_algs; | ||
229 | |||
230 | evp_key.c | ||
231 | ============================================ | ||
232 | static char prompt_string[80]; | ||
233 | |||
234 | ssl_ciph.c | ||
235 | ============================================ | ||
236 | static STACK_OF(SSL_COMP) *ssl_comp_methods=NULL; | ||
237 | |||
238 | ssl_lib.c | ||
239 | ============================================= | ||
240 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *ssl_meth=NULL; | ||
241 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *ssl_ctx_meth=NULL; | ||
242 | static int ssl_meth_num=0; | ||
243 | static int ssl_ctx_meth_num=0; | ||
244 | |||
245 | ssl_sess.c | ||
246 | ============================================= | ||
247 | static int ssl_session_num=0; | ||
248 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *ssl_session_meth=NULL; | ||
249 | |||
250 | x509_vfy.c | ||
251 | ============================================ | ||
252 | static STACK_OF(CRYPTO_EX_DATA_FUNCS) *x509_store_ctx_method=NULL; | ||
253 | static int x509_store_ctx_num=0; | ||
254 | |||
diff --git a/src/lib/libssl/src/Netware/readme.txt b/src/lib/libssl/src/Netware/readme.txt new file mode 100644 index 0000000000..a5b5faae33 --- /dev/null +++ b/src/lib/libssl/src/Netware/readme.txt | |||
@@ -0,0 +1,19 @@ | |||
1 | |||
2 | Contents of the openssl\netware directory | ||
3 | ========================================== | ||
4 | |||
5 | Regular files: | ||
6 | |||
7 | readme.txt - this file | ||
8 | do_tests.pl - perl script used to run the OpenSSL tests on NetWare | ||
9 | cpy_tests.bat - batch to to copy test stuff to NetWare server | ||
10 | build.bat - batch file to help with builds | ||
11 | set_env.bat - batch file to help setup build environments | ||
12 | globals.txt - results of initial code review to identify OpenSSL global variables | ||
13 | |||
14 | |||
15 | The following files are generated by the various scripts. They are | ||
16 | recreated each time and it is okay to delete them. | ||
17 | |||
18 | *.def - command files used by Metrowerks linker | ||
19 | *.mak - make files generated by mk1mf.pl | ||
diff --git a/src/lib/libssl/src/Netware/set_env.bat b/src/lib/libssl/src/Netware/set_env.bat new file mode 100644 index 0000000000..ace024e529 --- /dev/null +++ b/src/lib/libssl/src/Netware/set_env.bat | |||
@@ -0,0 +1,112 @@ | |||
1 | @echo off | ||
2 | |||
3 | rem ======================================================================== | ||
4 | rem Batch file to assist in setting up the necessary enviroment for | ||
5 | rem building OpenSSL for NetWare. | ||
6 | rem | ||
7 | rem usage: | ||
8 | rem set_env [target] | ||
9 | rem | ||
10 | rem target - "netware-clib" - Clib build | ||
11 | rem - "netware-libc" - LibC build | ||
12 | rem | ||
13 | rem | ||
14 | |||
15 | if "a%1" == "a" goto usage | ||
16 | |||
17 | set LIBC_BUILD= | ||
18 | set CLIB_BUILD= | ||
19 | set GNUC= | ||
20 | |||
21 | if "%1" == "netware-clib" set CLIB_BUILD=Y | ||
22 | if "%1" == "netware-clib" set LIBC_BUILD= | ||
23 | |||
24 | if "%1" == "netware-libc" set LIBC_BUILD=Y | ||
25 | if "%1" == "netware-libc" set CLIB_BUILD= | ||
26 | |||
27 | if "%2" == "gnuc" set GNUC=Y | ||
28 | if "%2" == "codewarrior" set GNUC= | ||
29 | |||
30 | rem Location of tools (compiler, linker, etc) | ||
31 | if "%NDKBASE%" == "" set NDKBASE=c:\Novell | ||
32 | |||
33 | rem If Perl for Win32 is not already in your path, add it here | ||
34 | set PERL_PATH= | ||
35 | |||
36 | rem Define path to the Metrowerks command line tools | ||
37 | rem or GNU Crosscompiler gcc / nlmconv | ||
38 | rem ( compiler, assembler, linker) | ||
39 | if "%GNUC%" == "Y" set COMPILER_PATH=c:\usr\i586-netware\bin;c:\usr\bin | ||
40 | if "%GNUC%" == "" set COMPILER_PATH=c:\prg\cwcmdl40 | ||
41 | |||
42 | rem If using gnu make define path to utility | ||
43 | rem set GNU_MAKE_PATH=%NDKBASE%\gnu | ||
44 | set GNU_MAKE_PATH=c:\prg\tools | ||
45 | |||
46 | rem If using ms nmake define path to nmake | ||
47 | rem set MS_NMAKE_PATH=%NDKBASE%\msvc\600\bin | ||
48 | |||
49 | rem If using NASM assembler define path | ||
50 | rem set NASM_PATH=%NDKBASE%\nasm | ||
51 | set NASM_PATH=c:\prg\tools | ||
52 | |||
53 | rem Update path to include tool paths | ||
54 | set path=%path%;%COMPILER_PATH% | ||
55 | if not "%GNU_MAKE_PATH%" == "" set path=%path%;%GNU_MAKE_PATH% | ||
56 | if not "%MS_NMAKE_PATH%" == "" set path=%path%;%MS_NMAKE_PATH% | ||
57 | if not "%NASM_PATH%" == "" set path=%path%;%NASM_PATH% | ||
58 | if not "%PERL_PATH%" == "" set path=%path%;%PERL_PATH% | ||
59 | |||
60 | rem Set INCLUDES to location of Novell NDK includes | ||
61 | if "%LIBC_BUILD%" == "Y" set INCLUDE=%NDKBASE%\ndk\libc\include;%NDKBASE%\ndk\libc\include\winsock | ||
62 | if "%CLIB_BUILD%" == "Y" set INCLUDE=%NDKBASE%\ndk\nwsdk\include\nlm;%NDKBASE%\ws295sdk\include | ||
63 | |||
64 | rem Set Imports to location of Novell NDK import files | ||
65 | if "%LIBC_BUILD%" == "Y" set IMPORTS=%NDKBASE%\ndk\libc\imports | ||
66 | if "%CLIB_BUILD%" == "Y" set IMPORTS=%NDKBASE%\ndk\nwsdk\imports | ||
67 | |||
68 | rem Set PRELUDE to the absolute path of the prelude object to link with in | ||
69 | rem the Metrowerks NetWare PDK - NOTE: for Clib builds "clibpre.o" is | ||
70 | rem recommended, for LibC NKS builds libcpre.o must be used | ||
71 | if "%GNUC%" == "Y" goto gnuc | ||
72 | if "%LIBC_BUILD%" == "Y" set PRELUDE=%IMPORTS%\libcpre.o | ||
73 | rem if "%CLIB_BUILD%" == "Y" set PRELUDE=%IMPORTS%\clibpre.o | ||
74 | if "%CLIB_BUILD%" == "Y" set PRELUDE=%IMPORTS%\prelude.o | ||
75 | echo using MetroWerks CodeWarrior | ||
76 | goto info | ||
77 | |||
78 | :gnuc | ||
79 | if "%LIBC_BUILD%" == "Y" set PRELUDE=%IMPORTS%\libcpre.gcc.o | ||
80 | rem if "%CLIB_BUILD%" == "Y" set PRELUDE=%IMPORTS%\clibpre.gcc.o | ||
81 | if "%CLIB_BUILD%" == "Y" set PRELUDE=%IMPORTS%\prelude.gcc.o | ||
82 | echo using GNU GCC Compiler | ||
83 | |||
84 | :info | ||
85 | echo. | ||
86 | |||
87 | if "%LIBC_BUILD%" == "Y" echo Enviroment configured for LibC build | ||
88 | if "%LIBC_BUILD%" == "Y" echo use "netware\build.bat netware-libc ..." | ||
89 | |||
90 | if "%CLIB_BUILD%" == "Y" echo Enviroment configured for CLib build | ||
91 | if "%CLIB_BUILD%" == "Y" echo use "netware\build.bat netware-clib ..." | ||
92 | |||
93 | goto end | ||
94 | |||
95 | :usage | ||
96 | rem =============================================================== | ||
97 | echo. | ||
98 | echo No target build specified! | ||
99 | echo. | ||
100 | echo usage: set_env [target] [compiler] | ||
101 | echo. | ||
102 | echo target - "netware-clib" - Clib build | ||
103 | echo - "netware-libc" - LibC build | ||
104 | echo. | ||
105 | echo compiler - "gnuc" - GNU GCC Compiler | ||
106 | echo - "codewarrior" - MetroWerks CodeWarrior (default) | ||
107 | echo. | ||
108 | |||
109 | :end | ||
110 | echo. | ||
111 | |||
112 | |||
diff --git a/src/lib/libssl/src/apps/Makefile b/src/lib/libssl/src/apps/Makefile index 4daa92382f..92ae515b44 100644 --- a/src/lib/libssl/src/apps/Makefile +++ b/src/lib/libssl/src/apps/Makefile | |||
@@ -7,11 +7,6 @@ TOP= .. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
9 | CFLAG= -g -static | 9 | CFLAG= -g -static |
10 | INSTALL_PREFIX= | ||
11 | INSTALLTOP= /usr/local/ssl | ||
12 | OPENSSLDIR= /usr/local/ssl | ||
13 | MAKEDEPPROG= makedepend | ||
14 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
15 | MAKEFILE= Makefile | 10 | MAKEFILE= Makefile |
16 | PERL= perl | 11 | PERL= perl |
17 | RM= rm -f | 12 | RM= rm -f |
@@ -41,9 +36,9 @@ SCRIPTS=CA.sh CA.pl | |||
41 | EXE= $(PROGRAM)$(EXE_EXT) | 36 | EXE= $(PROGRAM)$(EXE_EXT) |
42 | 37 | ||
43 | E_EXE= verify asn1pars req dgst dh dhparam enc passwd gendh errstr \ | 38 | E_EXE= verify asn1pars req dgst dh dhparam enc passwd gendh errstr \ |
44 | ca crl rsa rsautl dsa dsaparam \ | 39 | ca crl rsa rsautl dsa dsaparam ec ecparam \ |
45 | x509 genrsa gendsa s_server s_client speed \ | 40 | x509 genrsa gendsa s_server s_client speed \ |
46 | s_time version pkcs7 crl2pkcs7 sess_id ciphers nseq pkcs12 \ | 41 | s_time version pkcs7 cms crl2pkcs7 sess_id ciphers nseq pkcs12 \ |
47 | pkcs8 spkac smime rand engine ocsp prime | 42 | pkcs8 spkac smime rand engine ocsp prime |
48 | 43 | ||
49 | PROGS= $(PROGRAM).c | 44 | PROGS= $(PROGRAM).c |
@@ -57,17 +52,19 @@ RAND_SRC=app_rand.c | |||
57 | 52 | ||
58 | E_OBJ= verify.o asn1pars.o req.o dgst.o dh.o dhparam.o enc.o passwd.o gendh.o errstr.o \ | 53 | E_OBJ= verify.o asn1pars.o req.o dgst.o dh.o dhparam.o enc.o passwd.o gendh.o errstr.o \ |
59 | ca.o pkcs7.o crl2p7.o crl.o \ | 54 | ca.o pkcs7.o crl2p7.o crl.o \ |
60 | rsa.o rsautl.o dsa.o dsaparam.o \ | 55 | rsa.o rsautl.o dsa.o dsaparam.o ec.o ecparam.o \ |
61 | x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o \ | 56 | x509.o genrsa.o gendsa.o s_server.o s_client.o speed.o \ |
62 | s_time.o $(A_OBJ) $(S_OBJ) $(RAND_OBJ) version.o sess_id.o \ | 57 | s_time.o $(A_OBJ) $(S_OBJ) $(RAND_OBJ) version.o sess_id.o \ |
63 | ciphers.o nseq.o pkcs12.o pkcs8.o spkac.o smime.o rand.o engine.o ocsp.o prime.o | 58 | ciphers.o nseq.o pkcs12.o pkcs8.o spkac.o smime.o rand.o engine.o \ |
59 | ocsp.o prime.o cms.o | ||
64 | 60 | ||
65 | E_SRC= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c ca.c \ | 61 | E_SRC= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c ca.c \ |
66 | pkcs7.c crl2p7.c crl.c \ | 62 | pkcs7.c crl2p7.c crl.c \ |
67 | rsa.c rsautl.c dsa.c dsaparam.c \ | 63 | rsa.c rsautl.c dsa.c dsaparam.c ec.c ecparam.c \ |
68 | x509.c genrsa.c gendsa.c s_server.c s_client.c speed.c \ | 64 | x509.c genrsa.c gendsa.c s_server.c s_client.c speed.c \ |
69 | s_time.c $(A_SRC) $(S_SRC) $(RAND_SRC) version.c sess_id.c \ | 65 | s_time.c $(A_SRC) $(S_SRC) $(RAND_SRC) version.c sess_id.c \ |
70 | ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c engine.c ocsp.c prime.c | 66 | ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c engine.c \ |
67 | ocsp.c prime.c cms.c | ||
71 | 68 | ||
72 | SRC=$(E_SRC) | 69 | SRC=$(E_SRC) |
73 | 70 | ||
@@ -86,8 +83,13 @@ all: exe | |||
86 | exe: $(EXE) | 83 | exe: $(EXE) |
87 | 84 | ||
88 | req: sreq.o $(A_OBJ) $(DLIBCRYPTO) | 85 | req: sreq.o $(A_OBJ) $(DLIBCRYPTO) |
89 | LD_LIBRARY_PATH=..:$$LD_LIBRARY_PATH \ | 86 | shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ |
90 | $(CC) -o req $(CFLAG) sreq.o $(A_OBJ) $(RAND_OBJ) $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 87 | shlib_target="$(SHLIB_TARGET)"; \ |
88 | fi; \ | ||
89 | $(MAKE) -f $(TOP)/Makefile.shared -e \ | ||
90 | APPNAME=req OBJECTS="sreq.o $(A_OBJ) $(RAND_OBJ)" \ | ||
91 | LIBDEPS="$(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS)" \ | ||
92 | link_app.$${shlib_target} | ||
91 | 93 | ||
92 | sreq.o: req.c | 94 | sreq.o: req.c |
93 | $(CC) -c $(INCLUDES) $(CFLAG) -o sreq.o req.c | 95 | $(CC) -c $(INCLUDES) $(CFLAG) -o sreq.o req.c |
@@ -96,15 +98,15 @@ files: | |||
96 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO | 98 | $(PERL) $(TOP)/util/files.pl Makefile >> $(TOP)/MINFO |
97 | 99 | ||
98 | install: | 100 | install: |
99 | @for i in $(EXE); \ | 101 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... |
102 | @set -e; for i in $(EXE); \ | ||
100 | do \ | 103 | do \ |
101 | (echo installing $$i; \ | 104 | (echo installing $$i; \ |
102 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ | 105 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ |
103 | chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ | 106 | chmod 755 $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ |
104 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new \ | 107 | mv -f $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i ); \ |
105 | $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i; \ | 108 | done; |
106 | ) done; | 109 | @set -e; for i in $(SCRIPTS); \ |
107 | @for i in $(SCRIPTS); \ | ||
108 | do \ | 110 | do \ |
109 | (echo installing $$i; \ | 111 | (echo installing $$i; \ |
110 | cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \ | 112 | cp $$i $(INSTALL_PREFIX)$(OPENSSLDIR)/misc/$$i.new; \ |
@@ -126,7 +128,11 @@ lint: | |||
126 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 128 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
127 | 129 | ||
128 | depend: | 130 | depend: |
129 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC) | 131 | @if [ -z "$(THIS)" ]; then \ |
132 | $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \ | ||
133 | else \ | ||
134 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \ | ||
135 | fi | ||
130 | 136 | ||
131 | dclean: | 137 | dclean: |
132 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 138 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
@@ -144,19 +150,14 @@ $(DLIBCRYPTO): | |||
144 | 150 | ||
145 | $(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) | 151 | $(EXE): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) |
146 | $(RM) $(EXE) | 152 | $(RM) $(EXE) |
147 | @if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 153 | shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ |
148 | FIPSLD_CC=$(CC); CC=$(TOP)/fips-1.0/fipsld; export CC FIPSLD_CC; \ | 154 | shlib_target="$(SHLIB_TARGET)"; \ |
149 | fi; \ | 155 | fi; \ |
150 | SHARED_LIBS="$(SHARED_LIBS)"; \ | 156 | LIBRARIES="$(LIBSSL) $(LIBKRB5) $(LIBCRYPTO)" ; \ |
151 | if [ "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \ | 157 | $(MAKE) -f $(TOP)/Makefile.shared -e \ |
152 | SHARED_LIBS=""; \ | 158 | APPNAME=$(EXE) OBJECTS="$(PROGRAM).o $(E_OBJ)" \ |
153 | fi; \ | 159 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ |
154 | if [ -z "$$SHARED_LIBS" ]; then \ | 160 | link_app.$${shlib_target} |
155 | set -x; $${CC:-$(CC)} -o $(EXE) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO) $(EX_LIBS) ; \ | ||
156 | else \ | ||
157 | set -x; LD_LIBRARY_PATH=..:$$LD_LIBRARY_PATH \ | ||
158 | $(CC) -o $(EXE) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \ | ||
159 | fi | ||
160 | -(cd ..; \ | 161 | -(cd ..; \ |
161 | OPENSSL="`pwd`/util/opensslwrap.sh"; export OPENSSL; \ | 162 | OPENSSL="`pwd`/util/opensslwrap.sh"; export OPENSSL; \ |
162 | $(PERL) tools/c_rehash certs) | 163 | $(PERL) tools/c_rehash certs) |
@@ -167,1005 +168,786 @@ progs.h: progs.pl | |||
167 | 168 | ||
168 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 169 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
169 | 170 | ||
170 | app_rand.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 171 | app_rand.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
171 | app_rand.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 172 | app_rand.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
172 | app_rand.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 173 | app_rand.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
173 | app_rand.o: ../include/openssl/cast.h ../include/openssl/conf.h | 174 | app_rand.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
174 | app_rand.o: ../include/openssl/crypto.h ../include/openssl/des.h | 175 | app_rand.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
175 | app_rand.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 176 | app_rand.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
176 | app_rand.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 177 | app_rand.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
177 | app_rand.o: ../include/openssl/engine.h ../include/openssl/err.h | 178 | app_rand.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
178 | app_rand.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
179 | app_rand.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
180 | app_rand.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
181 | app_rand.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
182 | app_rand.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
183 | app_rand.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 179 | app_rand.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
184 | app_rand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 180 | app_rand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
185 | app_rand.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 181 | app_rand.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
186 | app_rand.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 182 | app_rand.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
187 | app_rand.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 183 | app_rand.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
188 | app_rand.o: ../include/openssl/sha.h ../include/openssl/stack.h | 184 | app_rand.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h |
189 | app_rand.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 185 | app_rand.o: app_rand.c apps.h |
190 | app_rand.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 186 | apps.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
191 | app_rand.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h app_rand.c | ||
192 | app_rand.o: apps.h | ||
193 | apps.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
194 | apps.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
195 | apps.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 187 | apps.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
196 | apps.o: ../include/openssl/cast.h ../include/openssl/conf.h | 188 | apps.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
197 | apps.o: ../include/openssl/crypto.h ../include/openssl/des.h | 189 | apps.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
198 | apps.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 190 | apps.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
199 | apps.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
200 | apps.o: ../include/openssl/engine.h ../include/openssl/err.h | 191 | apps.o: ../include/openssl/engine.h ../include/openssl/err.h |
201 | apps.o: ../include/openssl/evp.h ../include/openssl/idea.h | 192 | apps.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
202 | apps.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 193 | apps.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
203 | apps.o: ../include/openssl/md4.h ../include/openssl/md5.h | 194 | apps.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
204 | apps.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
205 | apps.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
206 | apps.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 195 | apps.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
207 | apps.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 196 | apps.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
208 | apps.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h | 197 | apps.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h |
209 | apps.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 198 | apps.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
210 | apps.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 199 | apps.o: ../include/openssl/sha.h ../include/openssl/stack.h |
211 | apps.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 200 | apps.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
212 | apps.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 201 | apps.o: ../include/openssl/ui.h ../include/openssl/x509.h |
213 | apps.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
214 | apps.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
215 | apps.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
216 | apps.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.c apps.h | 202 | apps.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.c apps.h |
217 | asn1pars.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 203 | asn1pars.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
218 | asn1pars.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 204 | asn1pars.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
219 | asn1pars.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 205 | asn1pars.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
220 | asn1pars.o: ../include/openssl/cast.h ../include/openssl/conf.h | 206 | asn1pars.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
221 | asn1pars.o: ../include/openssl/crypto.h ../include/openssl/des.h | 207 | asn1pars.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
222 | asn1pars.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 208 | asn1pars.o: ../include/openssl/err.h ../include/openssl/evp.h |
223 | asn1pars.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 209 | asn1pars.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
224 | asn1pars.o: ../include/openssl/engine.h ../include/openssl/err.h | 210 | asn1pars.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
225 | asn1pars.o: ../include/openssl/evp.h ../include/openssl/idea.h | 211 | asn1pars.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
226 | asn1pars.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 212 | asn1pars.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
227 | asn1pars.o: ../include/openssl/md4.h ../include/openssl/md5.h | 213 | asn1pars.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
228 | asn1pars.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 214 | asn1pars.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
229 | asn1pars.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 215 | asn1pars.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
230 | asn1pars.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 216 | asn1pars.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
231 | asn1pars.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 217 | asn1pars.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
232 | asn1pars.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
233 | asn1pars.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
234 | asn1pars.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
235 | asn1pars.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
236 | asn1pars.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
237 | asn1pars.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
238 | asn1pars.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
239 | asn1pars.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
240 | asn1pars.o: asn1pars.c | 218 | asn1pars.o: asn1pars.c |
241 | ca.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 219 | ca.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
242 | ca.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
243 | ca.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 220 | ca.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
244 | ca.o: ../include/openssl/cast.h ../include/openssl/conf.h | 221 | ca.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
245 | ca.o: ../include/openssl/crypto.h ../include/openssl/des.h | 222 | ca.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
246 | ca.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 223 | ca.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
247 | ca.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
248 | ca.o: ../include/openssl/engine.h ../include/openssl/err.h | 224 | ca.o: ../include/openssl/engine.h ../include/openssl/err.h |
249 | ca.o: ../include/openssl/evp.h ../include/openssl/idea.h | 225 | ca.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
250 | ca.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 226 | ca.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
251 | ca.o: ../include/openssl/md4.h ../include/openssl/md5.h | 227 | ca.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
252 | ca.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 228 | ca.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
253 | ca.o: ../include/openssl/objects.h ../include/openssl/ocsp.h | 229 | ca.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
254 | ca.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 230 | ca.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h |
255 | ca.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 231 | ca.o: ../include/openssl/sha.h ../include/openssl/stack.h |
256 | ca.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 232 | ca.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
257 | ca.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 233 | ca.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
258 | ca.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 234 | ca.o: ../include/openssl/x509v3.h apps.h ca.c |
259 | ca.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 235 | ciphers.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
260 | ca.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
261 | ca.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
262 | ca.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
263 | ca.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
264 | ca.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h ca.c | ||
265 | ciphers.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
266 | ciphers.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
267 | ciphers.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 236 | ciphers.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
268 | ciphers.o: ../include/openssl/cast.h ../include/openssl/comp.h | 237 | ciphers.o: ../include/openssl/comp.h ../include/openssl/conf.h |
269 | ciphers.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 238 | ciphers.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
270 | ciphers.o: ../include/openssl/des.h ../include/openssl/des_old.h | 239 | ciphers.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
271 | ciphers.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 240 | ciphers.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
272 | ciphers.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 241 | ciphers.o: ../include/openssl/engine.h ../include/openssl/err.h |
273 | ciphers.o: ../include/openssl/err.h ../include/openssl/evp.h | 242 | ciphers.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
274 | ciphers.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 243 | ciphers.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
275 | ciphers.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 244 | ciphers.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
276 | ciphers.o: ../include/openssl/md4.h ../include/openssl/md5.h | 245 | ciphers.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
277 | ciphers.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 246 | ciphers.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
278 | ciphers.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 247 | ciphers.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
279 | ciphers.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 248 | ciphers.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
280 | ciphers.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 249 | ciphers.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
281 | ciphers.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 250 | ciphers.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
282 | ciphers.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 251 | ciphers.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
283 | ciphers.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 252 | ciphers.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
284 | ciphers.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 253 | ciphers.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
285 | ciphers.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 254 | ciphers.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
286 | ciphers.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 255 | ciphers.o: ../include/openssl/x509v3.h apps.h ciphers.c |
287 | ciphers.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 256 | cms.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
288 | ciphers.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 257 | cms.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
289 | ciphers.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 258 | cms.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
290 | ciphers.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 259 | cms.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
291 | ciphers.o: ../include/openssl/x509_vfy.h apps.h ciphers.c | 260 | cms.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
292 | crl.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 261 | cms.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
293 | crl.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 262 | cms.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
294 | crl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 263 | cms.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
295 | crl.o: ../include/openssl/cast.h ../include/openssl/conf.h | 264 | cms.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
296 | crl.o: ../include/openssl/crypto.h ../include/openssl/des.h | 265 | cms.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h |
297 | crl.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 266 | cms.o: ../include/openssl/sha.h ../include/openssl/stack.h |
298 | crl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 267 | cms.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
299 | crl.o: ../include/openssl/engine.h ../include/openssl/err.h | 268 | cms.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
300 | crl.o: ../include/openssl/evp.h ../include/openssl/idea.h | 269 | cms.o: ../include/openssl/x509v3.h apps.h cms.c |
301 | crl.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 270 | crl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
302 | crl.o: ../include/openssl/md4.h ../include/openssl/md5.h | 271 | crl.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
303 | crl.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 272 | crl.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
304 | crl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 273 | crl.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
305 | crl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 274 | crl.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
306 | crl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 275 | crl.o: ../include/openssl/err.h ../include/openssl/evp.h |
307 | crl.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 276 | crl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
308 | crl.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 277 | crl.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
309 | crl.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 278 | crl.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
310 | crl.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 279 | crl.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
311 | crl.o: ../include/openssl/sha.h ../include/openssl/stack.h | 280 | crl.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
312 | crl.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 281 | crl.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
313 | crl.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 282 | crl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
314 | crl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | 283 | crl.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
315 | crl.o: ../include/openssl/x509v3.h apps.h crl.c | 284 | crl.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h crl.c |
316 | crl2p7.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 285 | crl2p7.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
317 | crl2p7.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 286 | crl2p7.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
318 | crl2p7.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 287 | crl2p7.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
319 | crl2p7.o: ../include/openssl/cast.h ../include/openssl/conf.h | 288 | crl2p7.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
320 | crl2p7.o: ../include/openssl/crypto.h ../include/openssl/des.h | 289 | crl2p7.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
321 | crl2p7.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 290 | crl2p7.o: ../include/openssl/err.h ../include/openssl/evp.h |
322 | crl2p7.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 291 | crl2p7.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
323 | crl2p7.o: ../include/openssl/engine.h ../include/openssl/err.h | 292 | crl2p7.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
324 | crl2p7.o: ../include/openssl/evp.h ../include/openssl/idea.h | 293 | crl2p7.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
325 | crl2p7.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 294 | crl2p7.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
326 | crl2p7.o: ../include/openssl/md4.h ../include/openssl/md5.h | 295 | crl2p7.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
327 | crl2p7.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 296 | crl2p7.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
328 | crl2p7.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 297 | crl2p7.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
329 | crl2p7.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 298 | crl2p7.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
330 | crl2p7.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 299 | crl2p7.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
331 | crl2p7.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
332 | crl2p7.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
333 | crl2p7.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
334 | crl2p7.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
335 | crl2p7.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
336 | crl2p7.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
337 | crl2p7.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
338 | crl2p7.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
339 | crl2p7.o: crl2p7.c | 300 | crl2p7.o: crl2p7.c |
340 | dgst.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 301 | dgst.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
341 | dgst.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 302 | dgst.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
342 | dgst.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 303 | dgst.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
343 | dgst.o: ../include/openssl/cast.h ../include/openssl/conf.h | 304 | dgst.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
344 | dgst.o: ../include/openssl/crypto.h ../include/openssl/des.h | 305 | dgst.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
345 | dgst.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 306 | dgst.o: ../include/openssl/err.h ../include/openssl/evp.h |
346 | dgst.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 307 | dgst.o: ../include/openssl/hmac.h ../include/openssl/lhash.h |
347 | dgst.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
348 | dgst.o: ../include/openssl/evp.h ../include/openssl/hmac.h | ||
349 | dgst.o: ../include/openssl/idea.h ../include/openssl/lhash.h | ||
350 | dgst.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
351 | dgst.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
352 | dgst.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 308 | dgst.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
353 | dgst.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 309 | dgst.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
354 | dgst.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 310 | dgst.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
355 | dgst.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 311 | dgst.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
356 | dgst.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 312 | dgst.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h |
357 | dgst.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 313 | dgst.o: ../include/openssl/sha.h ../include/openssl/stack.h |
358 | dgst.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 314 | dgst.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
359 | dgst.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 315 | dgst.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
360 | dgst.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 316 | dgst.o: ../include/openssl/x509v3.h apps.h dgst.c |
361 | dgst.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 317 | dh.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
362 | dgst.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
363 | dgst.o: ../include/openssl/x509_vfy.h apps.h dgst.c | ||
364 | dh.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
365 | dh.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
366 | dh.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 318 | dh.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
367 | dh.o: ../include/openssl/cast.h ../include/openssl/conf.h | 319 | dh.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
368 | dh.o: ../include/openssl/crypto.h ../include/openssl/des.h | 320 | dh.o: ../include/openssl/dh.h ../include/openssl/e_os2.h |
369 | dh.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 321 | dh.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
370 | dh.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 322 | dh.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
371 | dh.o: ../include/openssl/engine.h ../include/openssl/err.h | 323 | dh.o: ../include/openssl/err.h ../include/openssl/evp.h |
372 | dh.o: ../include/openssl/evp.h ../include/openssl/idea.h | 324 | dh.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
373 | dh.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 325 | dh.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
374 | dh.o: ../include/openssl/md4.h ../include/openssl/md5.h | 326 | dh.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
375 | dh.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 327 | dh.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
376 | dh.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 328 | dh.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
377 | dh.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 329 | dh.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
378 | dh.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 330 | dh.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
379 | dh.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 331 | dh.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
380 | dh.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 332 | dh.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h dh.c |
381 | dh.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 333 | dsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
382 | dh.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
383 | dh.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
384 | dh.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
385 | dh.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
386 | dh.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h dh.c | ||
387 | dsa.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
388 | dsa.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
389 | dsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 334 | dsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
390 | dsa.o: ../include/openssl/cast.h ../include/openssl/conf.h | 335 | dsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
391 | dsa.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
392 | dsa.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
393 | dsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 336 | dsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
394 | dsa.o: ../include/openssl/engine.h ../include/openssl/err.h | 337 | dsa.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
395 | dsa.o: ../include/openssl/evp.h ../include/openssl/idea.h | 338 | dsa.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
396 | dsa.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 339 | dsa.o: ../include/openssl/err.h ../include/openssl/evp.h |
397 | dsa.o: ../include/openssl/md4.h ../include/openssl/md5.h | 340 | dsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
398 | dsa.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 341 | dsa.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
399 | dsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 342 | dsa.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
400 | dsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 343 | dsa.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
401 | dsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 344 | dsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
402 | dsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 345 | dsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
403 | dsa.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 346 | dsa.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
404 | dsa.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 347 | dsa.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
405 | dsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 348 | dsa.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h dsa.c |
406 | dsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | 349 | dsaparam.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
407 | dsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
408 | dsa.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
409 | dsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h dsa.c | ||
410 | dsaparam.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
411 | dsaparam.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
412 | dsaparam.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 350 | dsaparam.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
413 | dsaparam.o: ../include/openssl/cast.h ../include/openssl/conf.h | 351 | dsaparam.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
414 | dsaparam.o: ../include/openssl/crypto.h ../include/openssl/des.h | 352 | dsaparam.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
415 | dsaparam.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 353 | dsaparam.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
416 | dsaparam.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 354 | dsaparam.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
417 | dsaparam.o: ../include/openssl/engine.h ../include/openssl/err.h | 355 | dsaparam.o: ../include/openssl/engine.h ../include/openssl/err.h |
418 | dsaparam.o: ../include/openssl/evp.h ../include/openssl/idea.h | 356 | dsaparam.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
419 | dsaparam.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 357 | dsaparam.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
420 | dsaparam.o: ../include/openssl/md4.h ../include/openssl/md5.h | 358 | dsaparam.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
421 | dsaparam.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
422 | dsaparam.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
423 | dsaparam.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 359 | dsaparam.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
424 | dsaparam.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 360 | dsaparam.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
425 | dsaparam.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 361 | dsaparam.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
426 | dsaparam.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
427 | dsaparam.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
428 | dsaparam.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 362 | dsaparam.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
429 | dsaparam.o: ../include/openssl/sha.h ../include/openssl/stack.h | 363 | dsaparam.o: ../include/openssl/sha.h ../include/openssl/stack.h |
430 | dsaparam.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 364 | dsaparam.o: ../include/openssl/store.h ../include/openssl/symhacks.h |
431 | dsaparam.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 365 | dsaparam.o: ../include/openssl/txt_db.h ../include/openssl/ui.h |
432 | dsaparam.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | 366 | dsaparam.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
433 | dsaparam.o: dsaparam.c | 367 | dsaparam.o: ../include/openssl/x509v3.h apps.h dsaparam.c |
434 | enc.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 368 | ec.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
435 | enc.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 369 | ec.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
436 | enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 370 | ec.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
437 | enc.o: ../include/openssl/cast.h ../include/openssl/conf.h | 371 | ec.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
438 | enc.o: ../include/openssl/crypto.h ../include/openssl/des.h | 372 | ec.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
439 | enc.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 373 | ec.o: ../include/openssl/err.h ../include/openssl/evp.h |
440 | enc.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 374 | ec.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
441 | enc.o: ../include/openssl/engine.h ../include/openssl/err.h | 375 | ec.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
442 | enc.o: ../include/openssl/evp.h ../include/openssl/idea.h | 376 | ec.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
443 | enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 377 | ec.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
444 | enc.o: ../include/openssl/md4.h ../include/openssl/md5.h | 378 | ec.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
445 | enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 379 | ec.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
446 | enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 380 | ec.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
447 | enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 381 | ec.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
448 | enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 382 | ec.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h ec.c |
449 | enc.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 383 | ecparam.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
450 | enc.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 384 | ecparam.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
451 | enc.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 385 | ecparam.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
452 | enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 386 | ecparam.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
387 | ecparam.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
388 | ecparam.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
389 | ecparam.o: ../include/openssl/evp.h ../include/openssl/lhash.h | ||
390 | ecparam.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
391 | ecparam.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h | ||
392 | ecparam.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
393 | ecparam.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
394 | ecparam.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h | ||
395 | ecparam.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
396 | ecparam.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
397 | ecparam.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
398 | ecparam.o: ../include/openssl/x509v3.h apps.h ecparam.c | ||
399 | enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
400 | enc.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
401 | enc.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
402 | enc.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
403 | enc.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | ||
404 | enc.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
405 | enc.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
406 | enc.o: ../include/openssl/objects.h ../include/openssl/ocsp.h | ||
407 | enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
408 | enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
409 | enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
410 | enc.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
453 | enc.o: ../include/openssl/sha.h ../include/openssl/stack.h | 411 | enc.o: ../include/openssl/sha.h ../include/openssl/stack.h |
454 | enc.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 412 | enc.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
455 | enc.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 413 | enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
456 | enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h enc.c | 414 | enc.o: ../include/openssl/x509v3.h apps.h enc.c |
457 | engine.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 415 | engine.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
458 | engine.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
459 | engine.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 416 | engine.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
460 | engine.o: ../include/openssl/cast.h ../include/openssl/comp.h | 417 | engine.o: ../include/openssl/comp.h ../include/openssl/conf.h |
461 | engine.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 418 | engine.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
462 | engine.o: ../include/openssl/des.h ../include/openssl/des_old.h | 419 | engine.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
463 | engine.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 420 | engine.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
464 | engine.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 421 | engine.o: ../include/openssl/engine.h ../include/openssl/err.h |
465 | engine.o: ../include/openssl/err.h ../include/openssl/evp.h | 422 | engine.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
466 | engine.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 423 | engine.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
467 | engine.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 424 | engine.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
468 | engine.o: ../include/openssl/md4.h ../include/openssl/md5.h | 425 | engine.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
469 | engine.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 426 | engine.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
470 | engine.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 427 | engine.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
471 | engine.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 428 | engine.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
472 | engine.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 429 | engine.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
473 | engine.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 430 | engine.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
474 | engine.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 431 | engine.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
475 | engine.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 432 | engine.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
476 | engine.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 433 | engine.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
477 | engine.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 434 | engine.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
478 | engine.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 435 | engine.o: ../include/openssl/x509v3.h apps.h engine.c |
479 | engine.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 436 | errstr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
480 | engine.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
481 | engine.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
482 | engine.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
483 | engine.o: ../include/openssl/x509_vfy.h apps.h engine.c | ||
484 | errstr.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
485 | errstr.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
486 | errstr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 437 | errstr.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
487 | errstr.o: ../include/openssl/cast.h ../include/openssl/comp.h | 438 | errstr.o: ../include/openssl/comp.h ../include/openssl/conf.h |
488 | errstr.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 439 | errstr.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
489 | errstr.o: ../include/openssl/des.h ../include/openssl/des_old.h | 440 | errstr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
490 | errstr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 441 | errstr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
491 | errstr.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 442 | errstr.o: ../include/openssl/engine.h ../include/openssl/err.h |
492 | errstr.o: ../include/openssl/err.h ../include/openssl/evp.h | 443 | errstr.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
493 | errstr.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 444 | errstr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
494 | errstr.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 445 | errstr.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
495 | errstr.o: ../include/openssl/md4.h ../include/openssl/md5.h | 446 | errstr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
496 | errstr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 447 | errstr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
497 | errstr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 448 | errstr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
498 | errstr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 449 | errstr.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
499 | errstr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 450 | errstr.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
500 | errstr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 451 | errstr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
501 | errstr.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 452 | errstr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
502 | errstr.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 453 | errstr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
503 | errstr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 454 | errstr.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
504 | errstr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 455 | errstr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
505 | errstr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 456 | errstr.o: ../include/openssl/x509v3.h apps.h errstr.c |
506 | errstr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 457 | gendh.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
507 | errstr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
508 | errstr.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
509 | errstr.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
510 | errstr.o: ../include/openssl/x509_vfy.h apps.h errstr.c | ||
511 | gendh.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
512 | gendh.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
513 | gendh.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 458 | gendh.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
514 | gendh.o: ../include/openssl/cast.h ../include/openssl/conf.h | 459 | gendh.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
515 | gendh.o: ../include/openssl/crypto.h ../include/openssl/des.h | 460 | gendh.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
516 | gendh.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 461 | gendh.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
517 | gendh.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 462 | gendh.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
518 | gendh.o: ../include/openssl/engine.h ../include/openssl/err.h | 463 | gendh.o: ../include/openssl/engine.h ../include/openssl/err.h |
519 | gendh.o: ../include/openssl/evp.h ../include/openssl/idea.h | 464 | gendh.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
520 | gendh.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 465 | gendh.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
521 | gendh.o: ../include/openssl/md4.h ../include/openssl/md5.h | 466 | gendh.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
522 | gendh.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
523 | gendh.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
524 | gendh.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 467 | gendh.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
525 | gendh.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 468 | gendh.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
526 | gendh.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 469 | gendh.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
527 | gendh.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
528 | gendh.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
529 | gendh.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 470 | gendh.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
530 | gendh.o: ../include/openssl/sha.h ../include/openssl/stack.h | 471 | gendh.o: ../include/openssl/sha.h ../include/openssl/stack.h |
531 | gendh.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 472 | gendh.o: ../include/openssl/store.h ../include/openssl/symhacks.h |
532 | gendh.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 473 | gendh.o: ../include/openssl/txt_db.h ../include/openssl/ui.h |
533 | gendh.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h gendh.c | 474 | gendh.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
534 | gendsa.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 475 | gendh.o: ../include/openssl/x509v3.h apps.h gendh.c |
535 | gendsa.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 476 | gendsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
536 | gendsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 477 | gendsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
537 | gendsa.o: ../include/openssl/cast.h ../include/openssl/conf.h | 478 | gendsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
538 | gendsa.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
539 | gendsa.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
540 | gendsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 479 | gendsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
541 | gendsa.o: ../include/openssl/engine.h ../include/openssl/err.h | 480 | gendsa.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
542 | gendsa.o: ../include/openssl/evp.h ../include/openssl/idea.h | 481 | gendsa.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
543 | gendsa.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 482 | gendsa.o: ../include/openssl/err.h ../include/openssl/evp.h |
544 | gendsa.o: ../include/openssl/md4.h ../include/openssl/md5.h | 483 | gendsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
545 | gendsa.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 484 | gendsa.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
546 | gendsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 485 | gendsa.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
547 | gendsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 486 | gendsa.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
548 | gendsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 487 | gendsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
549 | gendsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 488 | gendsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
550 | gendsa.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 489 | gendsa.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
551 | gendsa.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 490 | gendsa.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
552 | gendsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 491 | gendsa.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
553 | gendsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
554 | gendsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
555 | gendsa.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
556 | gendsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
557 | gendsa.o: gendsa.c | 492 | gendsa.o: gendsa.c |
558 | genrsa.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 493 | genrsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
559 | genrsa.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
560 | genrsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 494 | genrsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
561 | genrsa.o: ../include/openssl/cast.h ../include/openssl/conf.h | 495 | genrsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
562 | genrsa.o: ../include/openssl/crypto.h ../include/openssl/des.h | 496 | genrsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
563 | genrsa.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 497 | genrsa.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
564 | genrsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 498 | genrsa.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
565 | genrsa.o: ../include/openssl/engine.h ../include/openssl/err.h | 499 | genrsa.o: ../include/openssl/engine.h ../include/openssl/err.h |
566 | genrsa.o: ../include/openssl/evp.h ../include/openssl/idea.h | 500 | genrsa.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
567 | genrsa.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 501 | genrsa.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
568 | genrsa.o: ../include/openssl/md4.h ../include/openssl/md5.h | 502 | genrsa.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
569 | genrsa.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
570 | genrsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
571 | genrsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 503 | genrsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
572 | genrsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 504 | genrsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
573 | genrsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 505 | genrsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
574 | genrsa.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
575 | genrsa.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
576 | genrsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 506 | genrsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
577 | genrsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | 507 | genrsa.o: ../include/openssl/sha.h ../include/openssl/stack.h |
578 | genrsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 508 | genrsa.o: ../include/openssl/store.h ../include/openssl/symhacks.h |
579 | genrsa.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 509 | genrsa.o: ../include/openssl/txt_db.h ../include/openssl/ui.h |
580 | genrsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | 510 | genrsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
581 | genrsa.o: genrsa.c | 511 | genrsa.o: ../include/openssl/x509v3.h apps.h genrsa.c |
582 | nseq.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 512 | nseq.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
583 | nseq.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 513 | nseq.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
584 | nseq.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 514 | nseq.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
585 | nseq.o: ../include/openssl/cast.h ../include/openssl/conf.h | 515 | nseq.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
586 | nseq.o: ../include/openssl/crypto.h ../include/openssl/des.h | 516 | nseq.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
587 | nseq.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 517 | nseq.o: ../include/openssl/err.h ../include/openssl/evp.h |
588 | nseq.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 518 | nseq.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
589 | nseq.o: ../include/openssl/engine.h ../include/openssl/err.h | 519 | nseq.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
590 | nseq.o: ../include/openssl/evp.h ../include/openssl/idea.h | 520 | nseq.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
591 | nseq.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 521 | nseq.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
592 | nseq.o: ../include/openssl/md4.h ../include/openssl/md5.h | 522 | nseq.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
593 | nseq.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 523 | nseq.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
594 | nseq.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 524 | nseq.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
595 | nseq.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 525 | nseq.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
596 | nseq.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 526 | nseq.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h nseq.c |
597 | nseq.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 527 | ocsp.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
598 | nseq.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
599 | nseq.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
600 | nseq.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
601 | nseq.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
602 | nseq.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
603 | nseq.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
604 | nseq.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h nseq.c | ||
605 | ocsp.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
606 | ocsp.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
607 | ocsp.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 528 | ocsp.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
608 | ocsp.o: ../include/openssl/cast.h ../include/openssl/comp.h | 529 | ocsp.o: ../include/openssl/comp.h ../include/openssl/conf.h |
609 | ocsp.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 530 | ocsp.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
610 | ocsp.o: ../include/openssl/des.h ../include/openssl/des_old.h | 531 | ocsp.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
611 | ocsp.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 532 | ocsp.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
612 | ocsp.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 533 | ocsp.o: ../include/openssl/engine.h ../include/openssl/err.h |
613 | ocsp.o: ../include/openssl/err.h ../include/openssl/evp.h | 534 | ocsp.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
614 | ocsp.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 535 | ocsp.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
615 | ocsp.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
616 | ocsp.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
617 | ocsp.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
618 | ocsp.o: ../include/openssl/objects.h ../include/openssl/ocsp.h | 536 | ocsp.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
619 | ocsp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 537 | ocsp.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
620 | ocsp.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 538 | ocsp.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
621 | ocsp.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 539 | ocsp.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
622 | ocsp.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 540 | ocsp.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
623 | ocsp.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
624 | ocsp.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
625 | ocsp.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 541 | ocsp.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
626 | ocsp.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 542 | ocsp.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
627 | ocsp.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 543 | ocsp.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
628 | ocsp.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 544 | ocsp.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
629 | ocsp.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h | 545 | ocsp.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
630 | ocsp.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
631 | ocsp.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | 546 | ocsp.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
632 | ocsp.o: ../include/openssl/x509v3.h apps.h ocsp.c | 547 | ocsp.o: ../include/openssl/x509v3.h apps.h ocsp.c |
633 | openssl.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 548 | openssl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
634 | openssl.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
635 | openssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 549 | openssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
636 | openssl.o: ../include/openssl/cast.h ../include/openssl/comp.h | 550 | openssl.o: ../include/openssl/comp.h ../include/openssl/conf.h |
637 | openssl.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 551 | openssl.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
638 | openssl.o: ../include/openssl/des.h ../include/openssl/des_old.h | 552 | openssl.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
639 | openssl.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 553 | openssl.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
640 | openssl.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 554 | openssl.o: ../include/openssl/engine.h ../include/openssl/err.h |
641 | openssl.o: ../include/openssl/err.h ../include/openssl/evp.h | 555 | openssl.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
642 | openssl.o: ../include/openssl/fips.h ../include/openssl/idea.h | 556 | openssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
643 | openssl.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 557 | openssl.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
644 | openssl.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
645 | openssl.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
646 | openssl.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
647 | openssl.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 558 | openssl.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
648 | openssl.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 559 | openssl.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
649 | openssl.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 560 | openssl.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
650 | openssl.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 561 | openssl.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
651 | openssl.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
652 | openssl.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
653 | openssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 562 | openssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
654 | openssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 563 | openssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
655 | openssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 564 | openssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
656 | openssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 565 | openssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
657 | openssl.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h | 566 | openssl.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
658 | openssl.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 567 | openssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
659 | openssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | 568 | openssl.o: ../include/openssl/x509v3.h apps.h openssl.c progs.h s_apps.h |
660 | openssl.o: openssl.c progs.h s_apps.h | 569 | passwd.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
661 | passwd.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 570 | passwd.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
662 | passwd.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
663 | passwd.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
664 | passwd.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
665 | passwd.o: ../include/openssl/crypto.h ../include/openssl/des.h | 571 | passwd.o: ../include/openssl/crypto.h ../include/openssl/des.h |
666 | passwd.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 572 | passwd.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h |
667 | passwd.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 573 | passwd.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
668 | passwd.o: ../include/openssl/engine.h ../include/openssl/err.h | 574 | passwd.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
669 | passwd.o: ../include/openssl/evp.h ../include/openssl/idea.h | 575 | passwd.o: ../include/openssl/err.h ../include/openssl/evp.h |
670 | passwd.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 576 | passwd.o: ../include/openssl/lhash.h ../include/openssl/md5.h |
671 | passwd.o: ../include/openssl/md4.h ../include/openssl/md5.h | 577 | passwd.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
672 | passwd.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 578 | passwd.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
673 | passwd.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
674 | passwd.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 579 | passwd.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
675 | passwd.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 580 | passwd.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
676 | passwd.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 581 | passwd.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
677 | passwd.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 582 | passwd.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
678 | passwd.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 583 | passwd.o: ../include/openssl/txt_db.h ../include/openssl/ui.h |
679 | passwd.o: ../include/openssl/sha.h ../include/openssl/stack.h | 584 | passwd.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h |
680 | passwd.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 585 | passwd.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
681 | passwd.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
682 | passwd.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
683 | passwd.o: passwd.c | 586 | passwd.o: passwd.c |
684 | pkcs12.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 587 | pkcs12.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
685 | pkcs12.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 588 | pkcs12.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
686 | pkcs12.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 589 | pkcs12.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
687 | pkcs12.o: ../include/openssl/cast.h ../include/openssl/conf.h | 590 | pkcs12.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
688 | pkcs12.o: ../include/openssl/crypto.h ../include/openssl/des.h | 591 | pkcs12.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
689 | pkcs12.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 592 | pkcs12.o: ../include/openssl/err.h ../include/openssl/evp.h |
690 | pkcs12.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 593 | pkcs12.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
691 | pkcs12.o: ../include/openssl/engine.h ../include/openssl/err.h | 594 | pkcs12.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
692 | pkcs12.o: ../include/openssl/evp.h ../include/openssl/idea.h | 595 | pkcs12.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
693 | pkcs12.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 596 | pkcs12.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
694 | pkcs12.o: ../include/openssl/md4.h ../include/openssl/md5.h | 597 | pkcs12.o: ../include/openssl/pem2.h ../include/openssl/pkcs12.h |
695 | pkcs12.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 598 | pkcs12.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h |
696 | pkcs12.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 599 | pkcs12.o: ../include/openssl/sha.h ../include/openssl/stack.h |
697 | pkcs12.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 600 | pkcs12.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
698 | pkcs12.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 601 | pkcs12.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
699 | pkcs12.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h | 602 | pkcs12.o: ../include/openssl/x509v3.h apps.h pkcs12.c |
700 | pkcs12.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 603 | pkcs7.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
701 | pkcs12.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 604 | pkcs7.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
702 | pkcs12.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 605 | pkcs7.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
703 | pkcs12.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 606 | pkcs7.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
704 | pkcs12.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 607 | pkcs7.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
705 | pkcs12.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 608 | pkcs7.o: ../include/openssl/err.h ../include/openssl/evp.h |
706 | pkcs12.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 609 | pkcs7.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
707 | pkcs12.o: ../include/openssl/x509_vfy.h apps.h pkcs12.c | 610 | pkcs7.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
708 | pkcs7.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 611 | pkcs7.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
709 | pkcs7.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 612 | pkcs7.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
710 | pkcs7.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 613 | pkcs7.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
711 | pkcs7.o: ../include/openssl/cast.h ../include/openssl/conf.h | 614 | pkcs7.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
712 | pkcs7.o: ../include/openssl/crypto.h ../include/openssl/des.h | 615 | pkcs7.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
713 | pkcs7.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 616 | pkcs7.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
714 | pkcs7.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 617 | pkcs7.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
715 | pkcs7.o: ../include/openssl/engine.h ../include/openssl/err.h | 618 | pkcs7.o: pkcs7.c |
716 | pkcs7.o: ../include/openssl/evp.h ../include/openssl/idea.h | 619 | pkcs8.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
717 | pkcs7.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 620 | pkcs8.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
718 | pkcs7.o: ../include/openssl/md4.h ../include/openssl/md5.h | 621 | pkcs8.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
719 | pkcs7.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 622 | pkcs8.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
720 | pkcs7.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 623 | pkcs8.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
721 | pkcs7.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 624 | pkcs8.o: ../include/openssl/err.h ../include/openssl/evp.h |
722 | pkcs7.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 625 | pkcs8.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
723 | pkcs7.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 626 | pkcs8.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
724 | pkcs7.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 627 | pkcs8.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
725 | pkcs7.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 628 | pkcs8.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
726 | pkcs7.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 629 | pkcs8.o: ../include/openssl/pem2.h ../include/openssl/pkcs12.h |
727 | pkcs7.o: ../include/openssl/sha.h ../include/openssl/stack.h | 630 | pkcs8.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h |
728 | pkcs7.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 631 | pkcs8.o: ../include/openssl/sha.h ../include/openssl/stack.h |
729 | pkcs7.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 632 | pkcs8.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
730 | pkcs7.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h pkcs7.c | 633 | pkcs8.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
731 | pkcs8.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 634 | pkcs8.o: ../include/openssl/x509v3.h apps.h pkcs8.c |
732 | pkcs8.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 635 | prime.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
733 | pkcs8.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
734 | pkcs8.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
735 | pkcs8.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
736 | pkcs8.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
737 | pkcs8.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
738 | pkcs8.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
739 | pkcs8.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
740 | pkcs8.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
741 | pkcs8.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
742 | pkcs8.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
743 | pkcs8.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
744 | pkcs8.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
745 | pkcs8.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
746 | pkcs8.o: ../include/openssl/pkcs12.h ../include/openssl/pkcs7.h | ||
747 | pkcs8.o: ../include/openssl/rand.h ../include/openssl/rc2.h | ||
748 | pkcs8.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
749 | pkcs8.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
750 | pkcs8.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
751 | pkcs8.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
752 | pkcs8.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
753 | pkcs8.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
754 | pkcs8.o: ../include/openssl/x509_vfy.h apps.h pkcs8.c | ||
755 | prime.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
756 | prime.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
757 | prime.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 636 | prime.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
758 | prime.o: ../include/openssl/cast.h ../include/openssl/conf.h | 637 | prime.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
759 | prime.o: ../include/openssl/crypto.h ../include/openssl/des.h | 638 | prime.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
760 | prime.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 639 | prime.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
761 | prime.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 640 | prime.o: ../include/openssl/engine.h ../include/openssl/evp.h |
762 | prime.o: ../include/openssl/engine.h ../include/openssl/err.h | 641 | prime.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
763 | prime.o: ../include/openssl/evp.h ../include/openssl/idea.h | 642 | prime.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
764 | prime.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 643 | prime.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
765 | prime.o: ../include/openssl/md4.h ../include/openssl/md5.h | 644 | prime.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
766 | prime.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 645 | prime.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
767 | prime.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 646 | prime.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
768 | prime.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 647 | prime.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
769 | prime.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 648 | prime.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
770 | prime.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 649 | prime.o: prime.c |
771 | prime.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 650 | rand.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
772 | prime.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 651 | rand.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
773 | prime.o: ../include/openssl/sha.h ../include/openssl/stack.h | 652 | rand.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
774 | prime.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 653 | rand.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
775 | prime.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 654 | rand.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
776 | prime.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h prime.c | 655 | rand.o: ../include/openssl/err.h ../include/openssl/evp.h |
777 | rand.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 656 | rand.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
778 | rand.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 657 | rand.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
779 | rand.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 658 | rand.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
780 | rand.o: ../include/openssl/cast.h ../include/openssl/conf.h | 659 | rand.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
781 | rand.o: ../include/openssl/crypto.h ../include/openssl/des.h | 660 | rand.o: ../include/openssl/rand.h ../include/openssl/safestack.h |
782 | rand.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
783 | rand.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
784 | rand.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
785 | rand.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
786 | rand.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
787 | rand.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
788 | rand.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
789 | rand.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
790 | rand.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
791 | rand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
792 | rand.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
793 | rand.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
794 | rand.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
795 | rand.o: ../include/openssl/sha.h ../include/openssl/stack.h | 661 | rand.o: ../include/openssl/sha.h ../include/openssl/stack.h |
796 | rand.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 662 | rand.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
797 | rand.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 663 | rand.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
798 | rand.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h rand.c | 664 | rand.o: ../include/openssl/x509v3.h apps.h rand.c |
799 | req.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h | 665 | req.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
800 | req.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 666 | req.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
801 | req.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
802 | req.o: ../include/openssl/buffer.h ../include/openssl/cast.h | ||
803 | req.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 667 | req.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
804 | req.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
805 | req.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 668 | req.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
806 | req.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 669 | req.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
807 | req.o: ../include/openssl/err.h ../include/openssl/evp.h | 670 | req.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
808 | req.o: ../include/openssl/idea.h ../include/openssl/lhash.h | 671 | req.o: ../include/openssl/engine.h ../include/openssl/err.h |
809 | req.o: ../include/openssl/md2.h ../include/openssl/md4.h | 672 | req.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
810 | req.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
811 | req.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 673 | req.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
812 | req.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 674 | req.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
813 | req.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 675 | req.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
814 | req.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 676 | req.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
815 | req.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 677 | req.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
816 | req.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 678 | req.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
817 | req.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 679 | req.o: ../include/openssl/sha.h ../include/openssl/stack.h |
818 | req.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 680 | req.o: ../include/openssl/store.h ../include/openssl/symhacks.h |
819 | req.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
820 | req.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 681 | req.o: ../include/openssl/txt_db.h ../include/openssl/ui.h |
821 | req.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 682 | req.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
822 | req.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h req.c | 683 | req.o: ../include/openssl/x509v3.h apps.h req.c |
823 | rsa.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 684 | rsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
824 | rsa.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
825 | rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 685 | rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
826 | rsa.o: ../include/openssl/cast.h ../include/openssl/conf.h | 686 | rsa.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
827 | rsa.o: ../include/openssl/crypto.h ../include/openssl/des.h | 687 | rsa.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
828 | rsa.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 688 | rsa.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
829 | rsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
830 | rsa.o: ../include/openssl/engine.h ../include/openssl/err.h | 689 | rsa.o: ../include/openssl/engine.h ../include/openssl/err.h |
831 | rsa.o: ../include/openssl/evp.h ../include/openssl/idea.h | 690 | rsa.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
832 | rsa.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 691 | rsa.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
833 | rsa.o: ../include/openssl/md4.h ../include/openssl/md5.h | 692 | rsa.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
834 | rsa.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
835 | rsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
836 | rsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 693 | rsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
837 | rsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 694 | rsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
838 | rsa.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 695 | rsa.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h |
839 | rsa.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 696 | rsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
840 | rsa.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 697 | rsa.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
841 | rsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 698 | rsa.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
842 | rsa.o: ../include/openssl/sha.h ../include/openssl/stack.h | 699 | rsa.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h rsa.c |
843 | rsa.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 700 | rsautl.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
844 | rsa.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 701 | rsautl.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
845 | rsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h rsa.c | 702 | rsautl.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
846 | rsautl.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 703 | rsautl.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
847 | rsautl.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 704 | rsautl.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
848 | rsautl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 705 | rsautl.o: ../include/openssl/err.h ../include/openssl/evp.h |
849 | rsautl.o: ../include/openssl/cast.h ../include/openssl/conf.h | 706 | rsautl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
850 | rsautl.o: ../include/openssl/crypto.h ../include/openssl/des.h | 707 | rsautl.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
851 | rsautl.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 708 | rsautl.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
852 | rsautl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 709 | rsautl.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
853 | rsautl.o: ../include/openssl/engine.h ../include/openssl/err.h | 710 | rsautl.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
854 | rsautl.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
855 | rsautl.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
856 | rsautl.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
857 | rsautl.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
858 | rsautl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
859 | rsautl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
860 | rsautl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
861 | rsautl.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
862 | rsautl.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
863 | rsautl.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
864 | rsautl.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 711 | rsautl.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
865 | rsautl.o: ../include/openssl/sha.h ../include/openssl/stack.h | 712 | rsautl.o: ../include/openssl/sha.h ../include/openssl/stack.h |
866 | rsautl.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 713 | rsautl.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
867 | rsautl.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 714 | rsautl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
868 | rsautl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | 715 | rsautl.o: ../include/openssl/x509v3.h apps.h rsautl.c |
869 | rsautl.o: rsautl.c | 716 | s_cb.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
870 | s_cb.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
871 | s_cb.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
872 | s_cb.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 717 | s_cb.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
873 | s_cb.o: ../include/openssl/cast.h ../include/openssl/comp.h | 718 | s_cb.o: ../include/openssl/comp.h ../include/openssl/conf.h |
874 | s_cb.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 719 | s_cb.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
875 | s_cb.o: ../include/openssl/des.h ../include/openssl/des_old.h | 720 | s_cb.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
876 | s_cb.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 721 | s_cb.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
877 | s_cb.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 722 | s_cb.o: ../include/openssl/engine.h ../include/openssl/err.h |
878 | s_cb.o: ../include/openssl/err.h ../include/openssl/evp.h | 723 | s_cb.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
879 | s_cb.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 724 | s_cb.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
880 | s_cb.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 725 | s_cb.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
881 | s_cb.o: ../include/openssl/md4.h ../include/openssl/md5.h | 726 | s_cb.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
882 | s_cb.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 727 | s_cb.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
883 | s_cb.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 728 | s_cb.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
884 | s_cb.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 729 | s_cb.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
885 | s_cb.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 730 | s_cb.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
886 | s_cb.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 731 | s_cb.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
887 | s_cb.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 732 | s_cb.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
888 | s_cb.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 733 | s_cb.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
889 | s_cb.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 734 | s_cb.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
890 | s_cb.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 735 | s_cb.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
891 | s_cb.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 736 | s_cb.o: ../include/openssl/x509v3.h apps.h s_apps.h s_cb.c |
892 | s_cb.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 737 | s_client.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
893 | s_cb.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
894 | s_cb.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
895 | s_cb.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
896 | s_cb.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_cb.c | ||
897 | s_client.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
898 | s_client.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
899 | s_client.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 738 | s_client.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
900 | s_client.o: ../include/openssl/cast.h ../include/openssl/comp.h | 739 | s_client.o: ../include/openssl/comp.h ../include/openssl/conf.h |
901 | s_client.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 740 | s_client.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
902 | s_client.o: ../include/openssl/des.h ../include/openssl/des_old.h | 741 | s_client.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
903 | s_client.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 742 | s_client.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
904 | s_client.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 743 | s_client.o: ../include/openssl/engine.h ../include/openssl/err.h |
905 | s_client.o: ../include/openssl/err.h ../include/openssl/evp.h | 744 | s_client.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
906 | s_client.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 745 | s_client.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
907 | s_client.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 746 | s_client.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
908 | s_client.o: ../include/openssl/md4.h ../include/openssl/md5.h | 747 | s_client.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
909 | s_client.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 748 | s_client.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
910 | s_client.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 749 | s_client.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
911 | s_client.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 750 | s_client.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
912 | s_client.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 751 | s_client.o: ../include/openssl/rand.h ../include/openssl/safestack.h |
913 | s_client.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
914 | s_client.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
915 | s_client.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
916 | s_client.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
917 | s_client.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 752 | s_client.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
918 | s_client.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 753 | s_client.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
919 | s_client.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 754 | s_client.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
920 | s_client.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 755 | s_client.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
921 | s_client.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 756 | s_client.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
922 | s_client.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 757 | s_client.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
923 | s_client.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_client.c | 758 | s_client.o: s_apps.h s_client.c timeouts.h |
924 | s_server.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 759 | s_server.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
925 | s_server.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
926 | s_server.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 760 | s_server.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
927 | s_server.o: ../include/openssl/cast.h ../include/openssl/comp.h | 761 | s_server.o: ../include/openssl/comp.h ../include/openssl/conf.h |
928 | s_server.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 762 | s_server.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
929 | s_server.o: ../include/openssl/des.h ../include/openssl/des_old.h | 763 | s_server.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
930 | s_server.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 764 | s_server.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
931 | s_server.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 765 | s_server.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
932 | s_server.o: ../include/openssl/err.h ../include/openssl/evp.h | 766 | s_server.o: ../include/openssl/engine.h ../include/openssl/err.h |
933 | s_server.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 767 | s_server.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
934 | s_server.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 768 | s_server.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
935 | s_server.o: ../include/openssl/md4.h ../include/openssl/md5.h | 769 | s_server.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
936 | s_server.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 770 | s_server.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
937 | s_server.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 771 | s_server.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
938 | s_server.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 772 | s_server.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
939 | s_server.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 773 | s_server.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
940 | s_server.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 774 | s_server.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
941 | s_server.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 775 | s_server.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
942 | s_server.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 776 | s_server.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
943 | s_server.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 777 | s_server.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
944 | s_server.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 778 | s_server.o: ../include/openssl/stack.h ../include/openssl/store.h |
945 | s_server.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
946 | s_server.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
947 | s_server.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 779 | s_server.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
948 | s_server.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 780 | s_server.o: ../include/openssl/txt_db.h ../include/openssl/ui.h |
949 | s_server.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 781 | s_server.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
950 | s_server.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_server.c | 782 | s_server.o: ../include/openssl/x509v3.h apps.h s_apps.h s_server.c timeouts.h |
951 | s_socket.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 783 | s_socket.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
952 | s_socket.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
953 | s_socket.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 784 | s_socket.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
954 | s_socket.o: ../include/openssl/cast.h ../include/openssl/comp.h | 785 | s_socket.o: ../include/openssl/comp.h ../include/openssl/conf.h |
955 | s_socket.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 786 | s_socket.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
956 | s_socket.o: ../include/openssl/des.h ../include/openssl/des_old.h | 787 | s_socket.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
957 | s_socket.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 788 | s_socket.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
958 | s_socket.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 789 | s_socket.o: ../include/openssl/engine.h ../include/openssl/evp.h |
959 | s_socket.o: ../include/openssl/err.h ../include/openssl/evp.h | 790 | s_socket.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
960 | s_socket.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 791 | s_socket.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
961 | s_socket.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 792 | s_socket.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
962 | s_socket.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
963 | s_socket.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
964 | s_socket.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
965 | s_socket.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 793 | s_socket.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
966 | s_socket.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 794 | s_socket.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
967 | s_socket.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 795 | s_socket.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
968 | s_socket.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 796 | s_socket.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h |
969 | s_socket.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
970 | s_socket.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
971 | s_socket.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 797 | s_socket.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
972 | s_socket.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 798 | s_socket.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
973 | s_socket.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 799 | s_socket.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
974 | s_socket.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 800 | s_socket.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
975 | s_socket.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 801 | s_socket.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
976 | s_socket.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 802 | s_socket.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
977 | s_socket.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_socket.c | 803 | s_socket.o: s_apps.h s_socket.c |
978 | s_time.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 804 | s_time.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
979 | s_time.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
980 | s_time.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 805 | s_time.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
981 | s_time.o: ../include/openssl/cast.h ../include/openssl/comp.h | 806 | s_time.o: ../include/openssl/comp.h ../include/openssl/conf.h |
982 | s_time.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 807 | s_time.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
983 | s_time.o: ../include/openssl/des.h ../include/openssl/des_old.h | 808 | s_time.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
984 | s_time.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 809 | s_time.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
985 | s_time.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 810 | s_time.o: ../include/openssl/engine.h ../include/openssl/err.h |
986 | s_time.o: ../include/openssl/err.h ../include/openssl/evp.h | 811 | s_time.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
987 | s_time.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 812 | s_time.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
988 | s_time.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 813 | s_time.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
989 | s_time.o: ../include/openssl/md4.h ../include/openssl/md5.h | 814 | s_time.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
990 | s_time.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 815 | s_time.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
991 | s_time.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 816 | s_time.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
992 | s_time.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 817 | s_time.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
993 | s_time.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 818 | s_time.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
994 | s_time.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 819 | s_time.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
995 | s_time.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 820 | s_time.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
996 | s_time.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 821 | s_time.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
997 | s_time.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 822 | s_time.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
998 | s_time.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 823 | s_time.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
999 | s_time.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 824 | s_time.o: ../include/openssl/x509v3.h apps.h s_apps.h s_time.c |
1000 | s_time.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 825 | sess_id.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
1001 | s_time.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
1002 | s_time.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | ||
1003 | s_time.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
1004 | s_time.o: ../include/openssl/x509_vfy.h apps.h s_apps.h s_time.c | ||
1005 | sess_id.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
1006 | sess_id.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
1007 | sess_id.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 826 | sess_id.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
1008 | sess_id.o: ../include/openssl/cast.h ../include/openssl/comp.h | 827 | sess_id.o: ../include/openssl/comp.h ../include/openssl/conf.h |
1009 | sess_id.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 828 | sess_id.o: ../include/openssl/crypto.h ../include/openssl/dtls1.h |
1010 | sess_id.o: ../include/openssl/des.h ../include/openssl/des_old.h | 829 | sess_id.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
1011 | sess_id.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 830 | sess_id.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
1012 | sess_id.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 831 | sess_id.o: ../include/openssl/engine.h ../include/openssl/err.h |
1013 | sess_id.o: ../include/openssl/err.h ../include/openssl/evp.h | 832 | sess_id.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
1014 | sess_id.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 833 | sess_id.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
1015 | sess_id.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 834 | sess_id.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
1016 | sess_id.o: ../include/openssl/md4.h ../include/openssl/md5.h | 835 | sess_id.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
1017 | sess_id.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 836 | sess_id.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
1018 | sess_id.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 837 | sess_id.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
1019 | sess_id.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 838 | sess_id.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
1020 | sess_id.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 839 | sess_id.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
1021 | sess_id.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 840 | sess_id.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
1022 | sess_id.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 841 | sess_id.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
1023 | sess_id.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 842 | sess_id.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
1024 | sess_id.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 843 | sess_id.o: ../include/openssl/tls1.h ../include/openssl/txt_db.h |
1025 | sess_id.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 844 | sess_id.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
1026 | sess_id.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 845 | sess_id.o: ../include/openssl/x509v3.h apps.h sess_id.c |
1027 | sess_id.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 846 | smime.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
1028 | sess_id.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 847 | smime.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
1029 | sess_id.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 848 | smime.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
1030 | sess_id.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 849 | smime.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
1031 | sess_id.o: ../include/openssl/x509_vfy.h apps.h sess_id.c | 850 | smime.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
1032 | smime.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 851 | smime.o: ../include/openssl/err.h ../include/openssl/evp.h |
1033 | smime.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 852 | smime.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
1034 | smime.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 853 | smime.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
1035 | smime.o: ../include/openssl/cast.h ../include/openssl/conf.h | 854 | smime.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
1036 | smime.o: ../include/openssl/crypto.h ../include/openssl/des.h | 855 | smime.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
1037 | smime.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 856 | smime.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
1038 | smime.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 857 | smime.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
1039 | smime.o: ../include/openssl/engine.h ../include/openssl/err.h | 858 | smime.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
1040 | smime.o: ../include/openssl/evp.h ../include/openssl/idea.h | 859 | smime.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
1041 | smime.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 860 | smime.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
1042 | smime.o: ../include/openssl/md4.h ../include/openssl/md5.h | 861 | smime.o: smime.c |
1043 | smime.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
1044 | smime.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
1045 | smime.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
1046 | smime.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
1047 | smime.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
1048 | smime.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
1049 | smime.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
1050 | smime.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
1051 | smime.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
1052 | smime.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
1053 | smime.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
1054 | smime.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h smime.c | ||
1055 | speed.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 862 | speed.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
1056 | speed.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 863 | speed.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
1057 | speed.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 864 | speed.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
1058 | speed.o: ../include/openssl/cast.h ../include/openssl/conf.h | 865 | speed.o: ../include/openssl/cast.h ../include/openssl/conf.h |
1059 | speed.o: ../include/openssl/crypto.h ../include/openssl/des.h | 866 | speed.o: ../include/openssl/crypto.h ../include/openssl/des.h |
1060 | speed.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 867 | speed.o: ../include/openssl/des_old.h ../include/openssl/dsa.h |
1061 | speed.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 868 | speed.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
869 | speed.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
1062 | speed.o: ../include/openssl/engine.h ../include/openssl/err.h | 870 | speed.o: ../include/openssl/engine.h ../include/openssl/err.h |
1063 | speed.o: ../include/openssl/evp.h ../include/openssl/hmac.h | 871 | speed.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
1064 | speed.o: ../include/openssl/idea.h ../include/openssl/lhash.h | 872 | speed.o: ../include/openssl/idea.h ../include/openssl/lhash.h |
1065 | speed.o: ../include/openssl/md2.h ../include/openssl/md4.h | 873 | speed.o: ../include/openssl/md2.h ../include/openssl/md4.h |
1066 | speed.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 874 | speed.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h |
1067 | speed.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 875 | speed.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
1068 | speed.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 876 | speed.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
1069 | speed.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | 877 | speed.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
1070 | speed.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 878 | speed.o: ../include/openssl/rand.h ../include/openssl/rc2.h |
1071 | speed.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 879 | speed.o: ../include/openssl/rc4.h ../include/openssl/ripemd.h |
1072 | speed.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 880 | speed.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
1073 | speed.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 881 | speed.o: ../include/openssl/sha.h ../include/openssl/stack.h |
1074 | speed.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 882 | speed.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
1075 | speed.o: ../include/openssl/txt_db.h ../include/openssl/ui.h | 883 | speed.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h |
1076 | speed.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 884 | speed.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
1077 | speed.o: ../include/openssl/x509_vfy.h apps.h speed.c testdsa.h testrsa.h | 885 | speed.o: ../include/openssl/x509v3.h apps.h speed.c testdsa.h testrsa.h |
1078 | spkac.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 886 | spkac.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
1079 | spkac.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 887 | spkac.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
1080 | spkac.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 888 | spkac.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
1081 | spkac.o: ../include/openssl/cast.h ../include/openssl/conf.h | 889 | spkac.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
1082 | spkac.o: ../include/openssl/crypto.h ../include/openssl/des.h | 890 | spkac.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
1083 | spkac.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 891 | spkac.o: ../include/openssl/err.h ../include/openssl/evp.h |
1084 | spkac.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 892 | spkac.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
1085 | spkac.o: ../include/openssl/engine.h ../include/openssl/err.h | 893 | spkac.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
1086 | spkac.o: ../include/openssl/evp.h ../include/openssl/idea.h | 894 | spkac.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
1087 | spkac.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 895 | spkac.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
1088 | spkac.o: ../include/openssl/md4.h ../include/openssl/md5.h | 896 | spkac.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
1089 | spkac.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 897 | spkac.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
1090 | spkac.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 898 | spkac.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
1091 | spkac.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 899 | spkac.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
1092 | spkac.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 900 | spkac.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
1093 | spkac.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 901 | spkac.o: spkac.c |
1094 | spkac.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 902 | verify.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
1095 | spkac.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 903 | verify.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
1096 | spkac.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 904 | verify.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
1097 | spkac.o: ../include/openssl/sha.h ../include/openssl/stack.h | 905 | verify.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
1098 | spkac.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 906 | verify.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
1099 | spkac.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | 907 | verify.o: ../include/openssl/err.h ../include/openssl/evp.h |
1100 | spkac.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h spkac.c | 908 | verify.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
1101 | verify.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 909 | verify.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
1102 | verify.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 910 | verify.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
1103 | verify.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 911 | verify.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
1104 | verify.o: ../include/openssl/cast.h ../include/openssl/conf.h | 912 | verify.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
1105 | verify.o: ../include/openssl/crypto.h ../include/openssl/des.h | 913 | verify.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
1106 | verify.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 914 | verify.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
1107 | verify.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 915 | verify.o: ../include/openssl/txt_db.h ../include/openssl/x509.h |
1108 | verify.o: ../include/openssl/engine.h ../include/openssl/err.h | 916 | verify.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
1109 | verify.o: ../include/openssl/evp.h ../include/openssl/idea.h | 917 | verify.o: verify.c |
1110 | verify.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 918 | version.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
1111 | verify.o: ../include/openssl/md4.h ../include/openssl/md5.h | 919 | version.o: ../include/openssl/blowfish.h ../include/openssl/bn.h |
1112 | verify.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 920 | version.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
1113 | verify.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
1114 | verify.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
1115 | verify.o: ../include/openssl/pem.h ../include/openssl/pem2.h | ||
1116 | verify.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
1117 | verify.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
1118 | verify.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
1119 | verify.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
1120 | verify.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
1121 | verify.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | ||
1122 | verify.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
1123 | verify.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
1124 | verify.o: ../include/openssl/x509v3.h apps.h verify.c | ||
1125 | version.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
1126 | version.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
1127 | version.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
1128 | version.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
1129 | version.o: ../include/openssl/crypto.h ../include/openssl/des.h | 921 | version.o: ../include/openssl/crypto.h ../include/openssl/des.h |
1130 | version.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 922 | version.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h |
1131 | version.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 923 | version.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
1132 | version.o: ../include/openssl/engine.h ../include/openssl/err.h | 924 | version.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
1133 | version.o: ../include/openssl/evp.h ../include/openssl/idea.h | 925 | version.o: ../include/openssl/evp.h ../include/openssl/idea.h |
1134 | version.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 926 | version.o: ../include/openssl/lhash.h ../include/openssl/md2.h |
1135 | version.o: ../include/openssl/md4.h ../include/openssl/md5.h | 927 | version.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
1136 | version.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 928 | version.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
1137 | version.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
1138 | version.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 929 | version.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
1139 | version.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 930 | version.o: ../include/openssl/pkcs7.h ../include/openssl/rc4.h |
1140 | version.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 931 | version.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
1141 | version.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 932 | version.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
1142 | version.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 933 | version.o: ../include/openssl/txt_db.h ../include/openssl/ui.h |
1143 | version.o: ../include/openssl/sha.h ../include/openssl/stack.h | 934 | version.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h |
1144 | version.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 935 | version.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h apps.h |
1145 | version.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
1146 | version.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h apps.h | ||
1147 | version.o: version.c | 936 | version.o: version.c |
1148 | x509.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 937 | x509.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
1149 | x509.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
1150 | x509.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 938 | x509.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
1151 | x509.o: ../include/openssl/cast.h ../include/openssl/conf.h | 939 | x509.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
1152 | x509.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
1153 | x509.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
1154 | x509.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 940 | x509.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
1155 | x509.o: ../include/openssl/engine.h ../include/openssl/err.h | 941 | x509.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
1156 | x509.o: ../include/openssl/evp.h ../include/openssl/idea.h | 942 | x509.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
1157 | x509.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 943 | x509.o: ../include/openssl/err.h ../include/openssl/evp.h |
1158 | x509.o: ../include/openssl/md4.h ../include/openssl/md5.h | 944 | x509.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
1159 | x509.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 945 | x509.o: ../include/openssl/objects.h ../include/openssl/ocsp.h |
1160 | x509.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 946 | x509.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
1161 | x509.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 947 | x509.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
1162 | x509.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 948 | x509.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
1163 | x509.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
1164 | x509.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
1165 | x509.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
1166 | x509.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 949 | x509.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
1167 | x509.o: ../include/openssl/sha.h ../include/openssl/stack.h | 950 | x509.o: ../include/openssl/sha.h ../include/openssl/stack.h |
1168 | x509.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h | 951 | x509.o: ../include/openssl/symhacks.h ../include/openssl/txt_db.h |
1169 | x509.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
1170 | x509.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | 952 | x509.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
1171 | x509.o: ../include/openssl/x509v3.h apps.h x509.c | 953 | x509.o: ../include/openssl/x509v3.h apps.h x509.c |
diff --git a/src/lib/libssl/src/apps/prime.c b/src/lib/libssl/src/apps/prime.c index 1753b3ebc1..af2fed15af 100644 --- a/src/lib/libssl/src/apps/prime.c +++ b/src/lib/libssl/src/apps/prime.c | |||
@@ -56,6 +56,8 @@ | |||
56 | #undef PROG | 56 | #undef PROG |
57 | #define PROG prime_main | 57 | #define PROG prime_main |
58 | 58 | ||
59 | int MAIN(int, char **); | ||
60 | |||
59 | int MAIN(int argc, char **argv) | 61 | int MAIN(int argc, char **argv) |
60 | { | 62 | { |
61 | int hex=0; | 63 | int hex=0; |
@@ -113,7 +115,7 @@ int MAIN(int argc, char **argv) | |||
113 | 115 | ||
114 | BN_print(bio_out,bn); | 116 | BN_print(bio_out,bn); |
115 | BIO_printf(bio_out," is %sprime\n", | 117 | BIO_printf(bio_out," is %sprime\n", |
116 | BN_is_prime(bn,checks,NULL,NULL,NULL) ? "" : "not "); | 118 | BN_is_prime_ex(bn,checks,NULL,NULL) ? "" : "not "); |
117 | 119 | ||
118 | BN_free(bn); | 120 | BN_free(bn); |
119 | BIO_free_all(bio_out); | 121 | BIO_free_all(bio_out); |
diff --git a/src/lib/libssl/src/crypto/aes/Makefile b/src/lib/libssl/src/crypto/aes/Makefile index a37c6f66a2..22c7203dbb 100644 --- a/src/lib/libssl/src/crypto/aes/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/asn1/Makefile b/src/lib/libssl/src/crypto/asn1/Makefile index d1c2d8f490..63066899d0 100644 --- a/src/lib/libssl/src/crypto/asn1/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bf/Makefile b/src/lib/libssl/src/crypto/bf/Makefile index 42e2c050f8..8441954a8d 100644 --- a/src/lib/libssl/src/crypto/bf/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bio/Makefile b/src/lib/libssl/src/crypto/bio/Makefile index a565154499..1ef6c2fb9f 100644 --- a/src/lib/libssl/src/crypto/bio/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bn/Makefile b/src/lib/libssl/src/crypto/bn/Makefile index 9969d242cc..e97c751390 100644 --- a/src/lib/libssl/src/crypto/bn/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bn/asm/mo-586.pl b/src/lib/libssl/src/crypto/bn/asm/mo-586.pl new file mode 100644 index 0000000000..0982293094 --- /dev/null +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/bn/asm/x86_64-gcc.c b/src/lib/libssl/src/crypto/bn/asm/x86_64-gcc.c index 7378344251..f13f52dd85 100644 --- a/src/lib/libssl/src/crypto/bn/asm/x86_64-gcc.c +++ b/src/lib/libssl/src/crypto/bn/asm/x86_64-gcc.c | |||
@@ -1,3 +1,6 @@ | |||
1 | #ifdef __SUNPRO_C | ||
2 | # include "../bn_asm.c" /* kind of dirty hack for Sun Studio */ | ||
3 | #else | ||
1 | /* | 4 | /* |
2 | * x86_64 BIGNUM accelerator version 0.1, December 2002. | 5 | * x86_64 BIGNUM accelerator version 0.1, December 2002. |
3 | * | 6 | * |
@@ -591,3 +594,4 @@ void bn_sqr_comba4(BN_ULONG *r, BN_ULONG *a) | |||
591 | r[6]=c1; | 594 | r[6]=c1; |
592 | r[7]=c2; | 595 | r[7]=c2; |
593 | } | 596 | } |
597 | #endif | ||
diff --git a/src/lib/libssl/src/crypto/buffer/Makefile b/src/lib/libssl/src/crypto/buffer/Makefile index 4b53c595a3..9f3a88d2d6 100644 --- a/src/lib/libssl/src/crypto/buffer/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/cast/Makefile b/src/lib/libssl/src/crypto/cast/Makefile index b388f6271c..149956ee90 100644 --- a/src/lib/libssl/src/crypto/cast/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/comp/Makefile b/src/lib/libssl/src/crypto/comp/Makefile index df1babec5c..efda832dce 100644 --- a/src/lib/libssl/src/crypto/comp/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/conf/Makefile b/src/lib/libssl/src/crypto/conf/Makefile index 403d12b28c..78bb324106 100644 --- a/src/lib/libssl/src/crypto/conf/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/des/FILES0 b/src/lib/libssl/src/crypto/des/FILES0 index 1c2e1f75b9..4c7ea2de7a 100644 --- a/src/lib/libssl/src/crypto/des/FILES0 +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/des/INSTALL b/src/lib/libssl/src/crypto/des/INSTALL index 32457d775c..8aebdfe110 100644 --- a/src/lib/libssl/src/crypto/des/INSTALL +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/des/Makefile b/src/lib/libssl/src/crypto/des/Makefile index 800af0b123..523dfe38f2 100644 --- a/src/lib/libssl/src/crypto/des/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/dh/Makefile b/src/lib/libssl/src/crypto/dh/Makefile index 352678b94a..d368e33b4c 100644 --- a/src/lib/libssl/src/crypto/dh/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/dsa/Makefile b/src/lib/libssl/src/crypto/dsa/Makefile index 4f10278039..676baf7d49 100644 --- a/src/lib/libssl/src/crypto/dsa/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/dso/Makefile b/src/lib/libssl/src/crypto/dso/Makefile index c16278c3ff..07f5d8d159 100644 --- a/src/lib/libssl/src/crypto/dso/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ec/Makefile b/src/lib/libssl/src/crypto/ec/Makefile index 8f03658ad4..42f7bb7fc8 100644 --- a/src/lib/libssl/src/crypto/ec/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ec/ec2_smpt.c b/src/lib/libssl/src/crypto/ec/ec2_smpt.c new file mode 100644 index 0000000000..59d52bf663 --- /dev/null +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/engine/Makefile b/src/lib/libssl/src/crypto/engine/Makefile index 38f83f1654..13f211a0ae 100644 --- a/src/lib/libssl/src/crypto/engine/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/engine/eng_cryptodev.c b/src/lib/libssl/src/crypto/engine/eng_cryptodev.c new file mode 100644 index 0000000000..ab38cd52f0 --- /dev/null +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/engine/eng_padlock.c b/src/lib/libssl/src/crypto/engine/eng_padlock.c new file mode 100644 index 0000000000..1ba9d85db4 --- /dev/null +++ b/src/lib/libssl/src/crypto/engine/eng_padlock.c | |||
@@ -0,0 +1,1219 @@ | |||
1 | /* | ||
2 | * Support for VIA PadLock Advanced Cryptography Engine (ACE) | ||
3 | * Written by Michal Ludvig <michal@logix.cz> | ||
4 | * http://www.logix.cz/michal | ||
5 | * | ||
6 | * Big thanks to Andy Polyakov for a help with optimization, | ||
7 | * assembler fixes, port to MS Windows and a lot of other | ||
8 | * valuable work on this engine! | ||
9 | */ | ||
10 | |||
11 | /* ==================================================================== | ||
12 | * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved. | ||
13 | * | ||
14 | * Redistribution and use in source and binary forms, with or without | ||
15 | * modification, are permitted provided that the following conditions | ||
16 | * are met: | ||
17 | * | ||
18 | * 1. Redistributions of source code must retain the above copyright | ||
19 | * notice, this list of conditions and the following disclaimer. | ||
20 | * | ||
21 | * 2. Redistributions in binary form must reproduce the above copyright | ||
22 | * notice, this list of conditions and the following disclaimer in | ||
23 | * the documentation and/or other materials provided with the | ||
24 | * distribution. | ||
25 | * | ||
26 | * 3. All advertising materials mentioning features or use of this | ||
27 | * software must display the following acknowledgment: | ||
28 | * "This product includes software developed by the OpenSSL Project | ||
29 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
30 | * | ||
31 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
32 | * endorse or promote products derived from this software without | ||
33 | * prior written permission. For written permission, please contact | ||
34 | * licensing@OpenSSL.org. | ||
35 | * | ||
36 | * 5. Products derived from this software may not be called "OpenSSL" | ||
37 | * nor may "OpenSSL" appear in their names without prior written | ||
38 | * permission of the OpenSSL Project. | ||
39 | * | ||
40 | * 6. Redistributions of any form whatsoever must retain the following | ||
41 | * acknowledgment: | ||
42 | * "This product includes software developed by the OpenSSL Project | ||
43 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
44 | * | ||
45 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
46 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
47 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
48 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
49 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
50 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
51 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
52 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
53 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
54 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
55 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
56 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
57 | * ==================================================================== | ||
58 | * | ||
59 | * This product includes cryptographic software written by Eric Young | ||
60 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
61 | * Hudson (tjh@cryptsoft.com). | ||
62 | * | ||
63 | */ | ||
64 | |||
65 | |||
66 | #include <stdio.h> | ||
67 | #include <string.h> | ||
68 | |||
69 | #include <openssl/opensslconf.h> | ||
70 | #include <openssl/crypto.h> | ||
71 | #include <openssl/dso.h> | ||
72 | #include <openssl/engine.h> | ||
73 | #include <openssl/evp.h> | ||
74 | #ifndef OPENSSL_NO_AES | ||
75 | #include <openssl/aes.h> | ||
76 | #endif | ||
77 | #include <openssl/rand.h> | ||
78 | #include <openssl/err.h> | ||
79 | |||
80 | #ifndef OPENSSL_NO_HW | ||
81 | #ifndef OPENSSL_NO_HW_PADLOCK | ||
82 | |||
83 | /* Attempt to have a single source for both 0.9.7 and 0.9.8 :-) */ | ||
84 | #if (OPENSSL_VERSION_NUMBER >= 0x00908000L) | ||
85 | # ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
86 | # define DYNAMIC_ENGINE | ||
87 | # endif | ||
88 | #elif (OPENSSL_VERSION_NUMBER >= 0x00907000L) | ||
89 | # ifdef ENGINE_DYNAMIC_SUPPORT | ||
90 | # define DYNAMIC_ENGINE | ||
91 | # endif | ||
92 | #else | ||
93 | # error "Only OpenSSL >= 0.9.7 is supported" | ||
94 | #endif | ||
95 | |||
96 | /* VIA PadLock AES is available *ONLY* on some x86 CPUs. | ||
97 | Not only that it doesn't exist elsewhere, but it | ||
98 | even can't be compiled on other platforms! | ||
99 | |||
100 | In addition, because of the heavy use of inline assembler, | ||
101 | compiler choice is limited to GCC and Microsoft C. */ | ||
102 | #undef COMPILE_HW_PADLOCK | ||
103 | #if !defined(I386_ONLY) && !defined(OPENSSL_NO_INLINE_ASM) | ||
104 | # if (defined(__GNUC__) && (defined(__i386__) || defined(__i386))) || \ | ||
105 | (defined(_MSC_VER) && defined(_M_IX86)) | ||
106 | # define COMPILE_HW_PADLOCK | ||
107 | static ENGINE *ENGINE_padlock (void); | ||
108 | # endif | ||
109 | #endif | ||
110 | |||
111 | void ENGINE_load_padlock (void) | ||
112 | { | ||
113 | /* On non-x86 CPUs it just returns. */ | ||
114 | #ifdef COMPILE_HW_PADLOCK | ||
115 | ENGINE *toadd = ENGINE_padlock (); | ||
116 | if (!toadd) return; | ||
117 | ENGINE_add (toadd); | ||
118 | ENGINE_free (toadd); | ||
119 | ERR_clear_error (); | ||
120 | #endif | ||
121 | } | ||
122 | |||
123 | #ifdef COMPILE_HW_PADLOCK | ||
124 | /* We do these includes here to avoid header problems on platforms that | ||
125 | do not have the VIA padlock anyway... */ | ||
126 | #ifdef _MSC_VER | ||
127 | # include <malloc.h> | ||
128 | # define alloca _alloca | ||
129 | #elif defined(NETWARE_CLIB) && defined(__GNUC__) | ||
130 | void *alloca(size_t); | ||
131 | # define alloca(s) __builtin_alloca(s) | ||
132 | #else | ||
133 | # include <stdlib.h> | ||
134 | #endif | ||
135 | |||
136 | /* Function for ENGINE detection and control */ | ||
137 | static int padlock_available(void); | ||
138 | static int padlock_init(ENGINE *e); | ||
139 | |||
140 | /* RNG Stuff */ | ||
141 | static RAND_METHOD padlock_rand; | ||
142 | |||
143 | /* Cipher Stuff */ | ||
144 | #ifndef OPENSSL_NO_AES | ||
145 | static int padlock_ciphers(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); | ||
146 | #endif | ||
147 | |||
148 | /* Engine names */ | ||
149 | static const char *padlock_id = "padlock"; | ||
150 | static char padlock_name[100]; | ||
151 | |||
152 | /* Available features */ | ||
153 | static int padlock_use_ace = 0; /* Advanced Cryptography Engine */ | ||
154 | static int padlock_use_rng = 0; /* Random Number Generator */ | ||
155 | #ifndef OPENSSL_NO_AES | ||
156 | static int padlock_aes_align_required = 1; | ||
157 | #endif | ||
158 | |||
159 | /* ===== Engine "management" functions ===== */ | ||
160 | |||
161 | /* Prepare the ENGINE structure for registration */ | ||
162 | static int | ||
163 | padlock_bind_helper(ENGINE *e) | ||
164 | { | ||
165 | /* Check available features */ | ||
166 | padlock_available(); | ||
167 | |||
168 | #if 1 /* disable RNG for now, see commentary in vicinity of RNG code */ | ||
169 | padlock_use_rng=0; | ||
170 | #endif | ||
171 | |||
172 | /* Generate a nice engine name with available features */ | ||
173 | BIO_snprintf(padlock_name, sizeof(padlock_name), | ||
174 | "VIA PadLock (%s, %s)", | ||
175 | padlock_use_rng ? "RNG" : "no-RNG", | ||
176 | padlock_use_ace ? "ACE" : "no-ACE"); | ||
177 | |||
178 | /* Register everything or return with an error */ | ||
179 | if (!ENGINE_set_id(e, padlock_id) || | ||
180 | !ENGINE_set_name(e, padlock_name) || | ||
181 | |||
182 | !ENGINE_set_init_function(e, padlock_init) || | ||
183 | #ifndef OPENSSL_NO_AES | ||
184 | (padlock_use_ace && !ENGINE_set_ciphers (e, padlock_ciphers)) || | ||
185 | #endif | ||
186 | (padlock_use_rng && !ENGINE_set_RAND (e, &padlock_rand))) { | ||
187 | return 0; | ||
188 | } | ||
189 | |||
190 | /* Everything looks good */ | ||
191 | return 1; | ||
192 | } | ||
193 | |||
194 | /* Constructor */ | ||
195 | static ENGINE * | ||
196 | ENGINE_padlock(void) | ||
197 | { | ||
198 | ENGINE *eng = ENGINE_new(); | ||
199 | |||
200 | if (!eng) { | ||
201 | return NULL; | ||
202 | } | ||
203 | |||
204 | if (!padlock_bind_helper(eng)) { | ||
205 | ENGINE_free(eng); | ||
206 | return NULL; | ||
207 | } | ||
208 | |||
209 | return eng; | ||
210 | } | ||
211 | |||
212 | /* Check availability of the engine */ | ||
213 | static int | ||
214 | padlock_init(ENGINE *e) | ||
215 | { | ||
216 | return (padlock_use_rng || padlock_use_ace); | ||
217 | } | ||
218 | |||
219 | /* This stuff is needed if this ENGINE is being compiled into a self-contained | ||
220 | * shared-library. | ||
221 | */ | ||
222 | #ifdef DYNAMIC_ENGINE | ||
223 | static int | ||
224 | padlock_bind_fn(ENGINE *e, const char *id) | ||
225 | { | ||
226 | if (id && (strcmp(id, padlock_id) != 0)) { | ||
227 | return 0; | ||
228 | } | ||
229 | |||
230 | if (!padlock_bind_helper(e)) { | ||
231 | return 0; | ||
232 | } | ||
233 | |||
234 | return 1; | ||
235 | } | ||
236 | |||
237 | IMPLEMENT_DYNAMIC_CHECK_FN (); | ||
238 | IMPLEMENT_DYNAMIC_BIND_FN (padlock_bind_fn); | ||
239 | #endif /* DYNAMIC_ENGINE */ | ||
240 | |||
241 | /* ===== Here comes the "real" engine ===== */ | ||
242 | |||
243 | #ifndef OPENSSL_NO_AES | ||
244 | /* Some AES-related constants */ | ||
245 | #define AES_BLOCK_SIZE 16 | ||
246 | #define AES_KEY_SIZE_128 16 | ||
247 | #define AES_KEY_SIZE_192 24 | ||
248 | #define AES_KEY_SIZE_256 32 | ||
249 | |||
250 | /* Here we store the status information relevant to the | ||
251 | current context. */ | ||
252 | /* BIG FAT WARNING: | ||
253 | * Inline assembler in PADLOCK_XCRYPT_ASM() | ||
254 | * depends on the order of items in this structure. | ||
255 | * Don't blindly modify, reorder, etc! | ||
256 | */ | ||
257 | struct padlock_cipher_data | ||
258 | { | ||
259 | unsigned char iv[AES_BLOCK_SIZE]; /* Initialization vector */ | ||
260 | union { unsigned int pad[4]; | ||
261 | struct { | ||
262 | int rounds:4; | ||
263 | int dgst:1; /* n/a in C3 */ | ||
264 | int align:1; /* n/a in C3 */ | ||
265 | int ciphr:1; /* n/a in C3 */ | ||
266 | unsigned int keygen:1; | ||
267 | int interm:1; | ||
268 | unsigned int encdec:1; | ||
269 | int ksize:2; | ||
270 | } b; | ||
271 | } cword; /* Control word */ | ||
272 | AES_KEY ks; /* Encryption key */ | ||
273 | }; | ||
274 | |||
275 | /* | ||
276 | * Essentially this variable belongs in thread local storage. | ||
277 | * Having this variable global on the other hand can only cause | ||
278 | * few bogus key reloads [if any at all on single-CPU system], | ||
279 | * so we accept the penatly... | ||
280 | */ | ||
281 | static volatile struct padlock_cipher_data *padlock_saved_context; | ||
282 | #endif | ||
283 | |||
284 | /* | ||
285 | * ======================================================= | ||
286 | * Inline assembler section(s). | ||
287 | * ======================================================= | ||
288 | * Order of arguments is chosen to facilitate Windows port | ||
289 | * using __fastcall calling convention. If you wish to add | ||
290 | * more routines, keep in mind that first __fastcall | ||
291 | * argument is passed in %ecx and second - in %edx. | ||
292 | * ======================================================= | ||
293 | */ | ||
294 | #if defined(__GNUC__) && __GNUC__>=2 | ||
295 | /* | ||
296 | * As for excessive "push %ebx"/"pop %ebx" found all over. | ||
297 | * When generating position-independent code GCC won't let | ||
298 | * us use "b" in assembler templates nor even respect "ebx" | ||
299 | * in "clobber description." Therefore the trouble... | ||
300 | */ | ||
301 | |||
302 | /* Helper function - check if a CPUID instruction | ||
303 | is available on this CPU */ | ||
304 | static int | ||
305 | padlock_insn_cpuid_available(void) | ||
306 | { | ||
307 | int result = -1; | ||
308 | |||
309 | /* We're checking if the bit #21 of EFLAGS | ||
310 | can be toggled. If yes = CPUID is available. */ | ||
311 | asm volatile ( | ||
312 | "pushf\n" | ||
313 | "popl %%eax\n" | ||
314 | "xorl $0x200000, %%eax\n" | ||
315 | "movl %%eax, %%ecx\n" | ||
316 | "andl $0x200000, %%ecx\n" | ||
317 | "pushl %%eax\n" | ||
318 | "popf\n" | ||
319 | "pushf\n" | ||
320 | "popl %%eax\n" | ||
321 | "andl $0x200000, %%eax\n" | ||
322 | "xorl %%eax, %%ecx\n" | ||
323 | "movl %%ecx, %0\n" | ||
324 | : "=r" (result) : : "eax", "ecx"); | ||
325 | |||
326 | return (result == 0); | ||
327 | } | ||
328 | |||
329 | /* Load supported features of the CPU to see if | ||
330 | the PadLock is available. */ | ||
331 | static int | ||
332 | padlock_available(void) | ||
333 | { | ||
334 | char vendor_string[16]; | ||
335 | unsigned int eax, edx; | ||
336 | |||
337 | /* First check if the CPUID instruction is available at all... */ | ||
338 | if (! padlock_insn_cpuid_available()) | ||
339 | return 0; | ||
340 | |||
341 | /* Are we running on the Centaur (VIA) CPU? */ | ||
342 | eax = 0x00000000; | ||
343 | vendor_string[12] = 0; | ||
344 | asm volatile ( | ||
345 | "pushl %%ebx\n" | ||
346 | "cpuid\n" | ||
347 | "movl %%ebx,(%%edi)\n" | ||
348 | "movl %%edx,4(%%edi)\n" | ||
349 | "movl %%ecx,8(%%edi)\n" | ||
350 | "popl %%ebx" | ||
351 | : "+a"(eax) : "D"(vendor_string) : "ecx", "edx"); | ||
352 | if (strcmp(vendor_string, "CentaurHauls") != 0) | ||
353 | return 0; | ||
354 | |||
355 | /* Check for Centaur Extended Feature Flags presence */ | ||
356 | eax = 0xC0000000; | ||
357 | asm volatile ("pushl %%ebx; cpuid; popl %%ebx" | ||
358 | : "+a"(eax) : : "ecx", "edx"); | ||
359 | if (eax < 0xC0000001) | ||
360 | return 0; | ||
361 | |||
362 | /* Read the Centaur Extended Feature Flags */ | ||
363 | eax = 0xC0000001; | ||
364 | asm volatile ("pushl %%ebx; cpuid; popl %%ebx" | ||
365 | : "+a"(eax), "=d"(edx) : : "ecx"); | ||
366 | |||
367 | /* Fill up some flags */ | ||
368 | padlock_use_ace = ((edx & (0x3<<6)) == (0x3<<6)); | ||
369 | padlock_use_rng = ((edx & (0x3<<2)) == (0x3<<2)); | ||
370 | |||
371 | return padlock_use_ace + padlock_use_rng; | ||
372 | } | ||
373 | |||
374 | #ifndef OPENSSL_NO_AES | ||
375 | /* Our own htonl()/ntohl() */ | ||
376 | static inline void | ||
377 | padlock_bswapl(AES_KEY *ks) | ||
378 | { | ||
379 | size_t i = sizeof(ks->rd_key)/sizeof(ks->rd_key[0]); | ||
380 | unsigned int *key = ks->rd_key; | ||
381 | |||
382 | while (i--) { | ||
383 | asm volatile ("bswapl %0" : "+r"(*key)); | ||
384 | key++; | ||
385 | } | ||
386 | } | ||
387 | #endif | ||
388 | |||
389 | /* Force key reload from memory to the CPU microcode. | ||
390 | Loading EFLAGS from the stack clears EFLAGS[30] | ||
391 | which does the trick. */ | ||
392 | static inline void | ||
393 | padlock_reload_key(void) | ||
394 | { | ||
395 | asm volatile ("pushfl; popfl"); | ||
396 | } | ||
397 | |||
398 | #ifndef OPENSSL_NO_AES | ||
399 | /* | ||
400 | * This is heuristic key context tracing. At first one | ||
401 | * believes that one should use atomic swap instructions, | ||
402 | * but it's not actually necessary. Point is that if | ||
403 | * padlock_saved_context was changed by another thread | ||
404 | * after we've read it and before we compare it with cdata, | ||
405 | * our key *shall* be reloaded upon thread context switch | ||
406 | * and we are therefore set in either case... | ||
407 | */ | ||
408 | static inline void | ||
409 | padlock_verify_context(struct padlock_cipher_data *cdata) | ||
410 | { | ||
411 | asm volatile ( | ||
412 | "pushfl\n" | ||
413 | " btl $30,(%%esp)\n" | ||
414 | " jnc 1f\n" | ||
415 | " cmpl %2,%1\n" | ||
416 | " je 1f\n" | ||
417 | " popfl\n" | ||
418 | " subl $4,%%esp\n" | ||
419 | "1: addl $4,%%esp\n" | ||
420 | " movl %2,%0" | ||
421 | :"+m"(padlock_saved_context) | ||
422 | : "r"(padlock_saved_context), "r"(cdata) : "cc"); | ||
423 | } | ||
424 | |||
425 | /* Template for padlock_xcrypt_* modes */ | ||
426 | /* BIG FAT WARNING: | ||
427 | * The offsets used with 'leal' instructions | ||
428 | * describe items of the 'padlock_cipher_data' | ||
429 | * structure. | ||
430 | */ | ||
431 | #define PADLOCK_XCRYPT_ASM(name,rep_xcrypt) \ | ||
432 | static inline void *name(size_t cnt, \ | ||
433 | struct padlock_cipher_data *cdata, \ | ||
434 | void *out, const void *inp) \ | ||
435 | { void *iv; \ | ||
436 | asm volatile ( "pushl %%ebx\n" \ | ||
437 | " leal 16(%0),%%edx\n" \ | ||
438 | " leal 32(%0),%%ebx\n" \ | ||
439 | rep_xcrypt "\n" \ | ||
440 | " popl %%ebx" \ | ||
441 | : "=a"(iv), "=c"(cnt), "=D"(out), "=S"(inp) \ | ||
442 | : "0"(cdata), "1"(cnt), "2"(out), "3"(inp) \ | ||
443 | : "edx", "cc", "memory"); \ | ||
444 | return iv; \ | ||
445 | } | ||
446 | |||
447 | /* Generate all functions with appropriate opcodes */ | ||
448 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_ecb, ".byte 0xf3,0x0f,0xa7,0xc8") /* rep xcryptecb */ | ||
449 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_cbc, ".byte 0xf3,0x0f,0xa7,0xd0") /* rep xcryptcbc */ | ||
450 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_cfb, ".byte 0xf3,0x0f,0xa7,0xe0") /* rep xcryptcfb */ | ||
451 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_ofb, ".byte 0xf3,0x0f,0xa7,0xe8") /* rep xcryptofb */ | ||
452 | #endif | ||
453 | |||
454 | /* The RNG call itself */ | ||
455 | static inline unsigned int | ||
456 | padlock_xstore(void *addr, unsigned int edx_in) | ||
457 | { | ||
458 | unsigned int eax_out; | ||
459 | |||
460 | asm volatile (".byte 0x0f,0xa7,0xc0" /* xstore */ | ||
461 | : "=a"(eax_out),"=m"(*(unsigned *)addr) | ||
462 | : "D"(addr), "d" (edx_in) | ||
463 | ); | ||
464 | |||
465 | return eax_out; | ||
466 | } | ||
467 | |||
468 | /* Why not inline 'rep movsd'? I failed to find information on what | ||
469 | * value in Direction Flag one can expect and consequently have to | ||
470 | * apply "better-safe-than-sorry" approach and assume "undefined." | ||
471 | * I could explicitly clear it and restore the original value upon | ||
472 | * return from padlock_aes_cipher, but it's presumably too much | ||
473 | * trouble for too little gain... | ||
474 | * | ||
475 | * In case you wonder 'rep xcrypt*' instructions above are *not* | ||
476 | * affected by the Direction Flag and pointers advance toward | ||
477 | * larger addresses unconditionally. | ||
478 | */ | ||
479 | static inline unsigned char * | ||
480 | padlock_memcpy(void *dst,const void *src,size_t n) | ||
481 | { | ||
482 | long *d=dst; | ||
483 | const long *s=src; | ||
484 | |||
485 | n /= sizeof(*d); | ||
486 | do { *d++ = *s++; } while (--n); | ||
487 | |||
488 | return dst; | ||
489 | } | ||
490 | |||
491 | #elif defined(_MSC_VER) | ||
492 | /* | ||
493 | * Unlike GCC these are real functions. In order to minimize impact | ||
494 | * on performance we adhere to __fastcall calling convention in | ||
495 | * order to get two first arguments passed through %ecx and %edx. | ||
496 | * Which kind of suits very well, as instructions in question use | ||
497 | * both %ecx and %edx as input:-) | ||
498 | */ | ||
499 | #define REP_XCRYPT(code) \ | ||
500 | _asm _emit 0xf3 \ | ||
501 | _asm _emit 0x0f _asm _emit 0xa7 \ | ||
502 | _asm _emit code | ||
503 | |||
504 | /* BIG FAT WARNING: | ||
505 | * The offsets used with 'lea' instructions | ||
506 | * describe items of the 'padlock_cipher_data' | ||
507 | * structure. | ||
508 | */ | ||
509 | #define PADLOCK_XCRYPT_ASM(name,code) \ | ||
510 | static void * __fastcall \ | ||
511 | name (size_t cnt, void *cdata, \ | ||
512 | void *outp, const void *inp) \ | ||
513 | { _asm mov eax,edx \ | ||
514 | _asm lea edx,[eax+16] \ | ||
515 | _asm lea ebx,[eax+32] \ | ||
516 | _asm mov edi,outp \ | ||
517 | _asm mov esi,inp \ | ||
518 | REP_XCRYPT(code) \ | ||
519 | } | ||
520 | |||
521 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_ecb,0xc8) | ||
522 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_cbc,0xd0) | ||
523 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_cfb,0xe0) | ||
524 | PADLOCK_XCRYPT_ASM(padlock_xcrypt_ofb,0xe8) | ||
525 | |||
526 | static int __fastcall | ||
527 | padlock_xstore(void *outp,unsigned int code) | ||
528 | { _asm mov edi,ecx | ||
529 | _asm _emit 0x0f _asm _emit 0xa7 _asm _emit 0xc0 | ||
530 | } | ||
531 | |||
532 | static void __fastcall | ||
533 | padlock_reload_key(void) | ||
534 | { _asm pushfd _asm popfd } | ||
535 | |||
536 | static void __fastcall | ||
537 | padlock_verify_context(void *cdata) | ||
538 | { _asm { | ||
539 | pushfd | ||
540 | bt DWORD PTR[esp],30 | ||
541 | jnc skip | ||
542 | cmp ecx,padlock_saved_context | ||
543 | je skip | ||
544 | popfd | ||
545 | sub esp,4 | ||
546 | skip: add esp,4 | ||
547 | mov padlock_saved_context,ecx | ||
548 | } | ||
549 | } | ||
550 | |||
551 | static int | ||
552 | padlock_available(void) | ||
553 | { _asm { | ||
554 | pushfd | ||
555 | pop eax | ||
556 | mov ecx,eax | ||
557 | xor eax,1<<21 | ||
558 | push eax | ||
559 | popfd | ||
560 | pushfd | ||
561 | pop eax | ||
562 | xor eax,ecx | ||
563 | bt eax,21 | ||
564 | jnc noluck | ||
565 | mov eax,0 | ||
566 | cpuid | ||
567 | xor eax,eax | ||
568 | cmp ebx,'tneC' | ||
569 | jne noluck | ||
570 | cmp edx,'Hrua' | ||
571 | jne noluck | ||
572 | cmp ecx,'slua' | ||
573 | jne noluck | ||
574 | mov eax,0xC0000000 | ||
575 | cpuid | ||
576 | mov edx,eax | ||
577 | xor eax,eax | ||
578 | cmp edx,0xC0000001 | ||
579 | jb noluck | ||
580 | mov eax,0xC0000001 | ||
581 | cpuid | ||
582 | xor eax,eax | ||
583 | bt edx,6 | ||
584 | jnc skip_a | ||
585 | bt edx,7 | ||
586 | jnc skip_a | ||
587 | mov padlock_use_ace,1 | ||
588 | inc eax | ||
589 | skip_a: bt edx,2 | ||
590 | jnc skip_r | ||
591 | bt edx,3 | ||
592 | jnc skip_r | ||
593 | mov padlock_use_rng,1 | ||
594 | inc eax | ||
595 | skip_r: | ||
596 | noluck: | ||
597 | } | ||
598 | } | ||
599 | |||
600 | static void __fastcall | ||
601 | padlock_bswapl(void *key) | ||
602 | { _asm { | ||
603 | pushfd | ||
604 | cld | ||
605 | mov esi,ecx | ||
606 | mov edi,ecx | ||
607 | mov ecx,60 | ||
608 | up: lodsd | ||
609 | bswap eax | ||
610 | stosd | ||
611 | loop up | ||
612 | popfd | ||
613 | } | ||
614 | } | ||
615 | |||
616 | /* MS actually specifies status of Direction Flag and compiler even | ||
617 | * manages to compile following as 'rep movsd' all by itself... | ||
618 | */ | ||
619 | #define padlock_memcpy(o,i,n) ((unsigned char *)memcpy((o),(i),(n)&~3U)) | ||
620 | #endif | ||
621 | |||
622 | /* ===== AES encryption/decryption ===== */ | ||
623 | #ifndef OPENSSL_NO_AES | ||
624 | |||
625 | #if defined(NID_aes_128_cfb128) && ! defined (NID_aes_128_cfb) | ||
626 | #define NID_aes_128_cfb NID_aes_128_cfb128 | ||
627 | #endif | ||
628 | |||
629 | #if defined(NID_aes_128_ofb128) && ! defined (NID_aes_128_ofb) | ||
630 | #define NID_aes_128_ofb NID_aes_128_ofb128 | ||
631 | #endif | ||
632 | |||
633 | #if defined(NID_aes_192_cfb128) && ! defined (NID_aes_192_cfb) | ||
634 | #define NID_aes_192_cfb NID_aes_192_cfb128 | ||
635 | #endif | ||
636 | |||
637 | #if defined(NID_aes_192_ofb128) && ! defined (NID_aes_192_ofb) | ||
638 | #define NID_aes_192_ofb NID_aes_192_ofb128 | ||
639 | #endif | ||
640 | |||
641 | #if defined(NID_aes_256_cfb128) && ! defined (NID_aes_256_cfb) | ||
642 | #define NID_aes_256_cfb NID_aes_256_cfb128 | ||
643 | #endif | ||
644 | |||
645 | #if defined(NID_aes_256_ofb128) && ! defined (NID_aes_256_ofb) | ||
646 | #define NID_aes_256_ofb NID_aes_256_ofb128 | ||
647 | #endif | ||
648 | |||
649 | /* List of supported ciphers. */ | ||
650 | static int padlock_cipher_nids[] = { | ||
651 | NID_aes_128_ecb, | ||
652 | NID_aes_128_cbc, | ||
653 | NID_aes_128_cfb, | ||
654 | NID_aes_128_ofb, | ||
655 | |||
656 | NID_aes_192_ecb, | ||
657 | NID_aes_192_cbc, | ||
658 | NID_aes_192_cfb, | ||
659 | NID_aes_192_ofb, | ||
660 | |||
661 | NID_aes_256_ecb, | ||
662 | NID_aes_256_cbc, | ||
663 | NID_aes_256_cfb, | ||
664 | NID_aes_256_ofb, | ||
665 | }; | ||
666 | static int padlock_cipher_nids_num = (sizeof(padlock_cipher_nids)/ | ||
667 | sizeof(padlock_cipher_nids[0])); | ||
668 | |||
669 | /* Function prototypes ... */ | ||
670 | static int padlock_aes_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, | ||
671 | const unsigned char *iv, int enc); | ||
672 | static int padlock_aes_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, | ||
673 | const unsigned char *in, size_t nbytes); | ||
674 | |||
675 | #define NEAREST_ALIGNED(ptr) ( (unsigned char *)(ptr) + \ | ||
676 | ( (0x10 - ((size_t)(ptr) & 0x0F)) & 0x0F ) ) | ||
677 | #define ALIGNED_CIPHER_DATA(ctx) ((struct padlock_cipher_data *)\ | ||
678 | NEAREST_ALIGNED(ctx->cipher_data)) | ||
679 | |||
680 | #define EVP_CIPHER_block_size_ECB AES_BLOCK_SIZE | ||
681 | #define EVP_CIPHER_block_size_CBC AES_BLOCK_SIZE | ||
682 | #define EVP_CIPHER_block_size_OFB 1 | ||
683 | #define EVP_CIPHER_block_size_CFB 1 | ||
684 | |||
685 | /* Declaring so many ciphers by hand would be a pain. | ||
686 | Instead introduce a bit of preprocessor magic :-) */ | ||
687 | #define DECLARE_AES_EVP(ksize,lmode,umode) \ | ||
688 | static const EVP_CIPHER padlock_aes_##ksize##_##lmode = { \ | ||
689 | NID_aes_##ksize##_##lmode, \ | ||
690 | EVP_CIPHER_block_size_##umode, \ | ||
691 | AES_KEY_SIZE_##ksize, \ | ||
692 | AES_BLOCK_SIZE, \ | ||
693 | 0 | EVP_CIPH_##umode##_MODE, \ | ||
694 | padlock_aes_init_key, \ | ||
695 | padlock_aes_cipher, \ | ||
696 | NULL, \ | ||
697 | sizeof(struct padlock_cipher_data) + 16, \ | ||
698 | EVP_CIPHER_set_asn1_iv, \ | ||
699 | EVP_CIPHER_get_asn1_iv, \ | ||
700 | NULL, \ | ||
701 | NULL \ | ||
702 | } | ||
703 | |||
704 | DECLARE_AES_EVP(128,ecb,ECB); | ||
705 | DECLARE_AES_EVP(128,cbc,CBC); | ||
706 | DECLARE_AES_EVP(128,cfb,CFB); | ||
707 | DECLARE_AES_EVP(128,ofb,OFB); | ||
708 | |||
709 | DECLARE_AES_EVP(192,ecb,ECB); | ||
710 | DECLARE_AES_EVP(192,cbc,CBC); | ||
711 | DECLARE_AES_EVP(192,cfb,CFB); | ||
712 | DECLARE_AES_EVP(192,ofb,OFB); | ||
713 | |||
714 | DECLARE_AES_EVP(256,ecb,ECB); | ||
715 | DECLARE_AES_EVP(256,cbc,CBC); | ||
716 | DECLARE_AES_EVP(256,cfb,CFB); | ||
717 | DECLARE_AES_EVP(256,ofb,OFB); | ||
718 | |||
719 | static int | ||
720 | padlock_ciphers (ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid) | ||
721 | { | ||
722 | /* No specific cipher => return a list of supported nids ... */ | ||
723 | if (!cipher) { | ||
724 | *nids = padlock_cipher_nids; | ||
725 | return padlock_cipher_nids_num; | ||
726 | } | ||
727 | |||
728 | /* ... or the requested "cipher" otherwise */ | ||
729 | switch (nid) { | ||
730 | case NID_aes_128_ecb: | ||
731 | *cipher = &padlock_aes_128_ecb; | ||
732 | break; | ||
733 | case NID_aes_128_cbc: | ||
734 | *cipher = &padlock_aes_128_cbc; | ||
735 | break; | ||
736 | case NID_aes_128_cfb: | ||
737 | *cipher = &padlock_aes_128_cfb; | ||
738 | break; | ||
739 | case NID_aes_128_ofb: | ||
740 | *cipher = &padlock_aes_128_ofb; | ||
741 | break; | ||
742 | |||
743 | case NID_aes_192_ecb: | ||
744 | *cipher = &padlock_aes_192_ecb; | ||
745 | break; | ||
746 | case NID_aes_192_cbc: | ||
747 | *cipher = &padlock_aes_192_cbc; | ||
748 | break; | ||
749 | case NID_aes_192_cfb: | ||
750 | *cipher = &padlock_aes_192_cfb; | ||
751 | break; | ||
752 | case NID_aes_192_ofb: | ||
753 | *cipher = &padlock_aes_192_ofb; | ||
754 | break; | ||
755 | |||
756 | case NID_aes_256_ecb: | ||
757 | *cipher = &padlock_aes_256_ecb; | ||
758 | break; | ||
759 | case NID_aes_256_cbc: | ||
760 | *cipher = &padlock_aes_256_cbc; | ||
761 | break; | ||
762 | case NID_aes_256_cfb: | ||
763 | *cipher = &padlock_aes_256_cfb; | ||
764 | break; | ||
765 | case NID_aes_256_ofb: | ||
766 | *cipher = &padlock_aes_256_ofb; | ||
767 | break; | ||
768 | |||
769 | default: | ||
770 | /* Sorry, we don't support this NID */ | ||
771 | *cipher = NULL; | ||
772 | return 0; | ||
773 | } | ||
774 | |||
775 | return 1; | ||
776 | } | ||
777 | |||
778 | /* Prepare the encryption key for PadLock usage */ | ||
779 | static int | ||
780 | padlock_aes_init_key (EVP_CIPHER_CTX *ctx, const unsigned char *key, | ||
781 | const unsigned char *iv, int enc) | ||
782 | { | ||
783 | struct padlock_cipher_data *cdata; | ||
784 | int key_len = EVP_CIPHER_CTX_key_length(ctx) * 8; | ||
785 | |||
786 | if (key==NULL) return 0; /* ERROR */ | ||
787 | |||
788 | cdata = ALIGNED_CIPHER_DATA(ctx); | ||
789 | memset(cdata, 0, sizeof(struct padlock_cipher_data)); | ||
790 | |||
791 | /* Prepare Control word. */ | ||
792 | if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_OFB_MODE) | ||
793 | cdata->cword.b.encdec = 0; | ||
794 | else | ||
795 | cdata->cword.b.encdec = (ctx->encrypt == 0); | ||
796 | cdata->cword.b.rounds = 10 + (key_len - 128) / 32; | ||
797 | cdata->cword.b.ksize = (key_len - 128) / 64; | ||
798 | |||
799 | switch(key_len) { | ||
800 | case 128: | ||
801 | /* PadLock can generate an extended key for | ||
802 | AES128 in hardware */ | ||
803 | memcpy(cdata->ks.rd_key, key, AES_KEY_SIZE_128); | ||
804 | cdata->cword.b.keygen = 0; | ||
805 | break; | ||
806 | |||
807 | case 192: | ||
808 | case 256: | ||
809 | /* Generate an extended AES key in software. | ||
810 | Needed for AES192/AES256 */ | ||
811 | /* Well, the above applies to Stepping 8 CPUs | ||
812 | and is listed as hardware errata. They most | ||
813 | likely will fix it at some point and then | ||
814 | a check for stepping would be due here. */ | ||
815 | if (EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_CFB_MODE || | ||
816 | EVP_CIPHER_CTX_mode(ctx) == EVP_CIPH_OFB_MODE || | ||
817 | enc) | ||
818 | AES_set_encrypt_key(key, key_len, &cdata->ks); | ||
819 | else | ||
820 | AES_set_decrypt_key(key, key_len, &cdata->ks); | ||
821 | #ifndef AES_ASM | ||
822 | /* OpenSSL C functions use byte-swapped extended key. */ | ||
823 | padlock_bswapl(&cdata->ks); | ||
824 | #endif | ||
825 | cdata->cword.b.keygen = 1; | ||
826 | break; | ||
827 | |||
828 | default: | ||
829 | /* ERROR */ | ||
830 | return 0; | ||
831 | } | ||
832 | |||
833 | /* | ||
834 | * This is done to cover for cases when user reuses the | ||
835 | * context for new key. The catch is that if we don't do | ||
836 | * this, padlock_eas_cipher might proceed with old key... | ||
837 | */ | ||
838 | padlock_reload_key (); | ||
839 | |||
840 | return 1; | ||
841 | } | ||
842 | |||
843 | /* | ||
844 | * Simplified version of padlock_aes_cipher() used when | ||
845 | * 1) both input and output buffers are at aligned addresses. | ||
846 | * or when | ||
847 | * 2) running on a newer CPU that doesn't require aligned buffers. | ||
848 | */ | ||
849 | static int | ||
850 | padlock_aes_cipher_omnivorous(EVP_CIPHER_CTX *ctx, unsigned char *out_arg, | ||
851 | const unsigned char *in_arg, size_t nbytes) | ||
852 | { | ||
853 | struct padlock_cipher_data *cdata; | ||
854 | void *iv; | ||
855 | |||
856 | cdata = ALIGNED_CIPHER_DATA(ctx); | ||
857 | padlock_verify_context(cdata); | ||
858 | |||
859 | switch (EVP_CIPHER_CTX_mode(ctx)) { | ||
860 | case EVP_CIPH_ECB_MODE: | ||
861 | padlock_xcrypt_ecb(nbytes/AES_BLOCK_SIZE, cdata, out_arg, in_arg); | ||
862 | break; | ||
863 | |||
864 | case EVP_CIPH_CBC_MODE: | ||
865 | memcpy(cdata->iv, ctx->iv, AES_BLOCK_SIZE); | ||
866 | iv = padlock_xcrypt_cbc(nbytes/AES_BLOCK_SIZE, cdata, out_arg, in_arg); | ||
867 | memcpy(ctx->iv, iv, AES_BLOCK_SIZE); | ||
868 | break; | ||
869 | |||
870 | case EVP_CIPH_CFB_MODE: | ||
871 | memcpy(cdata->iv, ctx->iv, AES_BLOCK_SIZE); | ||
872 | iv = padlock_xcrypt_cfb(nbytes/AES_BLOCK_SIZE, cdata, out_arg, in_arg); | ||
873 | memcpy(ctx->iv, iv, AES_BLOCK_SIZE); | ||
874 | break; | ||
875 | |||
876 | case EVP_CIPH_OFB_MODE: | ||
877 | memcpy(cdata->iv, ctx->iv, AES_BLOCK_SIZE); | ||
878 | padlock_xcrypt_ofb(nbytes/AES_BLOCK_SIZE, cdata, out_arg, in_arg); | ||
879 | memcpy(ctx->iv, cdata->iv, AES_BLOCK_SIZE); | ||
880 | break; | ||
881 | |||
882 | default: | ||
883 | return 0; | ||
884 | } | ||
885 | |||
886 | memset(cdata->iv, 0, AES_BLOCK_SIZE); | ||
887 | |||
888 | return 1; | ||
889 | } | ||
890 | |||
891 | #ifndef PADLOCK_CHUNK | ||
892 | # define PADLOCK_CHUNK 512 /* Must be a power of 2 larger than 16 */ | ||
893 | #endif | ||
894 | #if PADLOCK_CHUNK<16 || PADLOCK_CHUNK&(PADLOCK_CHUNK-1) | ||
895 | # error "insane PADLOCK_CHUNK..." | ||
896 | #endif | ||
897 | |||
898 | /* Re-align the arguments to 16-Bytes boundaries and run the | ||
899 | encryption function itself. This function is not AES-specific. */ | ||
900 | static int | ||
901 | padlock_aes_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out_arg, | ||
902 | const unsigned char *in_arg, size_t nbytes) | ||
903 | { | ||
904 | struct padlock_cipher_data *cdata; | ||
905 | const void *inp; | ||
906 | unsigned char *out; | ||
907 | void *iv; | ||
908 | int inp_misaligned, out_misaligned, realign_in_loop; | ||
909 | size_t chunk, allocated=0; | ||
910 | |||
911 | /* ctx->num is maintained in byte-oriented modes, | ||
912 | such as CFB and OFB... */ | ||
913 | if ((chunk = ctx->num)) { /* borrow chunk variable */ | ||
914 | unsigned char *ivp=ctx->iv; | ||
915 | |||
916 | switch (EVP_CIPHER_CTX_mode(ctx)) { | ||
917 | case EVP_CIPH_CFB_MODE: | ||
918 | if (chunk >= AES_BLOCK_SIZE) | ||
919 | return 0; /* bogus value */ | ||
920 | |||
921 | if (ctx->encrypt) | ||
922 | while (chunk<AES_BLOCK_SIZE && nbytes!=0) { | ||
923 | ivp[chunk] = *(out_arg++) = *(in_arg++) ^ ivp[chunk]; | ||
924 | chunk++, nbytes--; | ||
925 | } | ||
926 | else while (chunk<AES_BLOCK_SIZE && nbytes!=0) { | ||
927 | unsigned char c = *(in_arg++); | ||
928 | *(out_arg++) = c ^ ivp[chunk]; | ||
929 | ivp[chunk++] = c, nbytes--; | ||
930 | } | ||
931 | |||
932 | ctx->num = chunk%AES_BLOCK_SIZE; | ||
933 | break; | ||
934 | case EVP_CIPH_OFB_MODE: | ||
935 | if (chunk >= AES_BLOCK_SIZE) | ||
936 | return 0; /* bogus value */ | ||
937 | |||
938 | while (chunk<AES_BLOCK_SIZE && nbytes!=0) { | ||
939 | *(out_arg++) = *(in_arg++) ^ ivp[chunk]; | ||
940 | chunk++, nbytes--; | ||
941 | } | ||
942 | |||
943 | ctx->num = chunk%AES_BLOCK_SIZE; | ||
944 | break; | ||
945 | } | ||
946 | } | ||
947 | |||
948 | if (nbytes == 0) | ||
949 | return 1; | ||
950 | #if 0 | ||
951 | if (nbytes % AES_BLOCK_SIZE) | ||
952 | return 0; /* are we expected to do tail processing? */ | ||
953 | #else | ||
954 | /* nbytes is always multiple of AES_BLOCK_SIZE in ECB and CBC | ||
955 | modes and arbitrary value in byte-oriented modes, such as | ||
956 | CFB and OFB... */ | ||
957 | #endif | ||
958 | |||
959 | /* VIA promises CPUs that won't require alignment in the future. | ||
960 | For now padlock_aes_align_required is initialized to 1 and | ||
961 | the condition is never met... */ | ||
962 | /* C7 core is capable to manage unaligned input in non-ECB[!] | ||
963 | mode, but performance penalties appear to be approximately | ||
964 | same as for software alignment below or ~3x. They promise to | ||
965 | improve it in the future, but for now we can just as well | ||
966 | pretend that it can only handle aligned input... */ | ||
967 | if (!padlock_aes_align_required && (nbytes%AES_BLOCK_SIZE)==0) | ||
968 | return padlock_aes_cipher_omnivorous(ctx, out_arg, in_arg, nbytes); | ||
969 | |||
970 | inp_misaligned = (((size_t)in_arg) & 0x0F); | ||
971 | out_misaligned = (((size_t)out_arg) & 0x0F); | ||
972 | |||
973 | /* Note that even if output is aligned and input not, | ||
974 | * I still prefer to loop instead of copy the whole | ||
975 | * input and then encrypt in one stroke. This is done | ||
976 | * in order to improve L1 cache utilization... */ | ||
977 | realign_in_loop = out_misaligned|inp_misaligned; | ||
978 | |||
979 | if (!realign_in_loop && (nbytes%AES_BLOCK_SIZE)==0) | ||
980 | return padlock_aes_cipher_omnivorous(ctx, out_arg, in_arg, nbytes); | ||
981 | |||
982 | /* this takes one "if" out of the loops */ | ||
983 | chunk = nbytes; | ||
984 | chunk %= PADLOCK_CHUNK; | ||
985 | if (chunk==0) chunk = PADLOCK_CHUNK; | ||
986 | |||
987 | if (out_misaligned) { | ||
988 | /* optmize for small input */ | ||
989 | allocated = (chunk<nbytes?PADLOCK_CHUNK:nbytes); | ||
990 | out = alloca(0x10 + allocated); | ||
991 | out = NEAREST_ALIGNED(out); | ||
992 | } | ||
993 | else | ||
994 | out = out_arg; | ||
995 | |||
996 | cdata = ALIGNED_CIPHER_DATA(ctx); | ||
997 | padlock_verify_context(cdata); | ||
998 | |||
999 | switch (EVP_CIPHER_CTX_mode(ctx)) { | ||
1000 | case EVP_CIPH_ECB_MODE: | ||
1001 | do { | ||
1002 | if (inp_misaligned) | ||
1003 | inp = padlock_memcpy(out, in_arg, chunk); | ||
1004 | else | ||
1005 | inp = in_arg; | ||
1006 | in_arg += chunk; | ||
1007 | |||
1008 | padlock_xcrypt_ecb(chunk/AES_BLOCK_SIZE, cdata, out, inp); | ||
1009 | |||
1010 | if (out_misaligned) | ||
1011 | out_arg = padlock_memcpy(out_arg, out, chunk) + chunk; | ||
1012 | else | ||
1013 | out = out_arg+=chunk; | ||
1014 | |||
1015 | nbytes -= chunk; | ||
1016 | chunk = PADLOCK_CHUNK; | ||
1017 | } while (nbytes); | ||
1018 | break; | ||
1019 | |||
1020 | case EVP_CIPH_CBC_MODE: | ||
1021 | memcpy(cdata->iv, ctx->iv, AES_BLOCK_SIZE); | ||
1022 | goto cbc_shortcut; | ||
1023 | do { | ||
1024 | if (iv != cdata->iv) | ||
1025 | memcpy(cdata->iv, iv, AES_BLOCK_SIZE); | ||
1026 | chunk = PADLOCK_CHUNK; | ||
1027 | cbc_shortcut: /* optimize for small input */ | ||
1028 | if (inp_misaligned) | ||
1029 | inp = padlock_memcpy(out, in_arg, chunk); | ||
1030 | else | ||
1031 | inp = in_arg; | ||
1032 | in_arg += chunk; | ||
1033 | |||
1034 | iv = padlock_xcrypt_cbc(chunk/AES_BLOCK_SIZE, cdata, out, inp); | ||
1035 | |||
1036 | if (out_misaligned) | ||
1037 | out_arg = padlock_memcpy(out_arg, out, chunk) + chunk; | ||
1038 | else | ||
1039 | out = out_arg+=chunk; | ||
1040 | |||
1041 | } while (nbytes -= chunk); | ||
1042 | memcpy(ctx->iv, iv, AES_BLOCK_SIZE); | ||
1043 | break; | ||
1044 | |||
1045 | case EVP_CIPH_CFB_MODE: | ||
1046 | memcpy (iv = cdata->iv, ctx->iv, AES_BLOCK_SIZE); | ||
1047 | chunk &= ~(AES_BLOCK_SIZE-1); | ||
1048 | if (chunk) goto cfb_shortcut; | ||
1049 | else goto cfb_skiploop; | ||
1050 | do { | ||
1051 | if (iv != cdata->iv) | ||
1052 | memcpy(cdata->iv, iv, AES_BLOCK_SIZE); | ||
1053 | chunk = PADLOCK_CHUNK; | ||
1054 | cfb_shortcut: /* optimize for small input */ | ||
1055 | if (inp_misaligned) | ||
1056 | inp = padlock_memcpy(out, in_arg, chunk); | ||
1057 | else | ||
1058 | inp = in_arg; | ||
1059 | in_arg += chunk; | ||
1060 | |||
1061 | iv = padlock_xcrypt_cfb(chunk/AES_BLOCK_SIZE, cdata, out, inp); | ||
1062 | |||
1063 | if (out_misaligned) | ||
1064 | out_arg = padlock_memcpy(out_arg, out, chunk) + chunk; | ||
1065 | else | ||
1066 | out = out_arg+=chunk; | ||
1067 | |||
1068 | nbytes -= chunk; | ||
1069 | } while (nbytes >= AES_BLOCK_SIZE); | ||
1070 | |||
1071 | cfb_skiploop: | ||
1072 | if (nbytes) { | ||
1073 | unsigned char *ivp = cdata->iv; | ||
1074 | |||
1075 | if (iv != ivp) { | ||
1076 | memcpy(ivp, iv, AES_BLOCK_SIZE); | ||
1077 | iv = ivp; | ||
1078 | } | ||
1079 | ctx->num = nbytes; | ||
1080 | if (cdata->cword.b.encdec) { | ||
1081 | cdata->cword.b.encdec=0; | ||
1082 | padlock_reload_key(); | ||
1083 | padlock_xcrypt_ecb(1,cdata,ivp,ivp); | ||
1084 | cdata->cword.b.encdec=1; | ||
1085 | padlock_reload_key(); | ||
1086 | while(nbytes) { | ||
1087 | unsigned char c = *(in_arg++); | ||
1088 | *(out_arg++) = c ^ *ivp; | ||
1089 | *(ivp++) = c, nbytes--; | ||
1090 | } | ||
1091 | } | ||
1092 | else { padlock_reload_key(); | ||
1093 | padlock_xcrypt_ecb(1,cdata,ivp,ivp); | ||
1094 | padlock_reload_key(); | ||
1095 | while (nbytes) { | ||
1096 | *ivp = *(out_arg++) = *(in_arg++) ^ *ivp; | ||
1097 | ivp++, nbytes--; | ||
1098 | } | ||
1099 | } | ||
1100 | } | ||
1101 | |||
1102 | memcpy(ctx->iv, iv, AES_BLOCK_SIZE); | ||
1103 | break; | ||
1104 | |||
1105 | case EVP_CIPH_OFB_MODE: | ||
1106 | memcpy(cdata->iv, ctx->iv, AES_BLOCK_SIZE); | ||
1107 | chunk &= ~(AES_BLOCK_SIZE-1); | ||
1108 | if (chunk) do { | ||
1109 | if (inp_misaligned) | ||
1110 | inp = padlock_memcpy(out, in_arg, chunk); | ||
1111 | else | ||
1112 | inp = in_arg; | ||
1113 | in_arg += chunk; | ||
1114 | |||
1115 | padlock_xcrypt_ofb(chunk/AES_BLOCK_SIZE, cdata, out, inp); | ||
1116 | |||
1117 | if (out_misaligned) | ||
1118 | out_arg = padlock_memcpy(out_arg, out, chunk) + chunk; | ||
1119 | else | ||
1120 | out = out_arg+=chunk; | ||
1121 | |||
1122 | nbytes -= chunk; | ||
1123 | chunk = PADLOCK_CHUNK; | ||
1124 | } while (nbytes >= AES_BLOCK_SIZE); | ||
1125 | |||
1126 | if (nbytes) { | ||
1127 | unsigned char *ivp = cdata->iv; | ||
1128 | |||
1129 | ctx->num = nbytes; | ||
1130 | padlock_reload_key(); /* empirically found */ | ||
1131 | padlock_xcrypt_ecb(1,cdata,ivp,ivp); | ||
1132 | padlock_reload_key(); /* empirically found */ | ||
1133 | while (nbytes) { | ||
1134 | *(out_arg++) = *(in_arg++) ^ *ivp; | ||
1135 | ivp++, nbytes--; | ||
1136 | } | ||
1137 | } | ||
1138 | |||
1139 | memcpy(ctx->iv, cdata->iv, AES_BLOCK_SIZE); | ||
1140 | break; | ||
1141 | |||
1142 | default: | ||
1143 | return 0; | ||
1144 | } | ||
1145 | |||
1146 | /* Clean the realign buffer if it was used */ | ||
1147 | if (out_misaligned) { | ||
1148 | volatile unsigned long *p=(void *)out; | ||
1149 | size_t n = allocated/sizeof(*p); | ||
1150 | while (n--) *p++=0; | ||
1151 | } | ||
1152 | |||
1153 | memset(cdata->iv, 0, AES_BLOCK_SIZE); | ||
1154 | |||
1155 | return 1; | ||
1156 | } | ||
1157 | |||
1158 | #endif /* OPENSSL_NO_AES */ | ||
1159 | |||
1160 | /* ===== Random Number Generator ===== */ | ||
1161 | /* | ||
1162 | * This code is not engaged. The reason is that it does not comply | ||
1163 | * with recommendations for VIA RNG usage for secure applications | ||
1164 | * (posted at http://www.via.com.tw/en/viac3/c3.jsp) nor does it | ||
1165 | * provide meaningful error control... | ||
1166 | */ | ||
1167 | /* Wrapper that provides an interface between the API and | ||
1168 | the raw PadLock RNG */ | ||
1169 | static int | ||
1170 | padlock_rand_bytes(unsigned char *output, int count) | ||
1171 | { | ||
1172 | unsigned int eax, buf; | ||
1173 | |||
1174 | while (count >= 8) { | ||
1175 | eax = padlock_xstore(output, 0); | ||
1176 | if (!(eax&(1<<6))) return 0; /* RNG disabled */ | ||
1177 | /* this ---vv--- covers DC bias, Raw Bits and String Filter */ | ||
1178 | if (eax&(0x1F<<10)) return 0; | ||
1179 | if ((eax&0x1F)==0) continue; /* no data, retry... */ | ||
1180 | if ((eax&0x1F)!=8) return 0; /* fatal failure... */ | ||
1181 | output += 8; | ||
1182 | count -= 8; | ||
1183 | } | ||
1184 | while (count > 0) { | ||
1185 | eax = padlock_xstore(&buf, 3); | ||
1186 | if (!(eax&(1<<6))) return 0; /* RNG disabled */ | ||
1187 | /* this ---vv--- covers DC bias, Raw Bits and String Filter */ | ||
1188 | if (eax&(0x1F<<10)) return 0; | ||
1189 | if ((eax&0x1F)==0) continue; /* no data, retry... */ | ||
1190 | if ((eax&0x1F)!=1) return 0; /* fatal failure... */ | ||
1191 | *output++ = (unsigned char)buf; | ||
1192 | count--; | ||
1193 | } | ||
1194 | *(volatile unsigned int *)&buf=0; | ||
1195 | |||
1196 | return 1; | ||
1197 | } | ||
1198 | |||
1199 | /* Dummy but necessary function */ | ||
1200 | static int | ||
1201 | padlock_rand_status(void) | ||
1202 | { | ||
1203 | return 1; | ||
1204 | } | ||
1205 | |||
1206 | /* Prepare structure for registration */ | ||
1207 | static RAND_METHOD padlock_rand = { | ||
1208 | NULL, /* seed */ | ||
1209 | padlock_rand_bytes, /* bytes */ | ||
1210 | NULL, /* cleanup */ | ||
1211 | NULL, /* add */ | ||
1212 | padlock_rand_bytes, /* pseudorand */ | ||
1213 | padlock_rand_status, /* rand status */ | ||
1214 | }; | ||
1215 | |||
1216 | #endif /* COMPILE_HW_PADLOCK */ | ||
1217 | |||
1218 | #endif /* !OPENSSL_NO_HW_PADLOCK */ | ||
1219 | #endif /* !OPENSSL_NO_HW */ | ||
diff --git a/src/lib/libssl/src/crypto/err/Makefile b/src/lib/libssl/src/crypto/err/Makefile index 4adec55302..23e38409c8 100644 --- a/src/lib/libssl/src/crypto/err/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/evp/Makefile b/src/lib/libssl/src/crypto/evp/Makefile index d1c2a272bb..8f2555c7e5 100644 --- a/src/lib/libssl/src/crypto/evp/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/evp/e_old.c b/src/lib/libssl/src/crypto/evp/e_old.c index 92dc498945..1642af4869 100644 --- a/src/lib/libssl/src/crypto/evp/e_old.c +++ b/src/lib/libssl/src/crypto/evp/e_old.c | |||
@@ -56,6 +56,10 @@ | |||
56 | * | 56 | * |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #ifdef OPENSSL_NO_DEPRECATED | ||
60 | static void *dummy = &dummy; | ||
61 | #else | ||
62 | |||
59 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
60 | 64 | ||
61 | /* Define some deprecated functions, so older programs | 65 | /* Define some deprecated functions, so older programs |
@@ -66,43 +70,56 @@ | |||
66 | 70 | ||
67 | #ifndef OPENSSL_NO_BF | 71 | #ifndef OPENSSL_NO_BF |
68 | #undef EVP_bf_cfb | 72 | #undef EVP_bf_cfb |
73 | const EVP_CIPHER *EVP_bf_cfb(void); | ||
69 | const EVP_CIPHER *EVP_bf_cfb(void) { return EVP_bf_cfb64(); } | 74 | const EVP_CIPHER *EVP_bf_cfb(void) { return EVP_bf_cfb64(); } |
70 | #endif | 75 | #endif |
71 | 76 | ||
72 | #ifndef OPENSSL_NO_DES | 77 | #ifndef OPENSSL_NO_DES |
73 | #undef EVP_des_cfb | 78 | #undef EVP_des_cfb |
79 | const EVP_CIPHER *EVP_des_cfb(void); | ||
74 | const EVP_CIPHER *EVP_des_cfb(void) { return EVP_des_cfb64(); } | 80 | const EVP_CIPHER *EVP_des_cfb(void) { return EVP_des_cfb64(); } |
75 | #undef EVP_des_ede3_cfb | 81 | #undef EVP_des_ede3_cfb |
82 | const EVP_CIPHER *EVP_des_ede3_cfb(void); | ||
76 | const EVP_CIPHER *EVP_des_ede3_cfb(void) { return EVP_des_ede3_cfb64(); } | 83 | const EVP_CIPHER *EVP_des_ede3_cfb(void) { return EVP_des_ede3_cfb64(); } |
77 | #undef EVP_des_ede_cfb | 84 | #undef EVP_des_ede_cfb |
85 | const EVP_CIPHER *EVP_des_ede_cfb(void); | ||
78 | const EVP_CIPHER *EVP_des_ede_cfb(void) { return EVP_des_ede_cfb64(); } | 86 | const EVP_CIPHER *EVP_des_ede_cfb(void) { return EVP_des_ede_cfb64(); } |
79 | #endif | 87 | #endif |
80 | 88 | ||
81 | #ifndef OPENSSL_NO_IDEA | 89 | #ifndef OPENSSL_NO_IDEA |
82 | #undef EVP_idea_cfb | 90 | #undef EVP_idea_cfb |
91 | const EVP_CIPHER *EVP_idea_cfb(void); | ||
83 | const EVP_CIPHER *EVP_idea_cfb(void) { return EVP_idea_cfb64(); } | 92 | const EVP_CIPHER *EVP_idea_cfb(void) { return EVP_idea_cfb64(); } |
84 | #endif | 93 | #endif |
85 | 94 | ||
86 | #ifndef OPENSSL_NO_RC2 | 95 | #ifndef OPENSSL_NO_RC2 |
87 | #undef EVP_rc2_cfb | 96 | #undef EVP_rc2_cfb |
97 | const EVP_CIPHER *EVP_rc2_cfb(void); | ||
88 | const EVP_CIPHER *EVP_rc2_cfb(void) { return EVP_rc2_cfb64(); } | 98 | const EVP_CIPHER *EVP_rc2_cfb(void) { return EVP_rc2_cfb64(); } |
89 | #endif | 99 | #endif |
90 | 100 | ||
91 | #ifndef OPENSSL_NO_CAST | 101 | #ifndef OPENSSL_NO_CAST |
92 | #undef EVP_cast5_cfb | 102 | #undef EVP_cast5_cfb |
103 | const EVP_CIPHER *EVP_cast5_cfb(void); | ||
93 | const EVP_CIPHER *EVP_cast5_cfb(void) { return EVP_cast5_cfb64(); } | 104 | const EVP_CIPHER *EVP_cast5_cfb(void) { return EVP_cast5_cfb64(); } |
94 | #endif | 105 | #endif |
95 | 106 | ||
96 | #ifndef OPENSSL_NO_RC5 | 107 | #ifndef OPENSSL_NO_RC5 |
97 | #undef EVP_rc5_32_12_16_cfb | 108 | #undef EVP_rc5_32_12_16_cfb |
109 | const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void); | ||
98 | const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void) { return EVP_rc5_32_12_16_cfb64(); } | 110 | const EVP_CIPHER *EVP_rc5_32_12_16_cfb(void) { return EVP_rc5_32_12_16_cfb64(); } |
99 | #endif | 111 | #endif |
100 | 112 | ||
101 | #ifndef OPENSSL_NO_AES | 113 | #ifndef OPENSSL_NO_AES |
102 | #undef EVP_aes_128_cfb | 114 | #undef EVP_aes_128_cfb |
115 | const EVP_CIPHER *EVP_aes_128_cfb(void); | ||
103 | const EVP_CIPHER *EVP_aes_128_cfb(void) { return EVP_aes_128_cfb128(); } | 116 | const EVP_CIPHER *EVP_aes_128_cfb(void) { return EVP_aes_128_cfb128(); } |
104 | #undef EVP_aes_192_cfb | 117 | #undef EVP_aes_192_cfb |
118 | const EVP_CIPHER *EVP_aes_192_cfb(void); | ||
105 | const EVP_CIPHER *EVP_aes_192_cfb(void) { return EVP_aes_192_cfb128(); } | 119 | const EVP_CIPHER *EVP_aes_192_cfb(void) { return EVP_aes_192_cfb128(); } |
106 | #undef EVP_aes_256_cfb | 120 | #undef EVP_aes_256_cfb |
121 | const EVP_CIPHER *EVP_aes_256_cfb(void); | ||
107 | const EVP_CIPHER *EVP_aes_256_cfb(void) { return EVP_aes_256_cfb128(); } | 122 | const EVP_CIPHER *EVP_aes_256_cfb(void) { return EVP_aes_256_cfb128(); } |
108 | #endif | 123 | #endif |
124 | |||
125 | #endif | ||
diff --git a/src/lib/libssl/src/crypto/hmac/Makefile b/src/lib/libssl/src/crypto/hmac/Makefile index 3d53d8240f..01f10c396f 100644 --- a/src/lib/libssl/src/crypto/hmac/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/idea/Makefile b/src/lib/libssl/src/crypto/idea/Makefile index 6b8e530d9d..b2e7add666 100644 --- a/src/lib/libssl/src/crypto/idea/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/idea/ideatest.c b/src/lib/libssl/src/crypto/idea/ideatest.c index 98f805d72a..e6ffc7025e 100644 --- a/src/lib/libssl/src/crypto/idea/ideatest.c +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/krb5/Makefile b/src/lib/libssl/src/crypto/krb5/Makefile index 25cc695e8d..14077390d6 100644 --- a/src/lib/libssl/src/crypto/krb5/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/lhash/Makefile b/src/lib/libssl/src/crypto/lhash/Makefile index cdb0e77fad..82bddac474 100644 --- a/src/lib/libssl/src/crypto/lhash/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/md2/Makefile b/src/lib/libssl/src/crypto/md2/Makefile index 9d0351bb2f..17f878aeb7 100644 --- a/src/lib/libssl/src/crypto/md2/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/md4/Makefile b/src/lib/libssl/src/crypto/md4/Makefile index eeb457f20f..ef97bb0cbe 100644 --- a/src/lib/libssl/src/crypto/md4/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/md5/Makefile b/src/lib/libssl/src/crypto/md5/Makefile index 1ed018526f..ceb00e8956 100644 --- a/src/lib/libssl/src/crypto/md5/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/mdc2/mdc2test.c b/src/lib/libssl/src/crypto/mdc2/mdc2test.c index c9abe99d92..017b31add2 100644 --- a/src/lib/libssl/src/crypto/mdc2/mdc2test.c +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/mem_clr.c b/src/lib/libssl/src/crypto/mem_clr.c index e4b7f540b0..add1f78020 100644 --- a/src/lib/libssl/src/crypto/mem_clr.c +++ b/src/lib/libssl/src/crypto/mem_clr.c | |||
@@ -64,12 +64,14 @@ unsigned char cleanse_ctr = 0; | |||
64 | void OPENSSL_cleanse(void *ptr, size_t len) | 64 | void OPENSSL_cleanse(void *ptr, size_t len) |
65 | { | 65 | { |
66 | unsigned char *p = ptr; | 66 | unsigned char *p = ptr; |
67 | size_t loop = len; | 67 | size_t loop = len, ctr = cleanse_ctr; |
68 | while(loop--) | 68 | while(loop--) |
69 | { | 69 | { |
70 | *(p++) = cleanse_ctr; | 70 | *(p++) = (unsigned char)ctr; |
71 | cleanse_ctr += (17 + (unsigned char)((int)p & 0xF)); | 71 | ctr += (17 + ((size_t)p & 0xF)); |
72 | } | 72 | } |
73 | if(memchr(ptr, cleanse_ctr, len)) | 73 | p=memchr(ptr, (unsigned char)ctr, len); |
74 | cleanse_ctr += 63; | 74 | if(p) |
75 | ctr += (63 + (size_t)p); | ||
76 | cleanse_ctr = (unsigned char)ctr; | ||
75 | } | 77 | } |
diff --git a/src/lib/libssl/src/crypto/o_str.c b/src/lib/libssl/src/crypto/o_str.c index da8860491d..59cc25094b 100644 --- a/src/lib/libssl/src/crypto/o_str.c +++ b/src/lib/libssl/src/crypto/o_str.c | |||
@@ -60,6 +60,10 @@ | |||
60 | #include <e_os.h> | 60 | #include <e_os.h> |
61 | #include "o_str.h" | 61 | #include "o_str.h" |
62 | 62 | ||
63 | #if !defined(OPENSSL_IMPLEMENTS_strncasecmp) && !defined(OPENSSL_SYSNAME_WIN32) | ||
64 | # include <strings.h> | ||
65 | #endif | ||
66 | |||
63 | int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) | 67 | int OPENSSL_strncasecmp(const char *str1, const char *str2, size_t n) |
64 | { | 68 | { |
65 | #if defined(OPENSSL_IMPLEMENTS_strncasecmp) | 69 | #if defined(OPENSSL_IMPLEMENTS_strncasecmp) |
@@ -94,3 +98,12 @@ int OPENSSL_strcasecmp(const char *str1, const char *str2) | |||
94 | #endif | 98 | #endif |
95 | } | 99 | } |
96 | 100 | ||
101 | int OPENSSL_memcmp(const void *v1,const void *v2,size_t n) | ||
102 | { | ||
103 | const unsigned char *c1=v1,*c2=v2; | ||
104 | int ret=0; | ||
105 | |||
106 | while(n && (ret=*c1-*c2)==0) n--,c1++,c2++; | ||
107 | |||
108 | return ret; | ||
109 | } | ||
diff --git a/src/lib/libssl/src/crypto/o_str.h b/src/lib/libssl/src/crypto/o_str.h index 4a70a9e00b..dfc98494c6 100644 --- a/src/lib/libssl/src/crypto/o_str.h +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/objects/Makefile b/src/lib/libssl/src/crypto/objects/Makefile index 23b2a69e6d..9c5615099c 100644 --- a/src/lib/libssl/src/crypto/objects/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ocsp/Makefile b/src/lib/libssl/src/crypto/ocsp/Makefile index 59f7098d9e..0fe028960e 100644 --- a/src/lib/libssl/src/crypto/ocsp/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/pem/Makefile b/src/lib/libssl/src/crypto/pem/Makefile index fbc2b5d056..742194fd24 100644 --- a/src/lib/libssl/src/crypto/pem/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/pkcs12/Makefile b/src/lib/libssl/src/crypto/pkcs12/Makefile index bef4f27912..3a7498fe7a 100644 --- a/src/lib/libssl/src/crypto/pkcs12/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/pkcs7/Makefile b/src/lib/libssl/src/crypto/pkcs7/Makefile index a213ae2227..3f7e88b40f 100644 --- a/src/lib/libssl/src/crypto/pkcs7/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/pqueue/pq_compat.h b/src/lib/libssl/src/crypto/pqueue/pq_compat.h new file mode 100644 index 0000000000..fd36578882 --- /dev/null +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rand/Makefile b/src/lib/libssl/src/crypto/rand/Makefile index b1d1a75f98..3c1ab5bbae 100644 --- a/src/lib/libssl/src/crypto/rand/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc2/Makefile b/src/lib/libssl/src/crypto/rc2/Makefile index 34080ab741..73eac347e7 100644 --- a/src/lib/libssl/src/crypto/rc2/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc4/Makefile b/src/lib/libssl/src/crypto/rc4/Makefile index 20d078ec87..187ed5c668 100644 --- a/src/lib/libssl/src/crypto/rc4/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc4/asm/rc4-ia64.S b/src/lib/libssl/src/crypto/rc4/asm/rc4-ia64.S index a322d0c718..8210c47d04 100644 --- a/src/lib/libssl/src/crypto/rc4/asm/rc4-ia64.S +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc5/Makefile b/src/lib/libssl/src/crypto/rc5/Makefile index 16e6a60017..efb0f36b59 100644 --- a/src/lib/libssl/src/crypto/rc5/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rc5/rc5_locl.h b/src/lib/libssl/src/crypto/rc5/rc5_locl.h index f4ebc23004..282dd38822 100644 --- a/src/lib/libssl/src/crypto/rc5/rc5_locl.h +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ripemd/Makefile b/src/lib/libssl/src/crypto/ripemd/Makefile index 20c8b4d8db..d55875c20c 100644 --- a/src/lib/libssl/src/crypto/ripemd/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/rsa/Makefile b/src/lib/libssl/src/crypto/rsa/Makefile index 8851825250..13900812ac 100644 --- a/src/lib/libssl/src/crypto/rsa/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/sha/Makefile b/src/lib/libssl/src/crypto/sha/Makefile index 46103bbc83..ac64fb61d3 100644 --- a/src/lib/libssl/src/crypto/sha/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/sha/asm/sha1-ia64.pl b/src/lib/libssl/src/crypto/sha/asm/sha1-ia64.pl index cb9dfad124..aa18c1089b 100644 --- a/src/lib/libssl/src/crypto/sha/asm/sha1-ia64.pl +++ b/src/lib/libssl/src/crypto/sha/asm/sha1-ia64.pl | |||
@@ -2,8 +2,9 @@ | |||
2 | # | 2 | # |
3 | # ==================================================================== | 3 | # ==================================================================== |
4 | # Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL | 4 | # Written by Andy Polyakov <appro@fy.chalmers.se> for the OpenSSL |
5 | # project. Rights for redistribution and usage in source and binary | 5 | # project. The module is, however, dual licensed under OpenSSL and |
6 | # forms are granted according to the OpenSSL license. | 6 | # CRYPTOGAMS licenses depending on where you obtain it. For further |
7 | # details see http://www.openssl.org/~appro/cryptogams/. | ||
7 | # ==================================================================== | 8 | # ==================================================================== |
8 | # | 9 | # |
9 | # Eternal question is what's wrong with compiler generated code? The | 10 | # Eternal question is what's wrong with compiler generated code? The |
@@ -11,15 +12,10 @@ | |||
11 | # to perform rotations by maintaining copy of 32-bit value in upper | 12 | # to perform rotations by maintaining copy of 32-bit value in upper |
12 | # bits of 64-bit register. Just follow mux2 and shrp instructions... | 13 | # bits of 64-bit register. Just follow mux2 and shrp instructions... |
13 | # Performance under big-endian OS such as HP-UX is 179MBps*1GHz, which | 14 | # Performance under big-endian OS such as HP-UX is 179MBps*1GHz, which |
14 | # is >50% better than HP C and >2x better than gcc. As of this moment | 15 | # is >50% better than HP C and >2x better than gcc. |
15 | # performance under little-endian OS such as Linux and Windows will be | ||
16 | # a bit lower, because data has to be picked in reverse byte-order. | ||
17 | # It's possible to resolve this issue by implementing third function, | ||
18 | # sha1_block_asm_data_order_aligned, which would temporarily flip | ||
19 | # BE field in User Mask register... | ||
20 | 16 | ||
21 | $code=<<___; | 17 | $code=<<___; |
22 | .ident \"sha1-ia64.s, version 1.0\" | 18 | .ident \"sha1-ia64.s, version 1.2\" |
23 | .ident \"IA-64 ISA artwork by Andy Polyakov <appro\@fy.chalmers.se>\" | 19 | .ident \"IA-64 ISA artwork by Andy Polyakov <appro\@fy.chalmers.se>\" |
24 | .explicit | 20 | .explicit |
25 | 21 | ||
@@ -55,63 +51,55 @@ else { | |||
55 | 51 | ||
56 | sub BODY_00_15 { | 52 | sub BODY_00_15 { |
57 | local *code=shift; | 53 | local *code=shift; |
58 | local ($i,$a,$b,$c,$d,$e,$f,$unaligned)=@_; | 54 | local ($i,$a,$b,$c,$d,$e,$f)=@_; |
59 | 55 | ||
60 | if ($unaligned) { | 56 | $code.=<<___ if ($i==0); |
61 | $code.=<<___; | 57 | { .mmi; ld1 $X[$i&0xf]=[inp],2 // MSB |
62 | { .mmi; ld1 tmp0=[inp],2 // MSB | 58 | ld1 tmp2=[tmp3],2 };; |
63 | ld1 tmp1=[tmp3],2 };; | 59 | { .mmi; ld1 tmp0=[inp],2 |
64 | { .mmi; ld1 tmp2=[inp],2 | 60 | ld1 tmp4=[tmp3],2 // LSB |
65 | ld1 $X[$i&0xf]=[tmp3],2 // LSB | 61 | dep $X[$i&0xf]=$X[$i&0xf],tmp2,8,8 };; |
66 | dep tmp1=tmp0,tmp1,8,8 };; | ||
67 | { .mii; cmp.ne p16,p0=r0,r0 // no misaligned prefetch | ||
68 | dep $X[$i&0xf]=tmp2,$X[$i&0xf],8,8;; | ||
69 | dep $X[$i&0xf]=tmp1,$X[$i&0xf],16,16 };; | ||
70 | { .mmi; nop.m 0 | ||
71 | ___ | ||
72 | } | ||
73 | elsif ($i<15) { | ||
74 | $code.=<<___; | ||
75 | { .mmi; ld4 $X[($i+1)&0xf]=[inp],4 // prefetch | ||
76 | ___ | ||
77 | } | ||
78 | else { | ||
79 | $code.=<<___; | ||
80 | { .mmi; nop.m 0 | ||
81 | ___ | 62 | ___ |
82 | } | ||
83 | if ($i<15) { | 63 | if ($i<15) { |
84 | $code.=<<___; | 64 | $code.=<<___; |
85 | and tmp0=$c,$b | 65 | { .mmi; ld1 $X[($i+1)&0xf]=[inp],2 // +1 |
86 | dep.z tmp5=$a,5,27 } // a<<5 | 66 | dep tmp1=tmp0,tmp4,8,8 };; |
67 | { .mmi; ld1 tmp2=[tmp3],2 // +1 | ||
68 | and tmp4=$c,$b | ||
69 | dep $X[$i&0xf]=$X[$i&0xf],tmp1,16,16 } //;; | ||
87 | { .mmi; andcm tmp1=$d,$b | 70 | { .mmi; andcm tmp1=$d,$b |
88 | add tmp4=$e,$K_00_19 };; | 71 | add tmp0=$e,$K_00_19 |
89 | { .mmi; or tmp0=tmp0,tmp1 // F_00_19(b,c,d)=(b&c)|(~b&d) | 72 | dep.z tmp5=$a,5,27 };; // a<<5 |
90 | add $f=tmp4,$X[$i&0xf] // f=xi+e+K_00_19 | 73 | { .mmi; or tmp4=tmp4,tmp1 // F_00_19(b,c,d)=(b&c)|(~b&d) |
74 | add $f=tmp0,$X[$i&0xf] // f=xi+e+K_00_19 | ||
91 | extr.u tmp1=$a,27,5 };; // a>>27 | 75 | extr.u tmp1=$a,27,5 };; // a>>27 |
92 | { .mib; add $f=$f,tmp0 // f+=F_00_19(b,c,d) | 76 | { .mmi; ld1 tmp0=[inp],2 // +1 |
77 | add $f=$f,tmp4 // f+=F_00_19(b,c,d) | ||
93 | shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30) | 78 | shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30) |
94 | { .mib; or tmp1=tmp1,tmp5 // ROTATE(a,5) | 79 | { .mmi; ld1 tmp4=[tmp3],2 // +1 |
80 | or tmp5=tmp1,tmp5 // ROTATE(a,5) | ||
95 | mux2 tmp6=$a,0x44 };; // see b in next iteration | 81 | mux2 tmp6=$a,0x44 };; // see b in next iteration |
96 | { .mii; add $f=$f,tmp1 // f+=ROTATE(a,5) | 82 | { .mii; add $f=$f,tmp5 // f+=ROTATE(a,5) |
97 | mux2 $X[$i&0xf]=$X[$i&0xf],0x44 | 83 | dep $X[($i+1)&0xf]=$X[($i+1)&0xf],tmp2,8,8 // +1 |
98 | nop.i 0 };; | 84 | mux2 $X[$i&0xf]=$X[$i&0xf],0x44 } //;; |
99 | 85 | ||
100 | ___ | 86 | ___ |
101 | } | 87 | } |
102 | else { | 88 | else { |
103 | $code.=<<___; | 89 | $code.=<<___; |
104 | and tmp0=$c,$b | 90 | { .mii; and tmp3=$c,$b |
105 | dep.z tmp5=$a,5,27 } // a<<5 ;;? | 91 | dep tmp1=tmp0,tmp4,8,8;; |
92 | dep $X[$i&0xf]=$X[$i&0xf],tmp1,16,16 } //;; | ||
106 | { .mmi; andcm tmp1=$d,$b | 93 | { .mmi; andcm tmp1=$d,$b |
107 | add tmp4=$e,$K_00_19 };; | 94 | add tmp0=$e,$K_00_19 |
108 | { .mmi; or tmp0=tmp0,tmp1 // F_00_19(b,c,d)=(b&c)|(~b&d) | 95 | dep.z tmp5=$a,5,27 };; // a<<5 |
109 | add $f=tmp4,$X[$i&0xf] // f=xi+e+K_00_19 | 96 | { .mmi; or tmp4=tmp3,tmp1 // F_00_19(b,c,d)=(b&c)|(~b&d) |
97 | add $f=tmp0,$X[$i&0xf] // f=xi+e+K_00_19 | ||
110 | extr.u tmp1=$a,27,5 } // a>>27 | 98 | extr.u tmp1=$a,27,5 } // a>>27 |
111 | { .mmi; xor tmp2=$X[($i+0+1)&0xf],$X[($i+2+1)&0xf] // +1 | 99 | { .mmi; xor tmp2=$X[($i+0+1)&0xf],$X[($i+2+1)&0xf] // +1 |
112 | xor tmp3=$X[($i+8+1)&0xf],$X[($i+13+1)&0xf] // +1 | 100 | xor tmp3=$X[($i+8+1)&0xf],$X[($i+13+1)&0xf] // +1 |
113 | nop.i 0 };; | 101 | nop.i 0 };; |
114 | { .mmi; add $f=$f,tmp0 // f+=F_00_19(b,c,d) | 102 | { .mmi; add $f=$f,tmp4 // f+=F_00_19(b,c,d) |
115 | xor tmp2=tmp2,tmp3 // +1 | 103 | xor tmp2=tmp2,tmp3 // +1 |
116 | shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30) | 104 | shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30) |
117 | { .mmi; or tmp1=tmp1,tmp5 // ROTATE(a,5) | 105 | { .mmi; or tmp1=tmp1,tmp5 // ROTATE(a,5) |
@@ -190,9 +178,7 @@ $code.=<<___; | |||
190 | extr.u tmp1=$a,27,5 } // a>>27 | 178 | extr.u tmp1=$a,27,5 } // a>>27 |
191 | { .mib; add $f=$f,tmp4 // f+=e+K_20_39 | 179 | { .mib; add $f=$f,tmp4 // f+=e+K_20_39 |
192 | add $h1=$h1,$a };; // wrap up | 180 | add $h1=$h1,$a };; // wrap up |
193 | { .mmi; | 181 | { .mmi; add $f=$f,tmp0 // f+=F_20_39(b,c,d) |
194 | (p16) ld4.s $X[0]=[inp],4 // non-faulting prefetch | ||
195 | add $f=$f,tmp0 // f+=F_20_39(b,c,d) | ||
196 | shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30) ;;? | 182 | shrp $b=tmp6,tmp6,2 } // b=ROTATE(b,30) ;;? |
197 | { .mmi; or tmp1=tmp1,tmp5 // ROTATE(a,5) | 183 | { .mmi; or tmp1=tmp1,tmp5 // ROTATE(a,5) |
198 | add $h3=$h3,$c };; // wrap up | 184 | add $h3=$h3,$c };; // wrap up |
@@ -245,172 +231,15 @@ tmp3=r11; | |||
245 | ctx=r32; // in0 | 231 | ctx=r32; // in0 |
246 | inp=r33; // in1 | 232 | inp=r33; // in1 |
247 | 233 | ||
248 | // void sha1_block_asm_host_order(SHA_CTX *c,const void *p,size_t num); | 234 | // void sha1_block_data_order(SHA_CTX *c,const void *p,size_t num); |
249 | .global sha1_block_asm_host_order# | 235 | .global sha1_block_data_order# |
250 | .proc sha1_block_asm_host_order# | 236 | .proc sha1_block_data_order# |
251 | .align 32 | 237 | .align 32 |
252 | sha1_block_asm_host_order: | 238 | sha1_block_data_order: |
253 | .prologue | 239 | .prologue |
254 | .fframe 0 | ||
255 | .save ar.pfs,r0 | ||
256 | .save ar.lc,r3 | ||
257 | { .mmi; alloc tmp1=ar.pfs,3,15,0,0 | 240 | { .mmi; alloc tmp1=ar.pfs,3,15,0,0 |
258 | $ADDP tmp0=4,ctx | 241 | $ADDP tmp0=4,ctx |
259 | mov r3=ar.lc } | ||
260 | { .mmi; $ADDP ctx=0,ctx | ||
261 | $ADDP inp=0,inp | ||
262 | mov r2=pr };; | ||
263 | tmp4=in2; | ||
264 | tmp5=loc13; | ||
265 | tmp6=loc14; | ||
266 | .body | ||
267 | { .mlx; ld4 $h0=[ctx],8 | ||
268 | movl $K_00_19=0x5a827999 } | ||
269 | { .mlx; ld4 $h1=[tmp0],8 | ||
270 | movl $K_20_39=0x6ed9eba1 };; | ||
271 | { .mlx; ld4 $h2=[ctx],8 | ||
272 | movl $K_40_59=0x8f1bbcdc } | ||
273 | { .mlx; ld4 $h3=[tmp0] | ||
274 | movl $K_60_79=0xca62c1d6 };; | ||
275 | { .mmi; ld4 $h4=[ctx],-16 | ||
276 | add in2=-1,in2 // adjust num for ar.lc | ||
277 | mov ar.ec=1 };; | ||
278 | { .mmi; ld4 $X[0]=[inp],4 // prefetch | ||
279 | cmp.ne p16,p0=r0,in2 // prefecth at loop end | ||
280 | mov ar.lc=in2 };; // brp.loop.imp: too far | ||
281 | |||
282 | .Lhtop: | ||
283 | { .mmi; mov $A=$h0 | ||
284 | mov $B=$h1 | ||
285 | mux2 tmp6=$h1,0x44 } | ||
286 | { .mmi; mov $C=$h2 | ||
287 | mov $D=$h3 | ||
288 | mov $E=$h4 };; | ||
289 | |||
290 | ___ | ||
291 | |||
292 | &BODY_00_15(\$code, 0,$A,$B,$C,$D,$E,$T); | ||
293 | &BODY_00_15(\$code, 1,$T,$A,$B,$C,$D,$E); | ||
294 | &BODY_00_15(\$code, 2,$E,$T,$A,$B,$C,$D); | ||
295 | &BODY_00_15(\$code, 3,$D,$E,$T,$A,$B,$C); | ||
296 | &BODY_00_15(\$code, 4,$C,$D,$E,$T,$A,$B); | ||
297 | &BODY_00_15(\$code, 5,$B,$C,$D,$E,$T,$A); | ||
298 | &BODY_00_15(\$code, 6,$A,$B,$C,$D,$E,$T); | ||
299 | &BODY_00_15(\$code, 7,$T,$A,$B,$C,$D,$E); | ||
300 | &BODY_00_15(\$code, 8,$E,$T,$A,$B,$C,$D); | ||
301 | &BODY_00_15(\$code, 9,$D,$E,$T,$A,$B,$C); | ||
302 | &BODY_00_15(\$code,10,$C,$D,$E,$T,$A,$B); | ||
303 | &BODY_00_15(\$code,11,$B,$C,$D,$E,$T,$A); | ||
304 | &BODY_00_15(\$code,12,$A,$B,$C,$D,$E,$T); | ||
305 | &BODY_00_15(\$code,13,$T,$A,$B,$C,$D,$E); | ||
306 | &BODY_00_15(\$code,14,$E,$T,$A,$B,$C,$D); | ||
307 | &BODY_00_15(\$code,15,$D,$E,$T,$A,$B,$C); | ||
308 | |||
309 | &BODY_16_19(\$code,16,$C,$D,$E,$T,$A,$B); | ||
310 | &BODY_16_19(\$code,17,$B,$C,$D,$E,$T,$A); | ||
311 | &BODY_16_19(\$code,18,$A,$B,$C,$D,$E,$T); | ||
312 | &BODY_16_19(\$code,19,$T,$A,$B,$C,$D,$E); | ||
313 | |||
314 | &BODY_20_39(\$code,20,$E,$T,$A,$B,$C,$D); | ||
315 | &BODY_20_39(\$code,21,$D,$E,$T,$A,$B,$C); | ||
316 | &BODY_20_39(\$code,22,$C,$D,$E,$T,$A,$B); | ||
317 | &BODY_20_39(\$code,23,$B,$C,$D,$E,$T,$A); | ||
318 | &BODY_20_39(\$code,24,$A,$B,$C,$D,$E,$T); | ||
319 | &BODY_20_39(\$code,25,$T,$A,$B,$C,$D,$E); | ||
320 | &BODY_20_39(\$code,26,$E,$T,$A,$B,$C,$D); | ||
321 | &BODY_20_39(\$code,27,$D,$E,$T,$A,$B,$C); | ||
322 | &BODY_20_39(\$code,28,$C,$D,$E,$T,$A,$B); | ||
323 | &BODY_20_39(\$code,29,$B,$C,$D,$E,$T,$A); | ||
324 | &BODY_20_39(\$code,30,$A,$B,$C,$D,$E,$T); | ||
325 | &BODY_20_39(\$code,31,$T,$A,$B,$C,$D,$E); | ||
326 | &BODY_20_39(\$code,32,$E,$T,$A,$B,$C,$D); | ||
327 | &BODY_20_39(\$code,33,$D,$E,$T,$A,$B,$C); | ||
328 | &BODY_20_39(\$code,34,$C,$D,$E,$T,$A,$B); | ||
329 | &BODY_20_39(\$code,35,$B,$C,$D,$E,$T,$A); | ||
330 | &BODY_20_39(\$code,36,$A,$B,$C,$D,$E,$T); | ||
331 | &BODY_20_39(\$code,37,$T,$A,$B,$C,$D,$E); | ||
332 | &BODY_20_39(\$code,38,$E,$T,$A,$B,$C,$D); | ||
333 | &BODY_20_39(\$code,39,$D,$E,$T,$A,$B,$C); | ||
334 | |||
335 | &BODY_40_59(\$code,40,$C,$D,$E,$T,$A,$B); | ||
336 | &BODY_40_59(\$code,41,$B,$C,$D,$E,$T,$A); | ||
337 | &BODY_40_59(\$code,42,$A,$B,$C,$D,$E,$T); | ||
338 | &BODY_40_59(\$code,43,$T,$A,$B,$C,$D,$E); | ||
339 | &BODY_40_59(\$code,44,$E,$T,$A,$B,$C,$D); | ||
340 | &BODY_40_59(\$code,45,$D,$E,$T,$A,$B,$C); | ||
341 | &BODY_40_59(\$code,46,$C,$D,$E,$T,$A,$B); | ||
342 | &BODY_40_59(\$code,47,$B,$C,$D,$E,$T,$A); | ||
343 | &BODY_40_59(\$code,48,$A,$B,$C,$D,$E,$T); | ||
344 | &BODY_40_59(\$code,49,$T,$A,$B,$C,$D,$E); | ||
345 | &BODY_40_59(\$code,50,$E,$T,$A,$B,$C,$D); | ||
346 | &BODY_40_59(\$code,51,$D,$E,$T,$A,$B,$C); | ||
347 | &BODY_40_59(\$code,52,$C,$D,$E,$T,$A,$B); | ||
348 | &BODY_40_59(\$code,53,$B,$C,$D,$E,$T,$A); | ||
349 | &BODY_40_59(\$code,54,$A,$B,$C,$D,$E,$T); | ||
350 | &BODY_40_59(\$code,55,$T,$A,$B,$C,$D,$E); | ||
351 | &BODY_40_59(\$code,56,$E,$T,$A,$B,$C,$D); | ||
352 | &BODY_40_59(\$code,57,$D,$E,$T,$A,$B,$C); | ||
353 | &BODY_40_59(\$code,58,$C,$D,$E,$T,$A,$B); | ||
354 | &BODY_40_59(\$code,59,$B,$C,$D,$E,$T,$A); | ||
355 | |||
356 | &BODY_60_79(\$code,60,$A,$B,$C,$D,$E,$T); | ||
357 | &BODY_60_79(\$code,61,$T,$A,$B,$C,$D,$E); | ||
358 | &BODY_60_79(\$code,62,$E,$T,$A,$B,$C,$D); | ||
359 | &BODY_60_79(\$code,63,$D,$E,$T,$A,$B,$C); | ||
360 | &BODY_60_79(\$code,64,$C,$D,$E,$T,$A,$B); | ||
361 | &BODY_60_79(\$code,65,$B,$C,$D,$E,$T,$A); | ||
362 | &BODY_60_79(\$code,66,$A,$B,$C,$D,$E,$T); | ||
363 | &BODY_60_79(\$code,67,$T,$A,$B,$C,$D,$E); | ||
364 | &BODY_60_79(\$code,68,$E,$T,$A,$B,$C,$D); | ||
365 | &BODY_60_79(\$code,69,$D,$E,$T,$A,$B,$C); | ||
366 | &BODY_60_79(\$code,70,$C,$D,$E,$T,$A,$B); | ||
367 | &BODY_60_79(\$code,71,$B,$C,$D,$E,$T,$A); | ||
368 | &BODY_60_79(\$code,72,$A,$B,$C,$D,$E,$T); | ||
369 | &BODY_60_79(\$code,73,$T,$A,$B,$C,$D,$E); | ||
370 | &BODY_60_79(\$code,74,$E,$T,$A,$B,$C,$D); | ||
371 | &BODY_60_79(\$code,75,$D,$E,$T,$A,$B,$C); | ||
372 | &BODY_60_79(\$code,76,$C,$D,$E,$T,$A,$B); | ||
373 | &BODY_60_79(\$code,77,$B,$C,$D,$E,$T,$A); | ||
374 | &BODY_60_79(\$code,78,$A,$B,$C,$D,$E,$T); | ||
375 | &BODY_60_79(\$code,79,$T,$A,$B,$C,$D,$E); | ||
376 | |||
377 | $code.=<<___; | ||
378 | { .mmb; add $h0=$h0,$E | ||
379 | nop.m 0 | ||
380 | br.ctop.dptk.many .Lhtop };; | ||
381 | .Lhend: | ||
382 | { .mmi; add tmp0=4,ctx | ||
383 | mov ar.lc=r3 };; | ||
384 | { .mmi; st4 [ctx]=$h0,8 | ||
385 | st4 [tmp0]=$h1,8 };; | ||
386 | { .mmi; st4 [ctx]=$h2,8 | ||
387 | st4 [tmp0]=$h3 };; | ||
388 | { .mib; st4 [ctx]=$h4,-16 | ||
389 | mov pr=r2,0x1ffff | ||
390 | br.ret.sptk.many b0 };; | ||
391 | .endp sha1_block_asm_host_order# | ||
392 | ___ | ||
393 | |||
394 | |||
395 | $code.=<<___; | ||
396 | // void sha1_block_asm_data_order(SHA_CTX *c,const void *p,size_t num); | ||
397 | .global sha1_block_asm_data_order# | ||
398 | .proc sha1_block_asm_data_order# | ||
399 | .align 32 | ||
400 | sha1_block_asm_data_order: | ||
401 | ___ | ||
402 | $code.=<<___ if ($big_endian); | ||
403 | { .mmi; and r2=3,inp };; | ||
404 | { .mib; cmp.eq p6,p0=r0,r2 | ||
405 | (p6) br.dptk.many sha1_block_asm_host_order };; | ||
406 | ___ | ||
407 | $code.=<<___; | ||
408 | .prologue | ||
409 | .fframe 0 | ||
410 | .save ar.pfs,r0 | ||
411 | .save ar.lc,r3 | 242 | .save ar.lc,r3 |
412 | { .mmi; alloc tmp1=ar.pfs,3,15,0,0 | ||
413 | $ADDP tmp0=4,ctx | ||
414 | mov r3=ar.lc } | 243 | mov r3=ar.lc } |
415 | { .mmi; $ADDP ctx=0,ctx | 244 | { .mmi; $ADDP ctx=0,ctx |
416 | $ADDP inp=0,inp | 245 | $ADDP inp=0,inp |
@@ -444,90 +273,16 @@ tmp6=loc14; | |||
444 | 273 | ||
445 | ___ | 274 | ___ |
446 | 275 | ||
447 | &BODY_00_15(\$code, 0,$A,$B,$C,$D,$E,$T,1); | 276 | { my $i,@V=($A,$B,$C,$D,$E,$T); |
448 | &BODY_00_15(\$code, 1,$T,$A,$B,$C,$D,$E,1); | ||
449 | &BODY_00_15(\$code, 2,$E,$T,$A,$B,$C,$D,1); | ||
450 | &BODY_00_15(\$code, 3,$D,$E,$T,$A,$B,$C,1); | ||
451 | &BODY_00_15(\$code, 4,$C,$D,$E,$T,$A,$B,1); | ||
452 | &BODY_00_15(\$code, 5,$B,$C,$D,$E,$T,$A,1); | ||
453 | &BODY_00_15(\$code, 6,$A,$B,$C,$D,$E,$T,1); | ||
454 | &BODY_00_15(\$code, 7,$T,$A,$B,$C,$D,$E,1); | ||
455 | &BODY_00_15(\$code, 8,$E,$T,$A,$B,$C,$D,1); | ||
456 | &BODY_00_15(\$code, 9,$D,$E,$T,$A,$B,$C,1); | ||
457 | &BODY_00_15(\$code,10,$C,$D,$E,$T,$A,$B,1); | ||
458 | &BODY_00_15(\$code,11,$B,$C,$D,$E,$T,$A,1); | ||
459 | &BODY_00_15(\$code,12,$A,$B,$C,$D,$E,$T,1); | ||
460 | &BODY_00_15(\$code,13,$T,$A,$B,$C,$D,$E,1); | ||
461 | &BODY_00_15(\$code,14,$E,$T,$A,$B,$C,$D,1); | ||
462 | &BODY_00_15(\$code,15,$D,$E,$T,$A,$B,$C,1); | ||
463 | |||
464 | &BODY_16_19(\$code,16,$C,$D,$E,$T,$A,$B); | ||
465 | &BODY_16_19(\$code,17,$B,$C,$D,$E,$T,$A); | ||
466 | &BODY_16_19(\$code,18,$A,$B,$C,$D,$E,$T); | ||
467 | &BODY_16_19(\$code,19,$T,$A,$B,$C,$D,$E); | ||
468 | 277 | ||
469 | &BODY_20_39(\$code,20,$E,$T,$A,$B,$C,$D); | 278 | for($i=0;$i<16;$i++) { &BODY_00_15(\$code,$i,@V); unshift(@V,pop(@V)); } |
470 | &BODY_20_39(\$code,21,$D,$E,$T,$A,$B,$C); | 279 | for(;$i<20;$i++) { &BODY_16_19(\$code,$i,@V); unshift(@V,pop(@V)); } |
471 | &BODY_20_39(\$code,22,$C,$D,$E,$T,$A,$B); | 280 | for(;$i<40;$i++) { &BODY_20_39(\$code,$i,@V); unshift(@V,pop(@V)); } |
472 | &BODY_20_39(\$code,23,$B,$C,$D,$E,$T,$A); | 281 | for(;$i<60;$i++) { &BODY_40_59(\$code,$i,@V); unshift(@V,pop(@V)); } |
473 | &BODY_20_39(\$code,24,$A,$B,$C,$D,$E,$T); | 282 | for(;$i<80;$i++) { &BODY_60_79(\$code,$i,@V); unshift(@V,pop(@V)); } |
474 | &BODY_20_39(\$code,25,$T,$A,$B,$C,$D,$E); | ||
475 | &BODY_20_39(\$code,26,$E,$T,$A,$B,$C,$D); | ||
476 | &BODY_20_39(\$code,27,$D,$E,$T,$A,$B,$C); | ||
477 | &BODY_20_39(\$code,28,$C,$D,$E,$T,$A,$B); | ||
478 | &BODY_20_39(\$code,29,$B,$C,$D,$E,$T,$A); | ||
479 | &BODY_20_39(\$code,30,$A,$B,$C,$D,$E,$T); | ||
480 | &BODY_20_39(\$code,31,$T,$A,$B,$C,$D,$E); | ||
481 | &BODY_20_39(\$code,32,$E,$T,$A,$B,$C,$D); | ||
482 | &BODY_20_39(\$code,33,$D,$E,$T,$A,$B,$C); | ||
483 | &BODY_20_39(\$code,34,$C,$D,$E,$T,$A,$B); | ||
484 | &BODY_20_39(\$code,35,$B,$C,$D,$E,$T,$A); | ||
485 | &BODY_20_39(\$code,36,$A,$B,$C,$D,$E,$T); | ||
486 | &BODY_20_39(\$code,37,$T,$A,$B,$C,$D,$E); | ||
487 | &BODY_20_39(\$code,38,$E,$T,$A,$B,$C,$D); | ||
488 | &BODY_20_39(\$code,39,$D,$E,$T,$A,$B,$C); | ||
489 | 283 | ||
490 | &BODY_40_59(\$code,40,$C,$D,$E,$T,$A,$B); | 284 | (($V[5] eq $D) and ($V[0] eq $E)) or die; # double-check |
491 | &BODY_40_59(\$code,41,$B,$C,$D,$E,$T,$A); | 285 | } |
492 | &BODY_40_59(\$code,42,$A,$B,$C,$D,$E,$T); | ||
493 | &BODY_40_59(\$code,43,$T,$A,$B,$C,$D,$E); | ||
494 | &BODY_40_59(\$code,44,$E,$T,$A,$B,$C,$D); | ||
495 | &BODY_40_59(\$code,45,$D,$E,$T,$A,$B,$C); | ||
496 | &BODY_40_59(\$code,46,$C,$D,$E,$T,$A,$B); | ||
497 | &BODY_40_59(\$code,47,$B,$C,$D,$E,$T,$A); | ||
498 | &BODY_40_59(\$code,48,$A,$B,$C,$D,$E,$T); | ||
499 | &BODY_40_59(\$code,49,$T,$A,$B,$C,$D,$E); | ||
500 | &BODY_40_59(\$code,50,$E,$T,$A,$B,$C,$D); | ||
501 | &BODY_40_59(\$code,51,$D,$E,$T,$A,$B,$C); | ||
502 | &BODY_40_59(\$code,52,$C,$D,$E,$T,$A,$B); | ||
503 | &BODY_40_59(\$code,53,$B,$C,$D,$E,$T,$A); | ||
504 | &BODY_40_59(\$code,54,$A,$B,$C,$D,$E,$T); | ||
505 | &BODY_40_59(\$code,55,$T,$A,$B,$C,$D,$E); | ||
506 | &BODY_40_59(\$code,56,$E,$T,$A,$B,$C,$D); | ||
507 | &BODY_40_59(\$code,57,$D,$E,$T,$A,$B,$C); | ||
508 | &BODY_40_59(\$code,58,$C,$D,$E,$T,$A,$B); | ||
509 | &BODY_40_59(\$code,59,$B,$C,$D,$E,$T,$A); | ||
510 | |||
511 | &BODY_60_79(\$code,60,$A,$B,$C,$D,$E,$T); | ||
512 | &BODY_60_79(\$code,61,$T,$A,$B,$C,$D,$E); | ||
513 | &BODY_60_79(\$code,62,$E,$T,$A,$B,$C,$D); | ||
514 | &BODY_60_79(\$code,63,$D,$E,$T,$A,$B,$C); | ||
515 | &BODY_60_79(\$code,64,$C,$D,$E,$T,$A,$B); | ||
516 | &BODY_60_79(\$code,65,$B,$C,$D,$E,$T,$A); | ||
517 | &BODY_60_79(\$code,66,$A,$B,$C,$D,$E,$T); | ||
518 | &BODY_60_79(\$code,67,$T,$A,$B,$C,$D,$E); | ||
519 | &BODY_60_79(\$code,68,$E,$T,$A,$B,$C,$D); | ||
520 | &BODY_60_79(\$code,69,$D,$E,$T,$A,$B,$C); | ||
521 | &BODY_60_79(\$code,70,$C,$D,$E,$T,$A,$B); | ||
522 | &BODY_60_79(\$code,71,$B,$C,$D,$E,$T,$A); | ||
523 | &BODY_60_79(\$code,72,$A,$B,$C,$D,$E,$T); | ||
524 | &BODY_60_79(\$code,73,$T,$A,$B,$C,$D,$E); | ||
525 | &BODY_60_79(\$code,74,$E,$T,$A,$B,$C,$D); | ||
526 | &BODY_60_79(\$code,75,$D,$E,$T,$A,$B,$C); | ||
527 | &BODY_60_79(\$code,76,$C,$D,$E,$T,$A,$B); | ||
528 | &BODY_60_79(\$code,77,$B,$C,$D,$E,$T,$A); | ||
529 | &BODY_60_79(\$code,78,$A,$B,$C,$D,$E,$T); | ||
530 | &BODY_60_79(\$code,79,$T,$A,$B,$C,$D,$E); | ||
531 | 286 | ||
532 | $code.=<<___; | 287 | $code.=<<___; |
533 | { .mmb; add $h0=$h0,$E | 288 | { .mmb; add $h0=$h0,$E |
@@ -543,7 +298,8 @@ $code.=<<___; | |||
543 | { .mib; st4 [ctx]=$h4,-16 | 298 | { .mib; st4 [ctx]=$h4,-16 |
544 | mov pr=r2,0x1ffff | 299 | mov pr=r2,0x1ffff |
545 | br.ret.sptk.many b0 };; | 300 | br.ret.sptk.many b0 };; |
546 | .endp sha1_block_asm_data_order# | 301 | .endp sha1_block_data_order# |
302 | stringz "SHA1 block transform for IA64, CRYPTOGAMS by <appro\@openssl.org>" | ||
547 | ___ | 303 | ___ |
548 | 304 | ||
549 | print $code; | 305 | print $code; |
diff --git a/src/lib/libssl/src/crypto/sha/asm/sha512-sse2.pl b/src/lib/libssl/src/crypto/sha/asm/sha512-sse2.pl new file mode 100644 index 0000000000..10902bf673 --- /dev/null +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/stack/Makefile b/src/lib/libssl/src/crypto/stack/Makefile index 711b16832a..5327692ac8 100644 --- a/src/lib/libssl/src/crypto/stack/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/txt_db/Makefile b/src/lib/libssl/src/crypto/txt_db/Makefile index 3cb550a795..e6f30331d8 100644 --- a/src/lib/libssl/src/crypto/txt_db/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/ui/Makefile b/src/lib/libssl/src/crypto/ui/Makefile index fcb2a66a39..a685659fb4 100644 --- a/src/lib/libssl/src/crypto/ui/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/x509/Makefile b/src/lib/libssl/src/crypto/x509/Makefile index ee3f8a4a23..ddcc3124a7 100644 --- a/src/lib/libssl/src/crypto/x509/Makefile +++ b/src/lib/libssl/src/crypto/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/libssl/src/crypto/x509v3/Makefile b/src/lib/libssl/src/crypto/x509v3/Makefile index 49423f39f7..556ef351bf 100644 --- a/src/lib/libssl/src/crypto/x509v3/Makefile +++ b/src/lib/libssl/src/crypto/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 | ||
diff --git a/src/lib/libssl/src/crypto/x509v3/v3_pci.c b/src/lib/libssl/src/crypto/x509v3/v3_pci.c index b32d968619..601211f416 100644 --- a/src/lib/libssl/src/crypto/x509v3/v3_pci.c +++ b/src/lib/libssl/src/crypto/x509v3/v3_pci.c | |||
@@ -44,7 +44,7 @@ static int i2r_pci(X509V3_EXT_METHOD *method, PROXY_CERT_INFO_EXTENSION *ext, | |||
44 | static PROXY_CERT_INFO_EXTENSION *r2i_pci(X509V3_EXT_METHOD *method, | 44 | static PROXY_CERT_INFO_EXTENSION *r2i_pci(X509V3_EXT_METHOD *method, |
45 | X509V3_CTX *ctx, char *str); | 45 | X509V3_CTX *ctx, char *str); |
46 | 46 | ||
47 | X509V3_EXT_METHOD v3_pci = | 47 | const X509V3_EXT_METHOD v3_pci = |
48 | { NID_proxyCertInfo, 0, ASN1_ITEM_ref(PROXY_CERT_INFO_EXTENSION), | 48 | { NID_proxyCertInfo, 0, ASN1_ITEM_ref(PROXY_CERT_INFO_EXTENSION), |
49 | 0,0,0,0, | 49 | 0,0,0,0, |
50 | 0,0, | 50 | 0,0, |
@@ -82,13 +82,13 @@ static int process_pci_value(CONF_VALUE *val, | |||
82 | { | 82 | { |
83 | if (*language) | 83 | if (*language) |
84 | { | 84 | { |
85 | X509V3err(X509V3_F_R2I_PCI,X509V3_R_POLICY_LANGUAGE_ALREADTY_DEFINED); | 85 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_POLICY_LANGUAGE_ALREADTY_DEFINED); |
86 | X509V3_conf_err(val); | 86 | X509V3_conf_err(val); |
87 | return 0; | 87 | return 0; |
88 | } | 88 | } |
89 | if (!(*language = OBJ_txt2obj(val->value, 0))) | 89 | if (!(*language = OBJ_txt2obj(val->value, 0))) |
90 | { | 90 | { |
91 | X509V3err(X509V3_F_R2I_PCI,X509V3_R_INVALID_OBJECT_IDENTIFIER); | 91 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_INVALID_OBJECT_IDENTIFIER); |
92 | X509V3_conf_err(val); | 92 | X509V3_conf_err(val); |
93 | return 0; | 93 | return 0; |
94 | } | 94 | } |
@@ -97,13 +97,13 @@ static int process_pci_value(CONF_VALUE *val, | |||
97 | { | 97 | { |
98 | if (*pathlen) | 98 | if (*pathlen) |
99 | { | 99 | { |
100 | X509V3err(X509V3_F_R2I_PCI,X509V3_R_POLICY_PATH_LENGTH_ALREADTY_DEFINED); | 100 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_POLICY_PATH_LENGTH_ALREADTY_DEFINED); |
101 | X509V3_conf_err(val); | 101 | X509V3_conf_err(val); |
102 | return 0; | 102 | return 0; |
103 | } | 103 | } |
104 | if (!X509V3_get_value_int(val, pathlen)) | 104 | if (!X509V3_get_value_int(val, pathlen)) |
105 | { | 105 | { |
106 | X509V3err(X509V3_F_R2I_PCI,X509V3_R_POLICY_PATH_LENGTH); | 106 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_POLICY_PATH_LENGTH); |
107 | X509V3_conf_err(val); | 107 | X509V3_conf_err(val); |
108 | return 0; | 108 | return 0; |
109 | } | 109 | } |
@@ -117,7 +117,7 @@ static int process_pci_value(CONF_VALUE *val, | |||
117 | *policy = ASN1_OCTET_STRING_new(); | 117 | *policy = ASN1_OCTET_STRING_new(); |
118 | if (!*policy) | 118 | if (!*policy) |
119 | { | 119 | { |
120 | X509V3err(X509V3_F_R2I_PCI,ERR_R_MALLOC_FAILURE); | 120 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,ERR_R_MALLOC_FAILURE); |
121 | X509V3_conf_err(val); | 121 | X509V3_conf_err(val); |
122 | return 0; | 122 | return 0; |
123 | } | 123 | } |
@@ -148,7 +148,7 @@ static int process_pci_value(CONF_VALUE *val, | |||
148 | BIO *b = BIO_new_file(val->value + 5, "r"); | 148 | BIO *b = BIO_new_file(val->value + 5, "r"); |
149 | if (!b) | 149 | if (!b) |
150 | { | 150 | { |
151 | X509V3err(X509V3_F_R2I_PCI,ERR_R_BIO_LIB); | 151 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,ERR_R_BIO_LIB); |
152 | X509V3_conf_err(val); | 152 | X509V3_conf_err(val); |
153 | goto err; | 153 | goto err; |
154 | } | 154 | } |
@@ -172,7 +172,7 @@ static int process_pci_value(CONF_VALUE *val, | |||
172 | 172 | ||
173 | if (n < 0) | 173 | if (n < 0) |
174 | { | 174 | { |
175 | X509V3err(X509V3_F_R2I_PCI,ERR_R_BIO_LIB); | 175 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,ERR_R_BIO_LIB); |
176 | X509V3_conf_err(val); | 176 | X509V3_conf_err(val); |
177 | goto err; | 177 | goto err; |
178 | } | 178 | } |
@@ -193,13 +193,13 @@ static int process_pci_value(CONF_VALUE *val, | |||
193 | } | 193 | } |
194 | else | 194 | else |
195 | { | 195 | { |
196 | X509V3err(X509V3_F_R2I_PCI,X509V3_R_INCORRECT_POLICY_SYNTAX_TAG); | 196 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,X509V3_R_INCORRECT_POLICY_SYNTAX_TAG); |
197 | X509V3_conf_err(val); | 197 | X509V3_conf_err(val); |
198 | goto err; | 198 | goto err; |
199 | } | 199 | } |
200 | if (!tmp_data) | 200 | if (!tmp_data) |
201 | { | 201 | { |
202 | X509V3err(X509V3_F_R2I_PCI,ERR_R_MALLOC_FAILURE); | 202 | X509V3err(X509V3_F_PROCESS_PCI_VALUE,ERR_R_MALLOC_FAILURE); |
203 | X509V3_conf_err(val); | 203 | X509V3_conf_err(val); |
204 | goto err; | 204 | goto err; |
205 | } | 205 | } |
@@ -286,12 +286,6 @@ static PROXY_CERT_INFO_EXTENSION *r2i_pci(X509V3_EXT_METHOD *method, | |||
286 | X509V3err(X509V3_F_R2I_PCI,ERR_R_MALLOC_FAILURE); | 286 | X509V3err(X509V3_F_R2I_PCI,ERR_R_MALLOC_FAILURE); |
287 | goto err; | 287 | goto err; |
288 | } | 288 | } |
289 | pci->proxyPolicy = PROXY_POLICY_new(); | ||
290 | if (!pci->proxyPolicy) | ||
291 | { | ||
292 | X509V3err(X509V3_F_R2I_PCI,ERR_R_MALLOC_FAILURE); | ||
293 | goto err; | ||
294 | } | ||
295 | 289 | ||
296 | pci->proxyPolicy->policyLanguage = language; language = NULL; | 290 | pci->proxyPolicy->policyLanguage = language; language = NULL; |
297 | pci->proxyPolicy->policy = policy; policy = NULL; | 291 | pci->proxyPolicy->policy = policy; policy = NULL; |
@@ -301,11 +295,6 @@ err: | |||
301 | if (language) { ASN1_OBJECT_free(language); language = NULL; } | 295 | if (language) { ASN1_OBJECT_free(language); language = NULL; } |
302 | if (pathlen) { ASN1_INTEGER_free(pathlen); pathlen = NULL; } | 296 | if (pathlen) { ASN1_INTEGER_free(pathlen); pathlen = NULL; } |
303 | if (policy) { ASN1_OCTET_STRING_free(policy); policy = NULL; } | 297 | if (policy) { ASN1_OCTET_STRING_free(policy); policy = NULL; } |
304 | if (pci && pci->proxyPolicy) | ||
305 | { | ||
306 | PROXY_POLICY_free(pci->proxyPolicy); | ||
307 | pci->proxyPolicy = NULL; | ||
308 | } | ||
309 | if (pci) { PROXY_CERT_INFO_EXTENSION_free(pci); pci = NULL; } | 298 | if (pci) { PROXY_CERT_INFO_EXTENSION_free(pci); pci = NULL; } |
310 | end: | 299 | end: |
311 | sk_CONF_VALUE_pop_free(vals, X509V3_conf_free); | 300 | sk_CONF_VALUE_pop_free(vals, X509V3_conf_free); |
diff --git a/src/lib/libssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h b/src/lib/libssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h index afc175b133..f548a3b668 100644 --- a/src/lib/libssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h +++ b/src/lib/libssl/src/demos/engines/cluster_labs/hw_cluster_labs_err.h | |||
@@ -55,6 +55,10 @@ | |||
55 | #ifndef HEADER_CL_ERR_H | 55 | #ifndef HEADER_CL_ERR_H |
56 | #define HEADER_CL_ERR_H | 56 | #define HEADER_CL_ERR_H |
57 | 57 | ||
58 | #ifdef __cplusplus | ||
59 | extern "C" { | ||
60 | #endif | ||
61 | |||
58 | /* BEGIN ERROR CODES */ | 62 | /* BEGIN ERROR CODES */ |
59 | /* The following lines are auto generated by the script mkerr.pl. Any changes | 63 | /* The following lines are auto generated by the script mkerr.pl. Any changes |
60 | * made after this point may be overwritten when the script is next run. | 64 | * made after this point may be overwritten when the script is next run. |
diff --git a/src/lib/libssl/src/demos/engines/ibmca/hw_ibmca_err.h b/src/lib/libssl/src/demos/engines/ibmca/hw_ibmca_err.h index da64bde5f2..2070f95799 100644 --- a/src/lib/libssl/src/demos/engines/ibmca/hw_ibmca_err.h +++ b/src/lib/libssl/src/demos/engines/ibmca/hw_ibmca_err.h | |||
@@ -55,6 +55,10 @@ | |||
55 | #ifndef HEADER_IBMCA_ERR_H | 55 | #ifndef HEADER_IBMCA_ERR_H |
56 | #define HEADER_IBMCA_ERR_H | 56 | #define HEADER_IBMCA_ERR_H |
57 | 57 | ||
58 | #ifdef __cplusplus | ||
59 | extern "C" { | ||
60 | #endif | ||
61 | |||
58 | /* BEGIN ERROR CODES */ | 62 | /* BEGIN ERROR CODES */ |
59 | /* The following lines are auto generated by the script mkerr.pl. Any changes | 63 | /* The following lines are auto generated by the script mkerr.pl. Any changes |
60 | * made after this point may be overwritten when the script is next run. | 64 | * made after this point may be overwritten when the script is next run. |
diff --git a/src/lib/libssl/src/demos/engines/zencod/hw_zencod.c b/src/lib/libssl/src/demos/engines/zencod/hw_zencod.c index 29206b4a29..4234b93cbe 100644 --- a/src/lib/libssl/src/demos/engines/zencod/hw_zencod.c +++ b/src/lib/libssl/src/demos/engines/zencod/hw_zencod.c | |||
@@ -1233,7 +1233,7 @@ static const EVP_MD engine_sha1_md = | |||
1233 | SHA_CBLOCK, | 1233 | SHA_CBLOCK, |
1234 | /* sizeof ( EVP_MD * ) + sizeof ( SHA_CTX ) */ | 1234 | /* sizeof ( EVP_MD * ) + sizeof ( SHA_CTX ) */ |
1235 | sizeof ( ZEN_MD_DATA ) | 1235 | sizeof ( ZEN_MD_DATA ) |
1236 | /* sizeof ( MD_CTX_DATA ) The message digest data stucture ... */ | 1236 | /* sizeof ( MD_CTX_DATA ) The message digest data structure ... */ |
1237 | } ; | 1237 | } ; |
1238 | 1238 | ||
1239 | /* The one for MD5 ... */ | 1239 | /* The one for MD5 ... */ |
@@ -1254,7 +1254,7 @@ static const EVP_MD engine_md5_md = | |||
1254 | MD5_CBLOCK, | 1254 | MD5_CBLOCK, |
1255 | /* sizeof ( EVP_MD * ) + sizeof ( MD5_CTX ) */ | 1255 | /* sizeof ( EVP_MD * ) + sizeof ( MD5_CTX ) */ |
1256 | sizeof ( ZEN_MD_DATA ) | 1256 | sizeof ( ZEN_MD_DATA ) |
1257 | /* sizeof ( MD_CTX_DATA ) The message digest data stucture ... */ | 1257 | /* sizeof ( MD_CTX_DATA ) The message digest data structure ... */ |
1258 | } ; | 1258 | } ; |
1259 | 1259 | ||
1260 | 1260 | ||
diff --git a/src/lib/libssl/src/demos/engines/zencod/hw_zencod_err.h b/src/lib/libssl/src/demos/engines/zencod/hw_zencod_err.h index 1b5dcb5685..60e923fd88 100644 --- a/src/lib/libssl/src/demos/engines/zencod/hw_zencod_err.h +++ b/src/lib/libssl/src/demos/engines/zencod/hw_zencod_err.h | |||
@@ -55,6 +55,10 @@ | |||
55 | #ifndef HEADER_ZENCOD_ERR_H | 55 | #ifndef HEADER_ZENCOD_ERR_H |
56 | #define HEADER_ZENCOD_ERR_H | 56 | #define HEADER_ZENCOD_ERR_H |
57 | 57 | ||
58 | #ifdef __cplusplus | ||
59 | extern "C" { | ||
60 | #endif | ||
61 | |||
58 | /* BEGIN ERROR CODES */ | 62 | /* BEGIN ERROR CODES */ |
59 | /* The following lines are auto generated by the script mkerr.pl. Any changes | 63 | /* The following lines are auto generated by the script mkerr.pl. Any changes |
60 | * made after this point may be overwritten when the script is next run. | 64 | * made after this point may be overwritten when the script is next run. |
diff --git a/src/lib/libssl/src/doc/crypto/ASN1_STRING_print_ex.pod b/src/lib/libssl/src/doc/crypto/ASN1_STRING_print_ex.pod index d662225b87..3891b88791 100644 --- a/src/lib/libssl/src/doc/crypto/ASN1_STRING_print_ex.pod +++ b/src/lib/libssl/src/doc/crypto/ASN1_STRING_print_ex.pod | |||
@@ -43,9 +43,9 @@ interprets UTF8 sequences. | |||
43 | 43 | ||
44 | Escaping takes several forms. | 44 | Escaping takes several forms. |
45 | 45 | ||
46 | If the character being escaped is a 16 bit character then the form "\WXXXX" is used | 46 | If the character being escaped is a 16 bit character then the form "\UXXXX" is used |
47 | using exactly four characters for the hex representation. If it is 32 bits then | 47 | using exactly four characters for the hex representation. If it is 32 bits then |
48 | "\UXXXXXXXX" is used using eight characters of its hex representation. These forms | 48 | "\WXXXXXXXX" is used using eight characters of its hex representation. These forms |
49 | will only be used if UTF8 conversion is not set (see below). | 49 | will only be used if UTF8 conversion is not set (see below). |
50 | 50 | ||
51 | Printable characters are normally escaped using the backslash '\' character. If | 51 | Printable characters are normally escaped using the backslash '\' character. If |
diff --git a/src/lib/libssl/src/doc/crypto/CONF_modules_free.pod b/src/lib/libssl/src/doc/crypto/CONF_modules_free.pod index af8ae6a5c9..87bc7b783c 100644 --- a/src/lib/libssl/src/doc/crypto/CONF_modules_free.pod +++ b/src/lib/libssl/src/doc/crypto/CONF_modules_free.pod | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | =head1 NAME | 3 | =head1 NAME |
4 | 4 | ||
5 | CONF_modules_free, CONF_modules_load, CONF_modules_unload - | 5 | CONF_modules_free, CONF_modules_finish, CONF_modules_unload - |
6 | OpenSSL configuration cleanup functions | 6 | OpenSSL configuration cleanup functions |
7 | 7 | ||
8 | =head1 SYNOPSIS | 8 | =head1 SYNOPSIS |
@@ -10,8 +10,8 @@ | |||
10 | #include <openssl/conf.h> | 10 | #include <openssl/conf.h> |
11 | 11 | ||
12 | void CONF_modules_free(void); | 12 | void CONF_modules_free(void); |
13 | void CONF_modules_unload(int all); | ||
14 | void CONF_modules_finish(void); | 13 | void CONF_modules_finish(void); |
14 | void CONF_modules_unload(int all); | ||
15 | 15 | ||
16 | =head1 DESCRIPTION | 16 | =head1 DESCRIPTION |
17 | 17 | ||
diff --git a/src/lib/libssl/src/doc/crypto/PKCS12_create.pod b/src/lib/libssl/src/doc/crypto/PKCS12_create.pod index 48f3bb8cb8..de7cab2bdf 100644 --- a/src/lib/libssl/src/doc/crypto/PKCS12_create.pod +++ b/src/lib/libssl/src/doc/crypto/PKCS12_create.pod | |||
@@ -46,6 +46,24 @@ export grade software which could use signing only keys of arbitrary size but | |||
46 | had restrictions on the permissible sizes of keys which could be used for | 46 | had restrictions on the permissible sizes of keys which could be used for |
47 | encryption. | 47 | encryption. |
48 | 48 | ||
49 | =head1 NEW FUNCTIONALITY IN OPENSSL 0.9.8 | ||
50 | |||
51 | Some additional functionality was added to PKCS12_create() in OpenSSL | ||
52 | 0.9.8. These extensions are detailed below. | ||
53 | |||
54 | If a certificate contains an B<alias> or B<keyid> then this will be | ||
55 | used for the corresponding B<friendlyName> or B<localKeyID> in the | ||
56 | PKCS12 structure. | ||
57 | |||
58 | Either B<pkey>, B<cert> or both can be B<NULL> to indicate that no key or | ||
59 | certficate is required. In previous versions both had to be present or | ||
60 | a fatal error is returned. | ||
61 | |||
62 | B<nid_key> or B<nid_cert> can be set to -1 indicating that no encryption | ||
63 | should be used. | ||
64 | |||
65 | B<mac_iter> can be set to -1 and the MAC will then be omitted entirely. | ||
66 | |||
49 | =head1 SEE ALSO | 67 | =head1 SEE ALSO |
50 | 68 | ||
51 | L<d2i_PKCS12(3)|d2i_PKCS12(3)> | 69 | L<d2i_PKCS12(3)|d2i_PKCS12(3)> |
diff --git a/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod b/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod index fc7e649b34..ffd0c734b0 100644 --- a/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod +++ b/src/lib/libssl/src/doc/crypto/PKCS7_sign.pod | |||
@@ -51,6 +51,24 @@ If present the SMIMECapabilities attribute indicates support for the following | |||
51 | algorithms: triple DES, 128 bit RC2, 64 bit RC2, DES and 40 bit RC2. If any | 51 | algorithms: triple DES, 128 bit RC2, 64 bit RC2, DES and 40 bit RC2. If any |
52 | of these algorithms is disabled then it will not be included. | 52 | of these algorithms is disabled then it will not be included. |
53 | 53 | ||
54 | If the flags B<PKCS7_PARTSIGN> is set then the returned B<PKCS7> structure | ||
55 | is just initialized ready to perform the signing operation. The signing | ||
56 | is however B<not> performed and the data to be signed is not read from | ||
57 | the B<data> parameter. Signing is deferred until after the data has been | ||
58 | written. In this way data can be signed in a single pass. Currently the | ||
59 | flag B<PKCS7_DETACHED> B<must> also be set. | ||
60 | |||
61 | =head1 NOTES | ||
62 | |||
63 | Currently the flag B<PKCS7_PARTSIGN> is only supported for detached | ||
64 | data. If this flag is set the returned B<PKCS7> structure is B<not> | ||
65 | complete and outputting its contents via a function that does not | ||
66 | properly finalize the B<PKCS7> structure will give unpredictable | ||
67 | results. | ||
68 | |||
69 | At present only the SMIME_write_PKCS7() function properly finalizes the | ||
70 | structure. | ||
71 | |||
54 | =head1 BUGS | 72 | =head1 BUGS |
55 | 73 | ||
56 | PKCS7_sign() is somewhat limited. It does not support multiple signers, some | 74 | PKCS7_sign() is somewhat limited. It does not support multiple signers, some |
@@ -64,10 +82,6 @@ signed due to memory restraints. There should be a way to sign data without | |||
64 | having to hold it all in memory, this would however require fairly major | 82 | having to hold it all in memory, this would however require fairly major |
65 | revisions of the OpenSSL ASN1 code. | 83 | revisions of the OpenSSL ASN1 code. |
66 | 84 | ||
67 | Clear text signing does not store the content in memory but the way PKCS7_sign() | ||
68 | operates means that two passes of the data must typically be made: one to compute | ||
69 | the signatures and a second to output the data along with the signature. There | ||
70 | should be a way to process the data with only a single pass. | ||
71 | 85 | ||
72 | =head1 RETURN VALUES | 86 | =head1 RETURN VALUES |
73 | 87 | ||
@@ -82,4 +96,6 @@ L<ERR_get_error(3)|ERR_get_error(3)>, L<PKCS7_verify(3)|PKCS7_verify(3)> | |||
82 | 96 | ||
83 | PKCS7_sign() was added to OpenSSL 0.9.5 | 97 | PKCS7_sign() was added to OpenSSL 0.9.5 |
84 | 98 | ||
99 | The B<PKCS7_PARTSIGN> flag was added in OpenSSL 0.9.8 | ||
100 | |||
85 | =cut | 101 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod b/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod index 2cfad2e049..61945b3887 100644 --- a/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod +++ b/src/lib/libssl/src/doc/crypto/SMIME_write_PKCS7.pod | |||
@@ -30,18 +30,20 @@ If the B<PKCS7_TEXT> flag is set MIME headers for type B<text/plain> | |||
30 | are added to the content, this only makes sense if B<PKCS7_DETACHED> | 30 | are added to the content, this only makes sense if B<PKCS7_DETACHED> |
31 | is also set. | 31 | is also set. |
32 | 32 | ||
33 | If cleartext signing is being used then the data must be read twice: | 33 | If the B<PKCS7_PARTSIGN> flag is set the signed data is finalized |
34 | once to compute the signature in PKCS7_sign() and once to output the | 34 | and output along with the content. This flag should only be set |
35 | S/MIME message. | 35 | if B<PKCS7_DETACHED> is also set and the previous call to PKCS7_sign() |
36 | also set these flags. | ||
37 | |||
38 | If cleartext signing is being used and B<PKCS7_PARTSIGN> not set then | ||
39 | the data must be read twice: once to compute the signature in PKCS7_sign() | ||
40 | and once to output the S/MIME message. | ||
36 | 41 | ||
37 | =head1 BUGS | 42 | =head1 BUGS |
38 | 43 | ||
39 | SMIME_write_PKCS7() always base64 encodes PKCS#7 structures, there | 44 | SMIME_write_PKCS7() always base64 encodes PKCS#7 structures, there |
40 | should be an option to disable this. | 45 | should be an option to disable this. |
41 | 46 | ||
42 | There should really be a way to produce cleartext signing using only | ||
43 | a single pass of the data. | ||
44 | |||
45 | =head1 RETURN VALUES | 47 | =head1 RETURN VALUES |
46 | 48 | ||
47 | SMIME_write_PKCS7() returns 1 for success or 0 for failure. | 49 | SMIME_write_PKCS7() returns 1 for success or 0 for failure. |
diff --git a/src/lib/libssl/src/doc/crypto/X509_NAME_print_ex.pod b/src/lib/libssl/src/doc/crypto/X509_NAME_print_ex.pod index 919b908919..2579a5dc9d 100644 --- a/src/lib/libssl/src/doc/crypto/X509_NAME_print_ex.pod +++ b/src/lib/libssl/src/doc/crypto/X509_NAME_print_ex.pod | |||
@@ -86,10 +86,10 @@ is equivalent to: | |||
86 | B<ASN1_STRFLGS_RFC2253 | XN_FLAG_SEP_COMMA_PLUS | XN_FLAG_DN_REV | XN_FLAG_FN_SN | XN_FLAG_DUMP_UNKNOWN_FIELDS> | 86 | B<ASN1_STRFLGS_RFC2253 | XN_FLAG_SEP_COMMA_PLUS | XN_FLAG_DN_REV | XN_FLAG_FN_SN | XN_FLAG_DUMP_UNKNOWN_FIELDS> |
87 | 87 | ||
88 | 88 | ||
89 | B<XN_FLAG_ONELINE> is a more readable one line format it is the same as: | 89 | B<XN_FLAG_ONELINE> is a more readable one line format which is the same as: |
90 | B<ASN1_STRFLGS_RFC2253 | ASN1_STRFLGS_ESC_QUOTE | XN_FLAG_SEP_CPLUS_SPC | XN_FLAG_SPC_EQ | XN_FLAG_FN_SN> | 90 | B<ASN1_STRFLGS_RFC2253 | ASN1_STRFLGS_ESC_QUOTE | XN_FLAG_SEP_CPLUS_SPC | XN_FLAG_SPC_EQ | XN_FLAG_FN_SN> |
91 | 91 | ||
92 | B<XN_FLAG_MULTILINE> is a multiline format is is the same as: | 92 | B<XN_FLAG_MULTILINE> is a multiline format which is the same as: |
93 | B<ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | XN_FLAG_SEP_MULTILINE | XN_FLAG_SPC_EQ | XN_FLAG_FN_LN | XN_FLAG_FN_ALIGN> | 93 | B<ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | XN_FLAG_SEP_MULTILINE | XN_FLAG_SPC_EQ | XN_FLAG_FN_LN | XN_FLAG_FN_ALIGN> |
94 | 94 | ||
95 | B<XN_FLAG_COMPAT> uses a format identical to X509_NAME_print(): in fact it calls X509_NAME_print() internally. | 95 | B<XN_FLAG_COMPAT> uses a format identical to X509_NAME_print(): in fact it calls X509_NAME_print() internally. |
diff --git a/src/lib/libssl/src/doc/crypto/d2i_X509.pod b/src/lib/libssl/src/doc/crypto/d2i_X509.pod index 5e3c3d0985..5bfa18afbb 100644 --- a/src/lib/libssl/src/doc/crypto/d2i_X509.pod +++ b/src/lib/libssl/src/doc/crypto/d2i_X509.pod | |||
@@ -9,7 +9,7 @@ i2d_X509_fp - X509 encode and decode functions | |||
9 | 9 | ||
10 | #include <openssl/x509.h> | 10 | #include <openssl/x509.h> |
11 | 11 | ||
12 | X509 *d2i_X509(X509 **px, unsigned char **in, int len); | 12 | X509 *d2i_X509(X509 **px, const unsigned char **in, int len); |
13 | int i2d_X509(X509 *x, unsigned char **out); | 13 | int i2d_X509(X509 *x, unsigned char **out); |
14 | 14 | ||
15 | X509 *d2i_X509_bio(BIO *bp, X509 **x); | 15 | X509 *d2i_X509_bio(BIO *bp, X509 **x); |
@@ -23,13 +23,13 @@ i2d_X509_fp - X509 encode and decode functions | |||
23 | The X509 encode and decode routines encode and parse an | 23 | The X509 encode and decode routines encode and parse an |
24 | B<X509> structure, which represents an X509 certificate. | 24 | B<X509> structure, which represents an X509 certificate. |
25 | 25 | ||
26 | d2i_X509() attempts to decode B<len> bytes at B<*out>. If | 26 | d2i_X509() attempts to decode B<len> bytes at B<*in>. If |
27 | successful a pointer to the B<X509> structure is returned. If an error | 27 | successful a pointer to the B<X509> structure is returned. If an error |
28 | occurred then B<NULL> is returned. If B<px> is not B<NULL> then the | 28 | occurred then B<NULL> is returned. If B<px> is not B<NULL> then the |
29 | returned structure is written to B<*px>. If B<*px> is not B<NULL> | 29 | returned structure is written to B<*px>. If B<*px> is not B<NULL> |
30 | then it is assumed that B<*px> contains a valid B<X509> | 30 | then it is assumed that B<*px> contains a valid B<X509> |
31 | structure and an attempt is made to reuse it. If the call is | 31 | structure and an attempt is made to reuse it. If the call is |
32 | successful B<*out> is incremented to the byte following the | 32 | successful B<*in> is incremented to the byte following the |
33 | parsed data. | 33 | parsed data. |
34 | 34 | ||
35 | i2d_X509() encodes the structure pointed to by B<x> into DER format. | 35 | i2d_X509() encodes the structure pointed to by B<x> into DER format. |
diff --git a/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod b/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod index 06c5b23c09..e7295a5d61 100644 --- a/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod +++ b/src/lib/libssl/src/doc/crypto/d2i_X509_CRL.pod | |||
@@ -9,7 +9,7 @@ i2d_X509_CRL_bio, i2d_X509_CRL_fp - PKCS#10 certificate request functions. | |||
9 | 9 | ||
10 | #include <openssl/x509.h> | 10 | #include <openssl/x509.h> |
11 | 11 | ||
12 | X509_CRL *d2i_X509_CRL(X509_CRL **a, unsigned char **pp, long length); | 12 | X509_CRL *d2i_X509_CRL(X509_CRL **a, const unsigned char **pp, long length); |
13 | int i2d_X509_CRL(X509_CRL *a, unsigned char **pp); | 13 | int i2d_X509_CRL(X509_CRL *a, unsigned char **pp); |
14 | 14 | ||
15 | X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **x); | 15 | X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **x); |
diff --git a/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod b/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod index be4ad68257..ae32a3891d 100644 --- a/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod +++ b/src/lib/libssl/src/doc/crypto/d2i_X509_REQ.pod | |||
@@ -9,7 +9,7 @@ i2d_X509_REQ_bio, i2d_X509_REQ_fp - PKCS#10 certificate request functions. | |||
9 | 9 | ||
10 | #include <openssl/x509.h> | 10 | #include <openssl/x509.h> |
11 | 11 | ||
12 | X509_REQ *d2i_X509_REQ(X509_REQ **a, unsigned char **pp, long length); | 12 | X509_REQ *d2i_X509_REQ(X509_REQ **a, const unsigned char **pp, long length); |
13 | int i2d_X509_REQ(X509_REQ *a, unsigned char **pp); | 13 | int i2d_X509_REQ(X509_REQ *a, unsigned char **pp); |
14 | 14 | ||
15 | X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x); | 15 | X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **x); |
diff --git a/src/lib/libssl/src/doc/crypto/engine.pod b/src/lib/libssl/src/doc/crypto/engine.pod index c77dad5562..f5ab1c3e50 100644 --- a/src/lib/libssl/src/doc/crypto/engine.pod +++ b/src/lib/libssl/src/doc/crypto/engine.pod | |||
@@ -23,21 +23,26 @@ engine - ENGINE cryptographic module support | |||
23 | 23 | ||
24 | void ENGINE_load_openssl(void); | 24 | void ENGINE_load_openssl(void); |
25 | void ENGINE_load_dynamic(void); | 25 | void ENGINE_load_dynamic(void); |
26 | void ENGINE_load_cswift(void); | 26 | #ifndef OPENSSL_NO_STATIC_ENGINE |
27 | void ENGINE_load_chil(void); | 27 | void ENGINE_load_4758cca(void); |
28 | void ENGINE_load_aep(void); | ||
28 | void ENGINE_load_atalla(void); | 29 | void ENGINE_load_atalla(void); |
30 | void ENGINE_load_chil(void); | ||
31 | void ENGINE_load_cswift(void); | ||
32 | void ENGINE_load_gmp(void); | ||
29 | void ENGINE_load_nuron(void); | 33 | void ENGINE_load_nuron(void); |
30 | void ENGINE_load_ubsec(void); | ||
31 | void ENGINE_load_aep(void); | ||
32 | void ENGINE_load_sureware(void); | 34 | void ENGINE_load_sureware(void); |
33 | void ENGINE_load_4758cca(void); | 35 | void ENGINE_load_ubsec(void); |
34 | void ENGINE_load_openbsd_dev_crypto(void); | 36 | #endif |
37 | void ENGINE_load_cryptodev(void); | ||
35 | void ENGINE_load_builtin_engines(void); | 38 | void ENGINE_load_builtin_engines(void); |
36 | 39 | ||
37 | void ENGINE_cleanup(void); | 40 | void ENGINE_cleanup(void); |
38 | 41 | ||
39 | ENGINE *ENGINE_get_default_RSA(void); | 42 | ENGINE *ENGINE_get_default_RSA(void); |
40 | ENGINE *ENGINE_get_default_DSA(void); | 43 | ENGINE *ENGINE_get_default_DSA(void); |
44 | ENGINE *ENGINE_get_default_ECDH(void); | ||
45 | ENGINE *ENGINE_get_default_ECDSA(void); | ||
41 | ENGINE *ENGINE_get_default_DH(void); | 46 | ENGINE *ENGINE_get_default_DH(void); |
42 | ENGINE *ENGINE_get_default_RAND(void); | 47 | ENGINE *ENGINE_get_default_RAND(void); |
43 | ENGINE *ENGINE_get_cipher_engine(int nid); | 48 | ENGINE *ENGINE_get_cipher_engine(int nid); |
@@ -45,6 +50,8 @@ engine - ENGINE cryptographic module support | |||
45 | 50 | ||
46 | int ENGINE_set_default_RSA(ENGINE *e); | 51 | int ENGINE_set_default_RSA(ENGINE *e); |
47 | int ENGINE_set_default_DSA(ENGINE *e); | 52 | int ENGINE_set_default_DSA(ENGINE *e); |
53 | int ENGINE_set_default_ECDH(ENGINE *e); | ||
54 | int ENGINE_set_default_ECDSA(ENGINE *e); | ||
48 | int ENGINE_set_default_DH(ENGINE *e); | 55 | int ENGINE_set_default_DH(ENGINE *e); |
49 | int ENGINE_set_default_RAND(ENGINE *e); | 56 | int ENGINE_set_default_RAND(ENGINE *e); |
50 | int ENGINE_set_default_ciphers(ENGINE *e); | 57 | int ENGINE_set_default_ciphers(ENGINE *e); |
@@ -62,12 +69,21 @@ engine - ENGINE cryptographic module support | |||
62 | int ENGINE_register_DSA(ENGINE *e); | 69 | int ENGINE_register_DSA(ENGINE *e); |
63 | void ENGINE_unregister_DSA(ENGINE *e); | 70 | void ENGINE_unregister_DSA(ENGINE *e); |
64 | void ENGINE_register_all_DSA(void); | 71 | void ENGINE_register_all_DSA(void); |
72 | int ENGINE_register_ECDH(ENGINE *e); | ||
73 | void ENGINE_unregister_ECDH(ENGINE *e); | ||
74 | void ENGINE_register_all_ECDH(void); | ||
75 | int ENGINE_register_ECDSA(ENGINE *e); | ||
76 | void ENGINE_unregister_ECDSA(ENGINE *e); | ||
77 | void ENGINE_register_all_ECDSA(void); | ||
65 | int ENGINE_register_DH(ENGINE *e); | 78 | int ENGINE_register_DH(ENGINE *e); |
66 | void ENGINE_unregister_DH(ENGINE *e); | 79 | void ENGINE_unregister_DH(ENGINE *e); |
67 | void ENGINE_register_all_DH(void); | 80 | void ENGINE_register_all_DH(void); |
68 | int ENGINE_register_RAND(ENGINE *e); | 81 | int ENGINE_register_RAND(ENGINE *e); |
69 | void ENGINE_unregister_RAND(ENGINE *e); | 82 | void ENGINE_unregister_RAND(ENGINE *e); |
70 | void ENGINE_register_all_RAND(void); | 83 | void ENGINE_register_all_RAND(void); |
84 | int ENGINE_register_STORE(ENGINE *e); | ||
85 | void ENGINE_unregister_STORE(ENGINE *e); | ||
86 | void ENGINE_register_all_STORE(void); | ||
71 | int ENGINE_register_ciphers(ENGINE *e); | 87 | int ENGINE_register_ciphers(ENGINE *e); |
72 | void ENGINE_unregister_ciphers(ENGINE *e); | 88 | void ENGINE_unregister_ciphers(ENGINE *e); |
73 | void ENGINE_register_all_ciphers(void); | 89 | void ENGINE_register_all_ciphers(void); |
@@ -77,12 +93,12 @@ engine - ENGINE cryptographic module support | |||
77 | int ENGINE_register_complete(ENGINE *e); | 93 | int ENGINE_register_complete(ENGINE *e); |
78 | int ENGINE_register_all_complete(void); | 94 | int ENGINE_register_all_complete(void); |
79 | 95 | ||
80 | int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()); | 96 | int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)); |
81 | int ENGINE_cmd_is_executable(ENGINE *e, int cmd); | 97 | int ENGINE_cmd_is_executable(ENGINE *e, int cmd); |
82 | int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, | 98 | int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, |
83 | long i, void *p, void (*f)(), int cmd_optional); | 99 | long i, void *p, void (*f)(void), int cmd_optional); |
84 | int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, | 100 | int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, |
85 | int cmd_optional); | 101 | int cmd_optional); |
86 | 102 | ||
87 | int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg); | 103 | int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg); |
88 | void *ENGINE_get_ex_data(const ENGINE *e, int idx); | 104 | void *ENGINE_get_ex_data(const ENGINE *e, int idx); |
@@ -92,13 +108,17 @@ engine - ENGINE cryptographic module support | |||
92 | 108 | ||
93 | ENGINE *ENGINE_new(void); | 109 | ENGINE *ENGINE_new(void); |
94 | int ENGINE_free(ENGINE *e); | 110 | int ENGINE_free(ENGINE *e); |
111 | int ENGINE_up_ref(ENGINE *e); | ||
95 | 112 | ||
96 | int ENGINE_set_id(ENGINE *e, const char *id); | 113 | int ENGINE_set_id(ENGINE *e, const char *id); |
97 | int ENGINE_set_name(ENGINE *e, const char *name); | 114 | int ENGINE_set_name(ENGINE *e, const char *name); |
98 | int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth); | 115 | int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth); |
99 | int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth); | 116 | int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth); |
117 | int ENGINE_set_ECDH(ENGINE *e, const ECDH_METHOD *dh_meth); | ||
118 | int ENGINE_set_ECDSA(ENGINE *e, const ECDSA_METHOD *dh_meth); | ||
100 | int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth); | 119 | int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth); |
101 | int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth); | 120 | int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth); |
121 | int ENGINE_set_STORE(ENGINE *e, const STORE_METHOD *rand_meth); | ||
102 | int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f); | 122 | int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f); |
103 | int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f); | 123 | int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f); |
104 | int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f); | 124 | int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f); |
@@ -114,8 +134,11 @@ engine - ENGINE cryptographic module support | |||
114 | const char *ENGINE_get_name(const ENGINE *e); | 134 | const char *ENGINE_get_name(const ENGINE *e); |
115 | const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e); | 135 | const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e); |
116 | const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e); | 136 | const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e); |
137 | const ECDH_METHOD *ENGINE_get_ECDH(const ENGINE *e); | ||
138 | const ECDSA_METHOD *ENGINE_get_ECDSA(const ENGINE *e); | ||
117 | const DH_METHOD *ENGINE_get_DH(const ENGINE *e); | 139 | const DH_METHOD *ENGINE_get_DH(const ENGINE *e); |
118 | const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e); | 140 | const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e); |
141 | const STORE_METHOD *ENGINE_get_STORE(const ENGINE *e); | ||
119 | ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e); | 142 | ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e); |
120 | ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e); | 143 | ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e); |
121 | ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e); | 144 | ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e); |
@@ -148,7 +171,8 @@ The cryptographic functionality that can be provided by an B<ENGINE> | |||
148 | implementation includes the following abstractions; | 171 | implementation includes the following abstractions; |
149 | 172 | ||
150 | RSA_METHOD - for providing alternative RSA implementations | 173 | RSA_METHOD - for providing alternative RSA implementations |
151 | DSA_METHOD, DH_METHOD, RAND_METHOD - alternative DSA, DH, and RAND | 174 | DSA_METHOD, DH_METHOD, RAND_METHOD, ECDH_METHOD, ECDSA_METHOD, |
175 | STORE_METHOD - similarly for other OpenSSL APIs | ||
152 | EVP_CIPHER - potentially multiple cipher algorithms (indexed by 'nid') | 176 | EVP_CIPHER - potentially multiple cipher algorithms (indexed by 'nid') |
153 | EVP_DIGEST - potentially multiple hash algorithms (indexed by 'nid') | 177 | EVP_DIGEST - potentially multiple hash algorithms (indexed by 'nid') |
154 | key-loading - loading public and/or private EVP_PKEY keys | 178 | key-loading - loading public and/or private EVP_PKEY keys |
@@ -157,52 +181,45 @@ implementation includes the following abstractions; | |||
157 | 181 | ||
158 | Due to the modular nature of the ENGINE API, pointers to ENGINEs need to be | 182 | Due to the modular nature of the ENGINE API, pointers to ENGINEs need to be |
159 | treated as handles - ie. not only as pointers, but also as references to | 183 | treated as handles - ie. not only as pointers, but also as references to |
160 | the underlying ENGINE object. Ie. you should obtain a new reference when | 184 | the underlying ENGINE object. Ie. one should obtain a new reference when |
161 | making copies of an ENGINE pointer if the copies will be used (and | 185 | making copies of an ENGINE pointer if the copies will be used (and |
162 | released) independantly. | 186 | released) independently. |
163 | 187 | ||
164 | ENGINE objects have two levels of reference-counting to match the way in | 188 | ENGINE objects have two levels of reference-counting to match the way in |
165 | which the objects are used. At the most basic level, each ENGINE pointer is | 189 | which the objects are used. At the most basic level, each ENGINE pointer is |
166 | inherently a B<structural> reference - you need a structural reference | 190 | inherently a B<structural> reference - a structural reference is required |
167 | simply to refer to the pointer value at all, as this kind of reference is | 191 | to use the pointer value at all, as this kind of reference is a guarantee |
168 | your guarantee that the structure can not be deallocated until you release | 192 | that the structure can not be deallocated until the reference is released. |
169 | your reference. | 193 | |
170 | 194 | However, a structural reference provides no guarantee that the ENGINE is | |
171 | However, a structural reference provides no guarantee that the ENGINE has | 195 | initiliased and able to use any of its cryptographic |
172 | been initiliased to be usable to perform any of its cryptographic | 196 | implementations. Indeed it's quite possible that most ENGINEs will not |
173 | implementations - and indeed it's quite possible that most ENGINEs will not | 197 | initialise at all in typical environments, as ENGINEs are typically used to |
174 | initialised at all on standard setups, as ENGINEs are typically used to | ||
175 | support specialised hardware. To use an ENGINE's functionality, you need a | 198 | support specialised hardware. To use an ENGINE's functionality, you need a |
176 | B<functional> reference. This kind of reference can be considered a | 199 | B<functional> reference. This kind of reference can be considered a |
177 | specialised form of structural reference, because each functional reference | 200 | specialised form of structural reference, because each functional reference |
178 | implicitly contains a structural reference as well - however to avoid | 201 | implicitly contains a structural reference as well - however to avoid |
179 | difficult-to-find programming bugs, it is recommended to treat the two | 202 | difficult-to-find programming bugs, it is recommended to treat the two |
180 | kinds of reference independantly. If you have a functional reference to an | 203 | kinds of reference independently. If you have a functional reference to an |
181 | ENGINE, you have a guarantee that the ENGINE has been initialised ready to | 204 | ENGINE, you have a guarantee that the ENGINE has been initialised ready to |
182 | perform cryptographic operations and will not be uninitialised or cleaned | 205 | perform cryptographic operations and will remain uninitialised |
183 | up until after you have released your reference. | 206 | until after you have released your reference. |
184 | |||
185 | We will discuss the two kinds of reference separately, including how to | ||
186 | tell which one you are dealing with at any given point in time (after all | ||
187 | they are both simply (ENGINE *) pointers, the difference is in the way they | ||
188 | are used). | ||
189 | 207 | ||
190 | I<Structural references> | 208 | I<Structural references> |
191 | 209 | ||
192 | This basic type of reference is typically used for creating new ENGINEs | 210 | This basic type of reference is used for instantiating new ENGINEs, |
193 | dynamically, iterating across OpenSSL's internal linked-list of loaded | 211 | iterating across OpenSSL's internal linked-list of loaded |
194 | ENGINEs, reading information about an ENGINE, etc. Essentially a structural | 212 | ENGINEs, reading information about an ENGINE, etc. Essentially a structural |
195 | reference is sufficient if you only need to query or manipulate the data of | 213 | reference is sufficient if you only need to query or manipulate the data of |
196 | an ENGINE implementation rather than use its functionality. | 214 | an ENGINE implementation rather than use its functionality. |
197 | 215 | ||
198 | The ENGINE_new() function returns a structural reference to a new (empty) | 216 | The ENGINE_new() function returns a structural reference to a new (empty) |
199 | ENGINE object. Other than that, structural references come from return | 217 | ENGINE object. There are other ENGINE API functions that return structural |
200 | values to various ENGINE API functions such as; ENGINE_by_id(), | 218 | references such as; ENGINE_by_id(), ENGINE_get_first(), ENGINE_get_last(), |
201 | ENGINE_get_first(), ENGINE_get_last(), ENGINE_get_next(), | 219 | ENGINE_get_next(), ENGINE_get_prev(). All structural references should be |
202 | ENGINE_get_prev(). All structural references should be released by a | 220 | released by a corresponding to call to the ENGINE_free() function - the |
203 | corresponding to call to the ENGINE_free() function - the ENGINE object | 221 | ENGINE object itself will only actually be cleaned up and deallocated when |
204 | itself will only actually be cleaned up and deallocated when the last | 222 | the last structural reference is released. |
205 | structural reference is released. | ||
206 | 223 | ||
207 | It should also be noted that many ENGINE API function calls that accept a | 224 | It should also be noted that many ENGINE API function calls that accept a |
208 | structural reference will internally obtain another reference - typically | 225 | structural reference will internally obtain another reference - typically |
@@ -237,15 +254,9 @@ call the ENGINE_init() function. This returns zero if the ENGINE was not | |||
237 | already operational and couldn't be successfully initialised (eg. lack of | 254 | already operational and couldn't be successfully initialised (eg. lack of |
238 | system drivers, no special hardware attached, etc), otherwise it will | 255 | system drivers, no special hardware attached, etc), otherwise it will |
239 | return non-zero to indicate that the ENGINE is now operational and will | 256 | return non-zero to indicate that the ENGINE is now operational and will |
240 | have allocated a new B<functional> reference to the ENGINE. In this case, | 257 | have allocated a new B<functional> reference to the ENGINE. All functional |
241 | the supplied ENGINE pointer is, from the point of the view of the caller, | 258 | references are released by calling ENGINE_finish() (which removes the |
242 | both a structural reference and a functional reference - so if the caller | 259 | implicit structural reference as well). |
243 | intends to use it as a functional reference it should free the structural | ||
244 | reference with ENGINE_free() first. If the caller wishes to use it only as | ||
245 | a structural reference (eg. if the ENGINE_init() call was simply to test if | ||
246 | the ENGINE seems available/online), then it should free the functional | ||
247 | reference; all functional references are released by the ENGINE_finish() | ||
248 | function. | ||
249 | 260 | ||
250 | The second way to get a functional reference is by asking OpenSSL for a | 261 | The second way to get a functional reference is by asking OpenSSL for a |
251 | default implementation for a given task, eg. by ENGINE_get_default_RSA(), | 262 | default implementation for a given task, eg. by ENGINE_get_default_RSA(), |
@@ -259,26 +270,21 @@ algorithm-specific types in OpenSSL, such as RSA, DSA, EVP_CIPHER_CTX, etc. | |||
259 | For each supported abstraction, the ENGINE code maintains an internal table | 270 | For each supported abstraction, the ENGINE code maintains an internal table |
260 | of state to control which implementations are available for a given | 271 | of state to control which implementations are available for a given |
261 | abstraction and which should be used by default. These implementations are | 272 | abstraction and which should be used by default. These implementations are |
262 | registered in the tables separated-out by an 'nid' index, because | 273 | registered in the tables and indexed by an 'nid' value, because |
263 | abstractions like EVP_CIPHER and EVP_DIGEST support many distinct | 274 | abstractions like EVP_CIPHER and EVP_DIGEST support many distinct |
264 | algorithms and modes - ENGINEs will support different numbers and | 275 | algorithms and modes, and ENGINEs can support arbitrarily many of them. |
265 | combinations of these. In the case of other abstractions like RSA, DSA, | 276 | In the case of other abstractions like RSA, DSA, etc, there is only one |
266 | etc, there is only one "algorithm" so all implementations implicitly | 277 | "algorithm" so all implementations implicitly register using the same 'nid' |
267 | register using the same 'nid' index. ENGINEs can be B<registered> into | 278 | index. |
268 | these tables to make themselves available for use automatically by the | 279 | |
269 | various abstractions, eg. RSA. For illustrative purposes, we continue with | 280 | When a default ENGINE is requested for a given abstraction/algorithm/mode, (eg. |
270 | the RSA example, though all comments apply similarly to the other | 281 | when calling RSA_new_method(NULL)), a "get_default" call will be made to the |
271 | abstractions (they each get their own table and linkage to the | 282 | ENGINE subsystem to process the corresponding state table and return a |
272 | corresponding section of openssl code). | 283 | functional reference to an initialised ENGINE whose implementation should be |
273 | 284 | used. If no ENGINE should (or can) be used, it will return NULL and the caller | |
274 | When a new RSA key is being created, ie. in RSA_new_method(), a | 285 | will operate with a NULL ENGINE handle - this usually equates to using the |
275 | "get_default" call will be made to the ENGINE subsystem to process the RSA | 286 | conventional software implementation. In the latter case, OpenSSL will from |
276 | state table and return a functional reference to an initialised ENGINE | 287 | then on behave the way it used to before the ENGINE API existed. |
277 | whose RSA_METHOD should be used. If no ENGINE should (or can) be used, it | ||
278 | will return NULL and the RSA key will operate with a NULL ENGINE handle by | ||
279 | using the conventional RSA implementation in OpenSSL (and will from then on | ||
280 | behave the way it used to before the ENGINE API existed - for details see | ||
281 | L<RSA_new_method(3)|RSA_new_method(3)>). | ||
282 | 288 | ||
283 | Each state table has a flag to note whether it has processed this | 289 | Each state table has a flag to note whether it has processed this |
284 | "get_default" query since the table was last modified, because to process | 290 | "get_default" query since the table was last modified, because to process |
@@ -295,36 +301,9 @@ instead the only way for the state table to return a non-NULL ENGINE to the | |||
295 | "get_default" query will be if one is expressly set in the table. Eg. | 301 | "get_default" query will be if one is expressly set in the table. Eg. |
296 | ENGINE_set_default_RSA() does the same job as ENGINE_register_RSA() except | 302 | ENGINE_set_default_RSA() does the same job as ENGINE_register_RSA() except |
297 | that it also sets the state table's cached response for the "get_default" | 303 | that it also sets the state table's cached response for the "get_default" |
298 | query. | 304 | query. In the case of abstractions like EVP_CIPHER, where implementations are |
299 | 305 | indexed by 'nid', these flags and cached-responses are distinct for each 'nid' | |
300 | In the case of abstractions like EVP_CIPHER, where implementations are | 306 | value. |
301 | indexed by 'nid', these flags and cached-responses are distinct for each | ||
302 | 'nid' value. | ||
303 | |||
304 | It is worth illustrating the difference between "registration" of ENGINEs | ||
305 | into these per-algorithm state tables and using the alternative | ||
306 | "set_default" functions. The latter handles both "registration" and also | ||
307 | setting the cached "default" ENGINE in each relevant state table - so | ||
308 | registered ENGINEs will only have a chance to be initialised for use as a | ||
309 | default if a default ENGINE wasn't already set for the same state table. | ||
310 | Eg. if ENGINE X supports cipher nids {A,B} and RSA, ENGINE Y supports | ||
311 | ciphers {A} and DSA, and the following code is executed; | ||
312 | |||
313 | ENGINE_register_complete(X); | ||
314 | ENGINE_set_default(Y, ENGINE_METHOD_ALL); | ||
315 | e1 = ENGINE_get_default_RSA(); | ||
316 | e2 = ENGINE_get_cipher_engine(A); | ||
317 | e3 = ENGINE_get_cipher_engine(B); | ||
318 | e4 = ENGINE_get_default_DSA(); | ||
319 | e5 = ENGINE_get_cipher_engine(C); | ||
320 | |||
321 | The results would be as follows; | ||
322 | |||
323 | assert(e1 == X); | ||
324 | assert(e2 == Y); | ||
325 | assert(e3 == X); | ||
326 | assert(e4 == Y); | ||
327 | assert(e5 == NULL); | ||
328 | 307 | ||
329 | =head2 Application requirements | 308 | =head2 Application requirements |
330 | 309 | ||
@@ -360,7 +339,7 @@ mention an important API function; | |||
360 | 339 | ||
361 | If no ENGINE API functions are called at all in an application, then there | 340 | If no ENGINE API functions are called at all in an application, then there |
362 | are no inherent memory leaks to worry about from the ENGINE functionality, | 341 | are no inherent memory leaks to worry about from the ENGINE functionality, |
363 | however if any ENGINEs are "load"ed, even if they are never registered or | 342 | however if any ENGINEs are loaded, even if they are never registered or |
364 | used, it is necessary to use the ENGINE_cleanup() function to | 343 | used, it is necessary to use the ENGINE_cleanup() function to |
365 | correspondingly cleanup before program exit, if the caller wishes to avoid | 344 | correspondingly cleanup before program exit, if the caller wishes to avoid |
366 | memory leaks. This mechanism uses an internal callback registration table | 345 | memory leaks. This mechanism uses an internal callback registration table |
@@ -375,7 +354,7 @@ linker. | |||
375 | The fact that ENGINEs are made visible to OpenSSL (and thus are linked into | 354 | The fact that ENGINEs are made visible to OpenSSL (and thus are linked into |
376 | the program and loaded into memory at run-time) does not mean they are | 355 | the program and loaded into memory at run-time) does not mean they are |
377 | "registered" or called into use by OpenSSL automatically - that behaviour | 356 | "registered" or called into use by OpenSSL automatically - that behaviour |
378 | is something for the application to have control over. Some applications | 357 | is something for the application to control. Some applications |
379 | will want to allow the user to specify exactly which ENGINE they want used | 358 | will want to allow the user to specify exactly which ENGINE they want used |
380 | if any is to be used at all. Others may prefer to load all support and have | 359 | if any is to be used at all. Others may prefer to load all support and have |
381 | OpenSSL automatically use at run-time any ENGINE that is able to | 360 | OpenSSL automatically use at run-time any ENGINE that is able to |
@@ -433,7 +412,7 @@ it should be used. The following code illustrates how this can work; | |||
433 | That's all that's required. Eg. the next time OpenSSL tries to set up an | 412 | That's all that's required. Eg. the next time OpenSSL tries to set up an |
434 | RSA key, any bundled ENGINEs that implement RSA_METHOD will be passed to | 413 | RSA key, any bundled ENGINEs that implement RSA_METHOD will be passed to |
435 | ENGINE_init() and if any of those succeed, that ENGINE will be set as the | 414 | ENGINE_init() and if any of those succeed, that ENGINE will be set as the |
436 | default for use with RSA from then on. | 415 | default for RSA use from then on. |
437 | 416 | ||
438 | =head2 Advanced configuration support | 417 | =head2 Advanced configuration support |
439 | 418 | ||
@@ -441,7 +420,7 @@ There is a mechanism supported by the ENGINE framework that allows each | |||
441 | ENGINE implementation to define an arbitrary set of configuration | 420 | ENGINE implementation to define an arbitrary set of configuration |
442 | "commands" and expose them to OpenSSL and any applications based on | 421 | "commands" and expose them to OpenSSL and any applications based on |
443 | OpenSSL. This mechanism is entirely based on the use of name-value pairs | 422 | OpenSSL. This mechanism is entirely based on the use of name-value pairs |
444 | and and assumes ASCII input (no unicode or UTF for now!), so it is ideal if | 423 | and assumes ASCII input (no unicode or UTF for now!), so it is ideal if |
445 | applications want to provide a transparent way for users to provide | 424 | applications want to provide a transparent way for users to provide |
446 | arbitrary configuration "directives" directly to such ENGINEs. It is also | 425 | arbitrary configuration "directives" directly to such ENGINEs. It is also |
447 | possible for the application to dynamically interrogate the loaded ENGINE | 426 | possible for the application to dynamically interrogate the loaded ENGINE |
@@ -450,8 +429,8 @@ available "control commands", providing a more flexible configuration | |||
450 | scheme. However, if the user is expected to know which ENGINE device he/she | 429 | scheme. However, if the user is expected to know which ENGINE device he/she |
451 | is using (in the case of specialised hardware, this goes without saying) | 430 | is using (in the case of specialised hardware, this goes without saying) |
452 | then applications may not need to concern themselves with discovering the | 431 | then applications may not need to concern themselves with discovering the |
453 | supported control commands and simply prefer to allow settings to passed | 432 | supported control commands and simply prefer to pass settings into ENGINEs |
454 | into ENGINEs exactly as they are provided by the user. | 433 | exactly as they are provided by the user. |
455 | 434 | ||
456 | Before illustrating how control commands work, it is worth mentioning what | 435 | Before illustrating how control commands work, it is worth mentioning what |
457 | they are typically used for. Broadly speaking there are two uses for | 436 | they are typically used for. Broadly speaking there are two uses for |
@@ -459,13 +438,13 @@ control commands; the first is to provide the necessary details to the | |||
459 | implementation (which may know nothing at all specific to the host system) | 438 | implementation (which may know nothing at all specific to the host system) |
460 | so that it can be initialised for use. This could include the path to any | 439 | so that it can be initialised for use. This could include the path to any |
461 | driver or config files it needs to load, required network addresses, | 440 | driver or config files it needs to load, required network addresses, |
462 | smart-card identifiers, passwords to initialise password-protected devices, | 441 | smart-card identifiers, passwords to initialise protected devices, |
463 | logging information, etc etc. This class of commands typically needs to be | 442 | logging information, etc etc. This class of commands typically needs to be |
464 | passed to an ENGINE B<before> attempting to initialise it, ie. before | 443 | passed to an ENGINE B<before> attempting to initialise it, ie. before |
465 | calling ENGINE_init(). The other class of commands consist of settings or | 444 | calling ENGINE_init(). The other class of commands consist of settings or |
466 | operations that tweak certain behaviour or cause certain operations to take | 445 | operations that tweak certain behaviour or cause certain operations to take |
467 | place, and these commands may work either before or after ENGINE_init(), or | 446 | place, and these commands may work either before or after ENGINE_init(), or |
468 | in same cases both. ENGINE implementations should provide indications of | 447 | in some cases both. ENGINE implementations should provide indications of |
469 | this in the descriptions attached to builtin control commands and/or in | 448 | this in the descriptions attached to builtin control commands and/or in |
470 | external product documentation. | 449 | external product documentation. |
471 | 450 | ||
@@ -529,14 +508,14 @@ FALSE. | |||
529 | I<Discovering supported control commands> | 508 | I<Discovering supported control commands> |
530 | 509 | ||
531 | It is possible to discover at run-time the names, numerical-ids, descriptions | 510 | It is possible to discover at run-time the names, numerical-ids, descriptions |
532 | and input parameters of the control commands supported from a structural | 511 | and input parameters of the control commands supported by an ENGINE using a |
533 | reference to any ENGINE. It is first important to note that some control | 512 | structural reference. Note that some control commands are defined by OpenSSL |
534 | commands are defined by OpenSSL itself and it will intercept and handle these | 513 | itself and it will intercept and handle these control commands on behalf of the |
535 | control commands on behalf of the ENGINE, ie. the ENGINE's ctrl() handler is not | 514 | ENGINE, ie. the ENGINE's ctrl() handler is not used for the control command. |
536 | used for the control command. openssl/engine.h defines a symbol, | 515 | openssl/engine.h defines an index, ENGINE_CMD_BASE, that all control commands |
537 | ENGINE_CMD_BASE, that all control commands implemented by ENGINEs from. Any | 516 | implemented by ENGINEs should be numbered from. Any command value lower than |
538 | command value lower than this symbol is considered a "generic" command is | 517 | this symbol is considered a "generic" command is handled directly by the |
539 | handled directly by the OpenSSL core routines. | 518 | OpenSSL core routines. |
540 | 519 | ||
541 | It is using these "core" control commands that one can discover the the control | 520 | It is using these "core" control commands that one can discover the the control |
542 | commands implemented by a given ENGINE, specifically the commands; | 521 | commands implemented by a given ENGINE, specifically the commands; |
@@ -552,8 +531,8 @@ commands implemented by a given ENGINE, specifically the commands; | |||
552 | #define ENGINE_CTRL_GET_CMD_FLAGS 18 | 531 | #define ENGINE_CTRL_GET_CMD_FLAGS 18 |
553 | 532 | ||
554 | Whilst these commands are automatically processed by the OpenSSL framework code, | 533 | Whilst these commands are automatically processed by the OpenSSL framework code, |
555 | they use various properties exposed by each ENGINE by which to process these | 534 | they use various properties exposed by each ENGINE to process these |
556 | queries. An ENGINE has 3 properties it exposes that can affect this behaviour; | 535 | queries. An ENGINE has 3 properties it exposes that can affect how this behaves; |
557 | it can supply a ctrl() handler, it can specify ENGINE_FLAGS_MANUAL_CMD_CTRL in | 536 | it can supply a ctrl() handler, it can specify ENGINE_FLAGS_MANUAL_CMD_CTRL in |
558 | the ENGINE's flags, and it can expose an array of control command descriptions. | 537 | the ENGINE's flags, and it can expose an array of control command descriptions. |
559 | If an ENGINE specifies the ENGINE_FLAGS_MANUAL_CMD_CTRL flag, then it will | 538 | If an ENGINE specifies the ENGINE_FLAGS_MANUAL_CMD_CTRL flag, then it will |
@@ -608,14 +587,13 @@ extension). | |||
608 | The ENGINE API and internal architecture is currently being reviewed. Slated for | 587 | The ENGINE API and internal architecture is currently being reviewed. Slated for |
609 | possible release in 0.9.8 is support for transparent loading of "dynamic" | 588 | possible release in 0.9.8 is support for transparent loading of "dynamic" |
610 | ENGINEs (built as self-contained shared-libraries). This would allow ENGINE | 589 | ENGINEs (built as self-contained shared-libraries). This would allow ENGINE |
611 | implementations to be provided independantly of OpenSSL libraries and/or | 590 | implementations to be provided independently of OpenSSL libraries and/or |
612 | OpenSSL-based applications, and would also remove any requirement for | 591 | OpenSSL-based applications, and would also remove any requirement for |
613 | applications to explicitly use the "dynamic" ENGINE to bind to shared-library | 592 | applications to explicitly use the "dynamic" ENGINE to bind to shared-library |
614 | implementations. | 593 | implementations. |
615 | 594 | ||
616 | =head1 SEE ALSO | 595 | =head1 SEE ALSO |
617 | 596 | ||
618 | L<rsa(3)|rsa(3)>, L<dsa(3)|dsa(3)>, L<dh(3)|dh(3)>, L<rand(3)|rand(3)>, | 597 | L<rsa(3)|rsa(3)>, L<dsa(3)|dsa(3)>, L<dh(3)|dh(3)>, L<rand(3)|rand(3)> |
619 | L<RSA_new_method(3)|RSA_new_method(3)> | ||
620 | 598 | ||
621 | =cut | 599 | =cut |
diff --git a/src/lib/libssl/src/engines/makeengines.com b/src/lib/libssl/src/engines/makeengines.com new file mode 100644 index 0000000000..4a7474e010 --- /dev/null +++ b/src/lib/libssl/src/engines/makeengines.com | |||
@@ -0,0 +1,902 @@ | |||
1 | $! | ||
2 | $! MAKEAPPS.COM | ||
3 | $! Written By: Richard Levitte | ||
4 | $! richard@levitte.org | ||
5 | $! | ||
6 | $! This command file compiles and creates the various engines in form | ||
7 | $! of shared images. They are placed in [.xxx.EXE.ENGINES], where "xxx" | ||
8 | $! is either AXP or VAX depending on your hardware. | ||
9 | $! | ||
10 | $! P1 if this is ENGINES or ALL, the engines will build, otherwise not. | ||
11 | $! | ||
12 | $! P2 DEBUG or NODEBUG to compile with or without debugger information. | ||
13 | $! | ||
14 | $! P3 VAXC for VAX C | ||
15 | $! DECC for DEC C | ||
16 | $! GNUC for GNU C (untested) | ||
17 | $! | ||
18 | $! P4 if defined, sets the TCP/IP libraries to use. UCX or TCPIP is | ||
19 | $! used by default since most other implementations come with a | ||
20 | $! compatibility library. The value must be one of the following: | ||
21 | $! | ||
22 | $! UCX for UCX | ||
23 | $! SOCKETSHR for SOCKETSHR+NETLIB | ||
24 | $! TCPIP for TCPIP (post UCX) | ||
25 | $! | ||
26 | $! P5 if defined, tells the compiler not to use special threads. | ||
27 | $! | ||
28 | $! P6 if defined, denotes which engines to build. If not defined, | ||
29 | $! all available engines are built. | ||
30 | $! | ||
31 | $!----------------------------------------------------------------------------- | ||
32 | $! | ||
33 | $! Set the names of the engines we want to build | ||
34 | $! | ||
35 | $ ENGINES = "," + P6 | ||
36 | $ IF ENGINES .EQS. "," THEN - | ||
37 | ENGINES = ",4758cca,aep,atalla,cswift,chil,nuron,sureware,ubsec" | ||
38 | $! | ||
39 | $! Set the default TCP/IP library to link against if needed | ||
40 | $! | ||
41 | $ TCPIP_LIB = "" | ||
42 | $! | ||
43 | $! Set the architecture name | ||
44 | $! | ||
45 | $ ARCH := VAX | ||
46 | $ IF F$GETSYI("CPU") .GE. 128 THEN ARCH := AXP | ||
47 | $! | ||
48 | $! Set the goal directories, and creat them if necessary | ||
49 | $! | ||
50 | $ OBJ_DIR := SYS$DISK:[-.'ARCH'.OBJ.ENGINES] | ||
51 | $ EXE_DIR := SYS$DISK:[-.'ARCH'.EXE.ENGINES] | ||
52 | $ IF F$PARSE(OBJ_DIR) .EQS. "" THEN CREATE/DIRECTORY 'OBJ_DIR' | ||
53 | $ IF F$PARSE(EXE_DIR) .EQS. "" THEN CREATE/DIRECTORY 'EXE_DIR' | ||
54 | $! | ||
55 | $! Set the goal files, and create them if necessary | ||
56 | $! | ||
57 | $ CRYPTO_LIB :=SYS$DISK:[-.'ARCH'.EXE.CRYPTO]LIBCRYPTO.OLB | ||
58 | $ CRYPTO_EXE :=SYS$DISK:[-.'ARCH'.EXE.CRYPTO]LIBCRYPTO.EXE | ||
59 | $ IF F$SEARCH(CRYPTO_LIB) .EQS. "" THEN LIBRARY/CREATE/OBJECT 'CRYPTO_LIB' | ||
60 | $! | ||
61 | $! OK, time to check options and initialise | ||
62 | $! | ||
63 | $ OPT_PHASE = P1 | ||
64 | $ ACCEPT_PHASE = "ALL,ENGINES" | ||
65 | $ OPT_DEBUG = P2 | ||
66 | $ OPT_COMPILER = P3 | ||
67 | $ OPT_TCPIP_LIB = P4 | ||
68 | $ OPT_SPECIAL_THREADS = P5 | ||
69 | $ | ||
70 | $ GOSUB CHECK_OPTIONS | ||
71 | $ GOSUB INITIALISE | ||
72 | $ GOSUB CHECK_OPT_FILE | ||
73 | $! | ||
74 | $! Define what goes into each engine | ||
75 | $! | ||
76 | $ ENGINE_ = "" | ||
77 | $ IF ARCH .EQS. "VAX" | ||
78 | $ THEN | ||
79 | $ ENGINE_ = "engine_vector.mar" | ||
80 | $ EXTRA_OBJ := ,'OBJ_DIR'ENGINE_VECTOR.OBJ | ||
81 | $ ENDIF | ||
82 | $ ENGINE_4758CCA = "e_4758cca" | ||
83 | $ ENGINE_aep = "e_aep" | ||
84 | $ ENGINE_atalla = "e_atalla" | ||
85 | $ ENGINE_cswift = "e_cswift" | ||
86 | $ ENGINE_chil = "e_chil" | ||
87 | $ ENGINE_nuron = "e_nuron" | ||
88 | $ ENGINE_sureware = "e_sureware" | ||
89 | $ ENGINE_ubsec = "e_ubsec" | ||
90 | $! | ||
91 | $! Define which programs need to be linked with a TCP/IP library | ||
92 | $! | ||
93 | $ TCPIP_ENGINES = ",," | ||
94 | $ IF COMPILER .EQS. "VAXC" THEN - | ||
95 | TCPIP_ENGINES = ",," | ||
96 | $! | ||
97 | $! Set up two loops, one that keeps track of the engines, | ||
98 | $! and one that keeps track of all the files going into | ||
99 | $! the current engine. | ||
100 | $! | ||
101 | $! Here's the start of the engine loop. | ||
102 | $! | ||
103 | $ ENGINE_COUNTER = 0 | ||
104 | $ ENGINE_NEXT: | ||
105 | $! | ||
106 | $! Extract the current engine name, and if we've reached the end, stop | ||
107 | $! | ||
108 | $ ENGINE_NAME = F$ELEMENT(ENGINE_COUNTER,",",ENGINES) | ||
109 | $ IF (ENGINE_NAME.EQS.",") THEN GOTO ENGINE_DONE | ||
110 | $! | ||
111 | $ ENGINE_COUNTER = ENGINE_COUNTER + 1 | ||
112 | $! | ||
113 | $! Set up the engine library names. | ||
114 | $! | ||
115 | $ LIB_ENGINE = "ENGINE_" + ENGINE_NAME | ||
116 | $! | ||
117 | $! Check if the library module name actually is defined | ||
118 | $! | ||
119 | $ IF F$TYPE('LIB_ENGINE') .EQS. "" | ||
120 | $ THEN | ||
121 | $ WRITE SYS$ERROR "" | ||
122 | $ WRITE SYS$ERROR "The module ",ENGINE_NAME," does not exist. Continuing..." | ||
123 | $ WRITE SYS$ERROR "" | ||
124 | $ GOTO ENGINE_NEXT | ||
125 | $ ENDIF | ||
126 | $! | ||
127 | $! Talk to the user | ||
128 | $! | ||
129 | $ IF ENGINE_NAME .NES. "" | ||
130 | $ THEN | ||
131 | $ WRITE SYS$OUTPUT "Compiling The ",ENGINE_NAME," Library Files. (",BUILDALL,")" | ||
132 | $ ELSE | ||
133 | $ WRITE SYS$OUTPUT "Compiling Support Files. (",BUILDALL,")" | ||
134 | $ ENDIF | ||
135 | $! | ||
136 | $! Here's the start of per-engine module loop. | ||
137 | $! | ||
138 | $ FILE_COUNTER = 0 | ||
139 | $ FILE_NEXT: | ||
140 | $! | ||
141 | $! Extract the file name from the file list, and if we've reached the end, stop | ||
142 | $! | ||
143 | $ FILE_NAME = F$ELEMENT(FILE_COUNTER,",",'LIB_ENGINE') | ||
144 | $ IF (FILE_NAME.EQS.",") THEN GOTO FILE_DONE | ||
145 | $! | ||
146 | $ FILE_COUNTER = FILE_COUNTER + 1 | ||
147 | $! | ||
148 | $ IF FILE_NAME .EQS. "" THEN GOTO FILE_NEXT | ||
149 | $! | ||
150 | $! Set up the source and object reference | ||
151 | $! | ||
152 | $ SOURCE_FILE = F$PARSE(FILE_NAME,"SYS$DISK:[].C",,,"SYNTAX_ONLY") | ||
153 | $ OBJECT_FILE = OBJ_DIR + F$PARSE(FILE_NAME,,,"NAME","SYNTAX_ONLY") + ".OBJ" | ||
154 | $! | ||
155 | $! If we get some problem, we just go on trying to build the next module. | ||
156 | $ ON WARNING THEN GOTO FILE_NEXT | ||
157 | $! | ||
158 | $! Check if the module we want to compile is actually there. | ||
159 | $! | ||
160 | $ IF F$SEARCH(SOURCE_FILE) .EQS. "" | ||
161 | $ THEN | ||
162 | $ WRITE SYS$OUTPUT "" | ||
163 | $ WRITE SYS$OUTPUT "The File ",SOURCE_FILE," Doesn't Exist." | ||
164 | $ WRITE SYS$OUTPUT "" | ||
165 | $ GOTO EXIT | ||
166 | $ ENDIF | ||
167 | $! | ||
168 | $! Talk to the user. | ||
169 | $! | ||
170 | $ WRITE SYS$OUTPUT " ",FILE_NAME,"" | ||
171 | $! | ||
172 | $! Do the dirty work. | ||
173 | $! | ||
174 | $ ON ERROR THEN GOTO FILE_NEXT | ||
175 | $ IF FILE_NAME - ".MAR" .NES. FILE_NAME | ||
176 | $ THEN | ||
177 | $ MACRO/OBJECT='OBJECT_FILE' 'SOURCE_FILE' | ||
178 | $ ELSE | ||
179 | $ CC/OBJECT='OBJECT_FILE' 'SOURCE_FILE' | ||
180 | $ ENDIF | ||
181 | $! | ||
182 | $! Now, there are two ways to handle this. We can either build | ||
183 | $! shareable images or stick the engine object file into libcrypto. | ||
184 | $! For now, the latter is NOT supported. | ||
185 | $! | ||
186 | $!!!!! LIBRARY/REPLACE 'CRYPTO_LIB' 'OBJECT_FILE' | ||
187 | $! | ||
188 | $! For shareable libraries, we need to do things a little differently | ||
189 | $! depending on if we link with a TCP/IP library or not. | ||
190 | $! | ||
191 | $ ENGINE_OPT := SYS$DISK:[]'ARCH'.OPT | ||
192 | $ IF TCPIP_LIB .NES. "" | ||
193 | $ THEN | ||
194 | $ LINK/'DEBUGGER'/'TRACEBACK' /SHARE='EXE_DIR''ENGINE_NAME'.EXE - | ||
195 | 'OBJECT_FILE''EXTRA_OBJ', - | ||
196 | 'CRYPTO_LIB'/LIBRARY, - | ||
197 | 'ENGINE_OPT'/OPTION,'TCPIP_LIB','OPT_FILE'/OPTION | ||
198 | $ ELSE | ||
199 | $ LINK/'DEBUGGER'/'TRACEBACK' /SHARE='EXE_DIR''ENGINE_NAME'.EXE - | ||
200 | 'OBJECT_FILE''EXTRA_OBJ', - | ||
201 | 'CRYPTO_LIB'/LIBRARY, - | ||
202 | 'ENGINE_OPT'/OPTION,'OPT_FILE'/OPTION | ||
203 | $ ENDIF | ||
204 | $! | ||
205 | $! Clean up | ||
206 | $! | ||
207 | $ DELETE 'OBJECT_FILE';* | ||
208 | $! | ||
209 | $! Next file | ||
210 | $! | ||
211 | $ GOTO FILE_NEXT | ||
212 | $! | ||
213 | $ FILE_DONE: | ||
214 | $! | ||
215 | $! Next engine | ||
216 | $! | ||
217 | $ GOTO ENGINE_NEXT | ||
218 | $! | ||
219 | $ ENGINE_DONE: | ||
220 | $! | ||
221 | $! Talk to the user | ||
222 | $! | ||
223 | $ WRITE SYS$OUTPUT "All Done..." | ||
224 | $ EXIT: | ||
225 | $ GOSUB CLEANUP | ||
226 | $ EXIT | ||
227 | $! | ||
228 | $! Check For The Link Option FIle. | ||
229 | $! | ||
230 | $ CHECK_OPT_FILE: | ||
231 | $! | ||
232 | $! Check To See If We Need To Make A VAX C Option File. | ||
233 | $! | ||
234 | $ IF (COMPILER.EQS."VAXC") | ||
235 | $ THEN | ||
236 | $! | ||
237 | $! Check To See If We Already Have A VAX C Linker Option File. | ||
238 | $! | ||
239 | $ IF (F$SEARCH(OPT_FILE).EQS."") | ||
240 | $ THEN | ||
241 | $! | ||
242 | $! We Need A VAX C Linker Option File. | ||
243 | $! | ||
244 | $ CREATE 'OPT_FILE' | ||
245 | $DECK | ||
246 | ! | ||
247 | ! Default System Options File To Link Agianst | ||
248 | ! The Sharable VAX C Runtime Library. | ||
249 | ! | ||
250 | SYS$SHARE:VAXCRTL.EXE/SHARE | ||
251 | $EOD | ||
252 | $! | ||
253 | $! End The Option File Check. | ||
254 | $! | ||
255 | $ ENDIF | ||
256 | $! | ||
257 | $! End The VAXC Check. | ||
258 | $! | ||
259 | $ ENDIF | ||
260 | $! | ||
261 | $! Check To See If We Need A GNU C Option File. | ||
262 | $! | ||
263 | $ IF (COMPILER.EQS."GNUC") | ||
264 | $ THEN | ||
265 | $! | ||
266 | $! Check To See If We Already Have A GNU C Linker Option File. | ||
267 | $! | ||
268 | $ IF (F$SEARCH(OPT_FILE).EQS."") | ||
269 | $ THEN | ||
270 | $! | ||
271 | $! We Need A GNU C Linker Option File. | ||
272 | $! | ||
273 | $ CREATE 'OPT_FILE' | ||
274 | $DECK | ||
275 | ! | ||
276 | ! Default System Options File To Link Agianst | ||
277 | ! The Sharable C Runtime Library. | ||
278 | ! | ||
279 | GNU_CC:[000000]GCCLIB/LIBRARY | ||
280 | SYS$SHARE:VAXCRTL/SHARE | ||
281 | $EOD | ||
282 | $! | ||
283 | $! End The Option File Check. | ||
284 | $! | ||
285 | $ ENDIF | ||
286 | $! | ||
287 | $! End The GNU C Check. | ||
288 | $! | ||
289 | $ ENDIF | ||
290 | $! | ||
291 | $! Check To See If We Need A DEC C Option File. | ||
292 | $! | ||
293 | $ IF (COMPILER.EQS."DECC") | ||
294 | $ THEN | ||
295 | $! | ||
296 | $! Check To See If We Already Have A DEC C Linker Option File. | ||
297 | $! | ||
298 | $ IF (F$SEARCH(OPT_FILE).EQS."") | ||
299 | $ THEN | ||
300 | $! | ||
301 | $! Figure Out If We Need An AXP Or A VAX Linker Option File. | ||
302 | $! | ||
303 | $ IF ARCH .EQS. "VAX" | ||
304 | $ THEN | ||
305 | $! | ||
306 | $! We Need A DEC C Linker Option File For VAX. | ||
307 | $! | ||
308 | $ CREATE 'OPT_FILE' | ||
309 | $DECK | ||
310 | ! | ||
311 | ! Default System Options File To Link Agianst | ||
312 | ! The Sharable DEC C Runtime Library. | ||
313 | ! | ||
314 | SYS$SHARE:DECC$SHR.EXE/SHARE | ||
315 | $EOD | ||
316 | $! | ||
317 | $! Else... | ||
318 | $! | ||
319 | $ ELSE | ||
320 | $! | ||
321 | $! Create The AXP Linker Option File. | ||
322 | $! | ||
323 | $ CREATE 'OPT_FILE' | ||
324 | $DECK | ||
325 | ! | ||
326 | ! Default System Options File For AXP To Link Agianst | ||
327 | ! The Sharable C Runtime Library. | ||
328 | ! | ||
329 | SYS$SHARE:CMA$OPEN_LIB_SHR/SHARE | ||
330 | SYS$SHARE:CMA$OPEN_RTL/SHARE | ||
331 | $EOD | ||
332 | $! | ||
333 | $! End The VAX/AXP DEC C Option File Check. | ||
334 | $! | ||
335 | $ ENDIF | ||
336 | $! | ||
337 | $! End The Option File Search. | ||
338 | $! | ||
339 | $ ENDIF | ||
340 | $! | ||
341 | $! End The DEC C Check. | ||
342 | $! | ||
343 | $ ENDIF | ||
344 | $! | ||
345 | $! Tell The User What Linker Option File We Are Using. | ||
346 | $! | ||
347 | $ WRITE SYS$OUTPUT "Using Linker Option File ",OPT_FILE,"." | ||
348 | $! | ||
349 | $! Time To RETURN. | ||
350 | $! | ||
351 | $ RETURN | ||
352 | $! | ||
353 | $! Check The User's Options. | ||
354 | $! | ||
355 | $ CHECK_OPTIONS: | ||
356 | $! | ||
357 | $! Check To See If OPT_PHASE Is Blank. | ||
358 | $! | ||
359 | $ IF (OPT_PHASE.EQS."ALL") | ||
360 | $ THEN | ||
361 | $! | ||
362 | $! OPT_PHASE Is Blank, So Build Everything. | ||
363 | $! | ||
364 | $ BUILDALL = "ALL" | ||
365 | $! | ||
366 | $! Else... | ||
367 | $! | ||
368 | $ ELSE | ||
369 | $! | ||
370 | $! Else, Check To See If OPT_PHASE Has A Valid Arguement. | ||
371 | $! | ||
372 | $ IF ("," + ACCEPT_PHASE + ",") - ("," + OPT_PHASE + ",") - | ||
373 | .NES. ("," + ACCEPT_PHASE + ",") | ||
374 | $ THEN | ||
375 | $! | ||
376 | $! A Valid Arguement. | ||
377 | $! | ||
378 | $ BUILDALL = OPT_PHASE | ||
379 | $! | ||
380 | $! Else... | ||
381 | $! | ||
382 | $ ELSE | ||
383 | $! | ||
384 | $! Tell The User We Don't Know What They Want. | ||
385 | $! | ||
386 | $ WRITE SYS$OUTPUT "" | ||
387 | $ WRITE SYS$OUTPUT "The option ",OPT_PHASE," is invalid. The valid options are:" | ||
388 | $ WRITE SYS$OUTPUT "" | ||
389 | $ IF ("," + ACCEPT_PHASE + ",") - ",ALL," - | ||
390 | .NES. ("," + ACCEPT_PHASE + ",") THEN - | ||
391 | WRITE SYS$OUTPUT " ALL : just build everything." | ||
392 | $ IF ("," + ACCEPT_PHASE + ",") - ",ENGINES," - | ||
393 | .NES. ("," + ACCEPT_PHASE + ",") THEN - | ||
394 | WRITE SYS$OUTPUT " ENGINES : to compile just the [.xxx.EXE.ENGINES]*.EXE hareable images." | ||
395 | $ WRITE SYS$OUTPUT "" | ||
396 | $ WRITE SYS$OUTPUT " where 'xxx' stands for:" | ||
397 | $ WRITE SYS$OUTPUT "" | ||
398 | $ WRITE SYS$OUTPUT " AXP : Alpha architecture." | ||
399 | $ WRITE SYS$OUTPUT " VAX : VAX architecture." | ||
400 | $ WRITE SYS$OUTPUT "" | ||
401 | $! | ||
402 | $! Time To EXIT. | ||
403 | $! | ||
404 | $ EXIT | ||
405 | $! | ||
406 | $! End The Valid Arguement Check. | ||
407 | $! | ||
408 | $ ENDIF | ||
409 | $! | ||
410 | $! End The OPT_PHASE Check. | ||
411 | $! | ||
412 | $ ENDIF | ||
413 | $! | ||
414 | $! Check To See If OPT_DEBUG Is Blank. | ||
415 | $! | ||
416 | $ IF (OPT_DEBUG.EQS."NODEBUG") | ||
417 | $ THEN | ||
418 | $! | ||
419 | $! OPT_DEBUG Is NODEBUG, So Compile Without The Debugger Information. | ||
420 | $! | ||
421 | $ DEBUGGER = "NODEBUG" | ||
422 | $ TRACEBACK = "NOTRACEBACK" | ||
423 | $ GCC_OPTIMIZE = "OPTIMIZE" | ||
424 | $ CC_OPTIMIZE = "OPTIMIZE" | ||
425 | $ MACRO_OPTIMIZE = "OPTIMIZE" | ||
426 | $ WRITE SYS$OUTPUT "No Debugger Information Will Be Produced During Compile." | ||
427 | $ WRITE SYS$OUTPUT "Compiling With Compiler Optimization." | ||
428 | $ ELSE | ||
429 | $! | ||
430 | $! Check To See If We Are To Compile With Debugger Information. | ||
431 | $! | ||
432 | $ IF (OPT_DEBUG.EQS."DEBUG") | ||
433 | $ THEN | ||
434 | $! | ||
435 | $! Compile With Debugger Information. | ||
436 | $! | ||
437 | $ DEBUGGER = "DEBUG" | ||
438 | $ TRACEBACK = "TRACEBACK" | ||
439 | $ GCC_OPTIMIZE = "NOOPTIMIZE" | ||
440 | $ CC_OPTIMIZE = "NOOPTIMIZE" | ||
441 | $ MACRO_OPTIMIZE = "NOOPTIMIZE" | ||
442 | $ WRITE SYS$OUTPUT "Debugger Information Will Be Produced During Compile." | ||
443 | $ WRITE SYS$OUTPUT "Compiling Without Compiler Optimization." | ||
444 | $ ELSE | ||
445 | $! | ||
446 | $! They Entered An Invalid Option.. | ||
447 | $! | ||
448 | $ WRITE SYS$OUTPUT "" | ||
449 | $ WRITE SYS$OUTPUT "The Option ",OPT_DEBUG," Is Invalid. The Valid Options Are:" | ||
450 | $ WRITE SYS$OUTPUT "" | ||
451 | $ WRITE SYS$OUTPUT " DEBUG : Compile With The Debugger Information." | ||
452 | $ WRITE SYS$OUTPUT " NODEBUG : Compile Without The Debugger Information." | ||
453 | $ WRITE SYS$OUTPUT "" | ||
454 | $! | ||
455 | $! Time To EXIT. | ||
456 | $! | ||
457 | $ EXIT | ||
458 | $! | ||
459 | $! End The Valid Arguement Check. | ||
460 | $! | ||
461 | $ ENDIF | ||
462 | $! | ||
463 | $! End The OPT_DEBUG Check. | ||
464 | $! | ||
465 | $ ENDIF | ||
466 | $! | ||
467 | $! Special Threads For OpenVMS v7.1 Or Later | ||
468 | $! | ||
469 | $! Written By: Richard Levitte | ||
470 | $! richard@levitte.org | ||
471 | $! | ||
472 | $! | ||
473 | $! Check To See If We Have A Option For OPT_SPECIAL_THREADS. | ||
474 | $! | ||
475 | $ IF (OPT_SPECIAL_THREADS.EQS."") | ||
476 | $ THEN | ||
477 | $! | ||
478 | $! Get The Version Of VMS We Are Using. | ||
479 | $! | ||
480 | $ ISSEVEN := | ||
481 | $ TMP = F$ELEMENT(0,"-",F$EXTRACT(1,4,F$GETSYI("VERSION"))) | ||
482 | $ TMP = F$INTEGER(F$ELEMENT(0,".",TMP)+F$ELEMENT(1,".",TMP)) | ||
483 | $! | ||
484 | $! Check To See If The VMS Version Is v7.1 Or Later. | ||
485 | $! | ||
486 | $ IF (TMP.GE.71) | ||
487 | $ THEN | ||
488 | $! | ||
489 | $! We Have OpenVMS v7.1 Or Later, So Use The Special Threads. | ||
490 | $! | ||
491 | $ ISSEVEN := ,PTHREAD_USE_D4 | ||
492 | $! | ||
493 | $! End The VMS Version Check. | ||
494 | $! | ||
495 | $ ENDIF | ||
496 | $! | ||
497 | $! End The OPT_SPECIAL_THREADS Check. | ||
498 | $! | ||
499 | $ ENDIF | ||
500 | $! | ||
501 | $! Check To See If OPT_COMPILER Is Blank. | ||
502 | $! | ||
503 | $ IF (OPT_COMPILER.EQS."") | ||
504 | $ THEN | ||
505 | $! | ||
506 | $! O.K., The User Didn't Specify A Compiler, Let's Try To | ||
507 | $! Find Out Which One To Use. | ||
508 | $! | ||
509 | $! Check To See If We Have GNU C. | ||
510 | $! | ||
511 | $ IF (F$TRNLNM("GNU_CC").NES."") | ||
512 | $ THEN | ||
513 | $! | ||
514 | $! Looks Like GNUC, Set To Use GNUC. | ||
515 | $! | ||
516 | $ OPT_COMPILER = "GNUC" | ||
517 | $! | ||
518 | $! Else... | ||
519 | $! | ||
520 | $ ELSE | ||
521 | $! | ||
522 | $! Check To See If We Have VAXC Or DECC. | ||
523 | $! | ||
524 | $ IF (ARCH.EQS."AXP").OR.(F$TRNLNM("DECC$CC_DEFAULT").NES."") | ||
525 | $ THEN | ||
526 | $! | ||
527 | $! Looks Like DECC, Set To Use DECC. | ||
528 | $! | ||
529 | $ OPT_COMPILER = "DECC" | ||
530 | $! | ||
531 | $! Else... | ||
532 | $! | ||
533 | $ ELSE | ||
534 | $! | ||
535 | $! Looks Like VAXC, Set To Use VAXC. | ||
536 | $! | ||
537 | $ OPT_COMPILER = "VAXC" | ||
538 | $! | ||
539 | $! End The VAXC Compiler Check. | ||
540 | $! | ||
541 | $ ENDIF | ||
542 | $! | ||
543 | $! End The DECC & VAXC Compiler Check. | ||
544 | $! | ||
545 | $ ENDIF | ||
546 | $! | ||
547 | $! End The Compiler Check. | ||
548 | $! | ||
549 | $ ENDIF | ||
550 | $! | ||
551 | $! Check To See If We Have A Option For OPT_TCPIP_LIB. | ||
552 | $! | ||
553 | $ IF (OPT_TCPIP_LIB.EQS."") | ||
554 | $ THEN | ||
555 | $! | ||
556 | $! Find out what socket library we have available | ||
557 | $! | ||
558 | $ IF F$PARSE("SOCKETSHR:") .NES. "" | ||
559 | $ THEN | ||
560 | $! | ||
561 | $! We have SOCKETSHR, and it is my opinion that it's the best to use. | ||
562 | $! | ||
563 | $ OPT_TCPIP_LIB = "SOCKETSHR" | ||
564 | $! | ||
565 | $! Tell the user | ||
566 | $! | ||
567 | $ WRITE SYS$OUTPUT "Using SOCKETSHR for TCP/IP" | ||
568 | $! | ||
569 | $! Else, let's look for something else | ||
570 | $! | ||
571 | $ ELSE | ||
572 | $! | ||
573 | $! Like UCX (the reason to do this before Multinet is that the UCX | ||
574 | $! emulation is easier to use...) | ||
575 | $! | ||
576 | $ IF F$TRNLNM("UCX$IPC_SHR") .NES. "" - | ||
577 | .OR. F$PARSE("SYS$SHARE:UCX$IPC_SHR.EXE") .NES. "" - | ||
578 | .OR. F$PARSE("SYS$LIBRARY:UCX$IPC.OLB") .NES. "" | ||
579 | $ THEN | ||
580 | $! | ||
581 | $! Last resort: a UCX or UCX-compatible library | ||
582 | $! | ||
583 | $ OPT_TCPIP_LIB = "UCX" | ||
584 | $! | ||
585 | $! Tell the user | ||
586 | $! | ||
587 | $ WRITE SYS$OUTPUT "Using UCX or an emulation thereof for TCP/IP" | ||
588 | $! | ||
589 | $! That was all... | ||
590 | $! | ||
591 | $ ENDIF | ||
592 | $ ENDIF | ||
593 | $ ENDIF | ||
594 | $! | ||
595 | $! Set Up Initial CC Definitions, Possibly With User Ones | ||
596 | $! | ||
597 | $ CCDEFS = "TCPIP_TYPE_''OPT_TCPIP_LIB',DSO_VMS" | ||
598 | $ IF F$TYPE(USER_CCDEFS) .NES. "" THEN CCDEFS = CCDEFS + "," + USER_CCDEFS | ||
599 | $ CCEXTRAFLAGS = "" | ||
600 | $ IF F$TYPE(USER_CCFLAGS) .NES. "" THEN CCEXTRAFLAGS = USER_CCFLAGS | ||
601 | $ CCDISABLEWARNINGS = "LONGLONGTYPE,LONGLONGSUFX" | ||
602 | $ IF F$TYPE(USER_CCDISABLEWARNINGS) .NES. "" THEN - | ||
603 | CCDISABLEWARNINGS = CCDISABLEWARNINGS + "," + USER_CCDISABLEWARNINGS | ||
604 | $! | ||
605 | $! Check To See If The User Entered A Valid Paramter. | ||
606 | $! | ||
607 | $ IF (OPT_COMPILER.EQS."VAXC").OR.(OPT_COMPILER.EQS."DECC").OR.(OPT_COMPILER.EQS."GNUC") | ||
608 | $ THEN | ||
609 | $! | ||
610 | $! Check To See If The User Wanted DECC. | ||
611 | $! | ||
612 | $ IF (OPT_COMPILER.EQS."DECC") | ||
613 | $ THEN | ||
614 | $! | ||
615 | $! Looks Like DECC, Set To Use DECC. | ||
616 | $! | ||
617 | $ COMPILER = "DECC" | ||
618 | $! | ||
619 | $! Tell The User We Are Using DECC. | ||
620 | $! | ||
621 | $ WRITE SYS$OUTPUT "Using DECC 'C' Compiler." | ||
622 | $! | ||
623 | $! Use DECC... | ||
624 | $! | ||
625 | $ CC = "CC" | ||
626 | $ IF ARCH.EQS."VAX" .AND. F$TRNLNM("DECC$CC_DEFAULT").NES."/DECC" - | ||
627 | THEN CC = "CC/DECC" | ||
628 | $ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/STANDARD=ANSI89" + - | ||
629 | "/NOLIST/PREFIX=ALL" + - | ||
630 | "/INCLUDE=(SYS$DISK:[],SYS$DISK:[.VENDOR_DEFNS])" + - | ||
631 | CCEXTRAFLAGS | ||
632 | $! | ||
633 | $! Define The Linker Options File Name. | ||
634 | $! | ||
635 | $ OPT_FILE = "SYS$DISK:[]VAX_DECC_OPTIONS.OPT" | ||
636 | $! | ||
637 | $! End DECC Check. | ||
638 | $! | ||
639 | $ ENDIF | ||
640 | $! | ||
641 | $! Check To See If We Are To Use VAXC. | ||
642 | $! | ||
643 | $ IF (OPT_COMPILER.EQS."VAXC") | ||
644 | $ THEN | ||
645 | $! | ||
646 | $! Looks Like VAXC, Set To Use VAXC. | ||
647 | $! | ||
648 | $ COMPILER = "VAXC" | ||
649 | $! | ||
650 | $! Tell The User We Are Using VAX C. | ||
651 | $! | ||
652 | $ WRITE SYS$OUTPUT "Using VAXC 'C' Compiler." | ||
653 | $! | ||
654 | $! Compile Using VAXC. | ||
655 | $! | ||
656 | $ CC = "CC" | ||
657 | $ IF ARCH.EQS."AXP" | ||
658 | $ THEN | ||
659 | $ WRITE SYS$OUTPUT "There is no VAX C on Alpha!" | ||
660 | $ EXIT | ||
661 | $ ENDIF | ||
662 | $ IF F$TRNLNM("DECC$CC_DEFAULT").EQS."/DECC" THEN CC = "CC/VAXC" | ||
663 | $ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/NOLIST" + - | ||
664 | "/INCLUDE=(SYS$DISK:[],SYS$DISK:[-],SYS$DISK:[.ENGINE.VENDOR_DEFNS])" + - | ||
665 | CCEXTRAFLAGS | ||
666 | $ CCDEFS = """VAXC""," + CCDEFS | ||
667 | $! | ||
668 | $! Define <sys> As SYS$COMMON:[SYSLIB] | ||
669 | $! | ||
670 | $ DEFINE/NOLOG SYS SYS$COMMON:[SYSLIB] | ||
671 | $! | ||
672 | $! Define The Linker Options File Name. | ||
673 | $! | ||
674 | $ OPT_FILE = "SYS$DISK:[]VAX_VAXC_OPTIONS.OPT" | ||
675 | $! | ||
676 | $! End VAXC Check | ||
677 | $! | ||
678 | $ ENDIF | ||
679 | $! | ||
680 | $! Check To See If We Are To Use GNU C. | ||
681 | $! | ||
682 | $ IF (OPT_COMPILER.EQS."GNUC") | ||
683 | $ THEN | ||
684 | $! | ||
685 | $! Looks Like GNUC, Set To Use GNUC. | ||
686 | $! | ||
687 | $ COMPILER = "GNUC" | ||
688 | $! | ||
689 | $! Tell The User We Are Using GNUC. | ||
690 | $! | ||
691 | $ WRITE SYS$OUTPUT "Using GNU 'C' Compiler." | ||
692 | $! | ||
693 | $! Use GNU C... | ||
694 | $! | ||
695 | $ CC = "GCC/NOCASE_HACK/''GCC_OPTIMIZE'/''DEBUGGER'/NOLIST" + - | ||
696 | "/INCLUDE=(SYS$DISK:[],SYS$DISK:[-],SYS$DISK:[.ENGINE.VENDOR_DEFNS])" + - | ||
697 | CCEXTRAFLAGS | ||
698 | $! | ||
699 | $! Define The Linker Options File Name. | ||
700 | $! | ||
701 | $ OPT_FILE = "SYS$DISK:[]VAX_GNUC_OPTIONS.OPT" | ||
702 | $! | ||
703 | $! End The GNU C Check. | ||
704 | $! | ||
705 | $ ENDIF | ||
706 | $! | ||
707 | $! Set up default defines | ||
708 | $! | ||
709 | $ CCDEFS = """FLAT_INC=1""," + CCDEFS | ||
710 | $! | ||
711 | $! Finish up the definition of CC. | ||
712 | $! | ||
713 | $ IF COMPILER .EQS. "DECC" | ||
714 | $ THEN | ||
715 | $ IF CCDISABLEWARNINGS .NES. "" | ||
716 | $ THEN | ||
717 | $ CCDISABLEWARNINGS = "/WARNING=(DISABLE=(" + CCDISABLEWARNINGS + "))" | ||
718 | $ ENDIF | ||
719 | $ ELSE | ||
720 | $ CCDISABLEWARNINGS = "" | ||
721 | $ ENDIF | ||
722 | $ CC = CC + "/DEFINE=(" + CCDEFS + ")" + CCDISABLEWARNINGS | ||
723 | $! | ||
724 | $! Show user the result | ||
725 | $! | ||
726 | $ WRITE/SYMBOL SYS$OUTPUT "Main C Compiling Command: ",CC | ||
727 | $! | ||
728 | $! Else The User Entered An Invalid Arguement. | ||
729 | $! | ||
730 | $ ELSE | ||
731 | $! | ||
732 | $! Tell The User We Don't Know What They Want. | ||
733 | $! | ||
734 | $ WRITE SYS$OUTPUT "" | ||
735 | $ WRITE SYS$OUTPUT "The Option ",OPT_COMPILER," Is Invalid. The Valid Options Are:" | ||
736 | $ WRITE SYS$OUTPUT "" | ||
737 | $ WRITE SYS$OUTPUT " VAXC : To Compile With VAX C." | ||
738 | $ WRITE SYS$OUTPUT " DECC : To Compile With DEC C." | ||
739 | $ WRITE SYS$OUTPUT " GNUC : To Compile With GNU C." | ||
740 | $ WRITE SYS$OUTPUT "" | ||
741 | $! | ||
742 | $! Time To EXIT. | ||
743 | $! | ||
744 | $ EXIT | ||
745 | $! | ||
746 | $! End The Valid Arguement Check. | ||
747 | $! | ||
748 | $ ENDIF | ||
749 | $! | ||
750 | $! Build a MACRO command for the architecture at hand | ||
751 | $! | ||
752 | $ IF ARCH .EQS. "VAX" THEN MACRO = "MACRO/''DEBUGGER'" | ||
753 | $ IF ARCH .EQS. "AXP" THEN MACRO = "MACRO/MIGRATION/''DEBUGGER'/''MACRO_OPTIMIZE'" | ||
754 | $! | ||
755 | $! Show user the result | ||
756 | $! | ||
757 | $ WRITE/SYMBOL SYS$OUTPUT "Main MACRO Compiling Command: ",MACRO | ||
758 | $! | ||
759 | $! Time to check the contents, and to make sure we get the correct library. | ||
760 | $! | ||
761 | $ IF OPT_TCPIP_LIB.EQS."SOCKETSHR" .OR. OPT_TCPIP_LIB.EQS."MULTINET" - | ||
762 | .OR. OPT_TCPIP_LIB.EQS."UCX" .OR. OPT_TCPIP_LIB.EQS."TCPIP" - | ||
763 | .OR. OPT_TCPIP_LIB.EQS."NONE" | ||
764 | $ THEN | ||
765 | $! | ||
766 | $! Check to see if SOCKETSHR was chosen | ||
767 | $! | ||
768 | $ IF OPT_TCPIP_LIB.EQS."SOCKETSHR" | ||
769 | $ THEN | ||
770 | $! | ||
771 | $! Set the library to use SOCKETSHR | ||
772 | $! | ||
773 | $ TCPIP_LIB = "SYS$DISK:[-.VMS]SOCKETSHR_SHR.OPT/OPT" | ||
774 | $! | ||
775 | $! Done with SOCKETSHR | ||
776 | $! | ||
777 | $ ENDIF | ||
778 | $! | ||
779 | $! Check to see if MULTINET was chosen | ||
780 | $! | ||
781 | $ IF OPT_TCPIP_LIB.EQS."MULTINET" | ||
782 | $ THEN | ||
783 | $! | ||
784 | $! Set the library to use UCX emulation. | ||
785 | $! | ||
786 | $ OPT_TCPIP_LIB = "UCX" | ||
787 | $! | ||
788 | $! Done with MULTINET | ||
789 | $! | ||
790 | $ ENDIF | ||
791 | $! | ||
792 | $! Check to see if UCX was chosen | ||
793 | $! | ||
794 | $ IF OPT_TCPIP_LIB.EQS."UCX" | ||
795 | $ THEN | ||
796 | $! | ||
797 | $! Set the library to use UCX. | ||
798 | $! | ||
799 | $ TCPIP_LIB = "SYS$DISK:[-.VMS]UCX_SHR_DECC.OPT/OPT" | ||
800 | $ IF F$TRNLNM("UCX$IPC_SHR") .NES. "" | ||
801 | $ THEN | ||
802 | $ TCPIP_LIB = "SYS$DISK:[-.VMS]UCX_SHR_DECC_LOG.OPT/OPT" | ||
803 | $ ELSE | ||
804 | $ IF COMPILER .NES. "DECC" .AND. ARCH .EQS. "VAX" THEN - | ||
805 | TCPIP_LIB = "SYS$DISK:[-.VMS]UCX_SHR_VAXC.OPT/OPT" | ||
806 | $ ENDIF | ||
807 | $! | ||
808 | $! Done with UCX | ||
809 | $! | ||
810 | $ ENDIF | ||
811 | $! | ||
812 | $! Check to see if TCPIP was chosen | ||
813 | $! | ||
814 | $ IF OPT_TCPIP_LIB.EQS."TCPIP" | ||
815 | $ THEN | ||
816 | $! | ||
817 | $! Set the library to use TCPIP (post UCX). | ||
818 | $! | ||
819 | $ TCPIP_LIB = "SYS$DISK:[-.VMS]TCPIP_SHR_DECC.OPT/OPT" | ||
820 | $! | ||
821 | $! Done with TCPIP | ||
822 | $! | ||
823 | $ ENDIF | ||
824 | $! | ||
825 | $! Check to see if NONE was chosen | ||
826 | $! | ||
827 | $ IF OPT_TCPIP_LIB.EQS."NONE" | ||
828 | $ THEN | ||
829 | $! | ||
830 | $! Do not use a TCPIP library. | ||
831 | $! | ||
832 | $ TCPIP_LIB = "" | ||
833 | $! | ||
834 | $! Done with TCPIP | ||
835 | $! | ||
836 | $ ENDIF | ||
837 | $! | ||
838 | $! Print info | ||
839 | $! | ||
840 | $ WRITE SYS$OUTPUT "TCP/IP library spec: ", TCPIP_LIB | ||
841 | $! | ||
842 | $! Else The User Entered An Invalid Arguement. | ||
843 | $! | ||
844 | $ ELSE | ||
845 | $! | ||
846 | $! Tell The User We Don't Know What They Want. | ||
847 | $! | ||
848 | $ WRITE SYS$OUTPUT "" | ||
849 | $ WRITE SYS$OUTPUT "The Option ",OPT_TCPIP_LIB," Is Invalid. The Valid Options Are:" | ||
850 | $ WRITE SYS$OUTPUT "" | ||
851 | $ WRITE SYS$OUTPUT " SOCKETSHR : To link with SOCKETSHR TCP/IP library." | ||
852 | $ WRITE SYS$OUTPUT " UCX : To link with UCX TCP/IP library." | ||
853 | $ WRITE SYS$OUTPUT " TCPIP : To link with TCPIP (post UCX) TCP/IP library." | ||
854 | $ WRITE SYS$OUTPUT "" | ||
855 | $! | ||
856 | $! Time To EXIT. | ||
857 | $! | ||
858 | $ EXIT | ||
859 | $! | ||
860 | $! Done with TCP/IP libraries | ||
861 | $! | ||
862 | $ ENDIF | ||
863 | $! | ||
864 | $! Time To RETURN... | ||
865 | $! | ||
866 | $ RETURN | ||
867 | $! | ||
868 | $ INITIALISE: | ||
869 | $! | ||
870 | $! Save old value of the logical name OPENSSL | ||
871 | $! | ||
872 | $ __SAVE_OPENSSL = F$TRNLNM("OPENSSL","LNM$PROCESS_TABLE") | ||
873 | $! | ||
874 | $! Save directory information | ||
875 | $! | ||
876 | $ __HERE = F$PARSE(F$PARSE("A.;",F$ENVIRONMENT("PROCEDURE"))-"A.;","[]A.;") - "A.;" | ||
877 | $ __HERE = F$EDIT(__HERE,"UPCASE") | ||
878 | $ __TOP = __HERE - "ENGINES]" | ||
879 | $ __INCLUDE = __TOP + "INCLUDE.OPENSSL]" | ||
880 | $! | ||
881 | $! Set up the logical name OPENSSL to point at the include directory | ||
882 | $! | ||
883 | $ DEFINE OPENSSL/NOLOG '__INCLUDE' | ||
884 | $! | ||
885 | $! Done | ||
886 | $! | ||
887 | $ RETURN | ||
888 | $! | ||
889 | $ CLEANUP: | ||
890 | $! | ||
891 | $! Restore the logical name OPENSSL if it had a value | ||
892 | $! | ||
893 | $ IF __SAVE_OPENSSL .EQS. "" | ||
894 | $ THEN | ||
895 | $ DEASSIGN OPENSSL | ||
896 | $ ELSE | ||
897 | $ DEFINE/NOLOG OPENSSL '__SAVE_OPENSSL' | ||
898 | $ ENDIF | ||
899 | $! | ||
900 | $! Done | ||
901 | $! | ||
902 | $ RETURN | ||
diff --git a/src/lib/libssl/src/ms/README b/src/lib/libssl/src/ms/README index 5804a2d84a..7a45db1081 100644 --- a/src/lib/libssl/src/ms/README +++ b/src/lib/libssl/src/ms/README | |||
@@ -6,13 +6,8 @@ The results will be in the out directory. | |||
6 | 6 | ||
7 | These makefiles and def files were generated my typing | 7 | These makefiles and def files were generated my typing |
8 | 8 | ||
9 | perl util\mk1mf.pl VC-MSDOS no-sock >ms/msdos.mak | ||
10 | perl util\mk1mf.pl VC-W31-32 >ms/w31.mak | ||
11 | perl util\mk1mf.pl VC-W31-32 dll >ms/w31dll.mak | ||
12 | perl util\mk1mf.pl VC-NT >ms/nt.mak | 9 | perl util\mk1mf.pl VC-NT >ms/nt.mak |
13 | perl util\mk1mf.pl VC-NT dll >ms/ntdll.mak | 10 | perl util\mk1mf.pl VC-NT dll >ms/ntdll.mak |
14 | 11 | ||
15 | perl util\mkdef.pl 16 crypto > ms/crypto16.def | ||
16 | perl util\mkdef.pl 32 crypto > ms/crypto32.def | 12 | perl util\mkdef.pl 32 crypto > ms/crypto32.def |
17 | perl util\mkdef.pl 16 ssl > ms/ssl16.def | ||
18 | perl util\mkdef.pl 32 ssl > ms/ssl32.def | 13 | perl util\mkdef.pl 32 ssl > ms/ssl32.def |
diff --git a/src/lib/libssl/src/ms/applink.c b/src/lib/libssl/src/ms/applink.c new file mode 100644 index 0000000000..54a0a64262 --- /dev/null +++ b/src/lib/libssl/src/ms/applink.c | |||
@@ -0,0 +1,94 @@ | |||
1 | #define APPLINK_STDIN 1 | ||
2 | #define APPLINK_STDOUT 2 | ||
3 | #define APPLINK_STDERR 3 | ||
4 | #define APPLINK_FPRINTF 4 | ||
5 | #define APPLINK_FGETS 5 | ||
6 | #define APPLINK_FREAD 6 | ||
7 | #define APPLINK_FWRITE 7 | ||
8 | #define APPLINK_FSETMOD 8 | ||
9 | #define APPLINK_FEOF 9 | ||
10 | #define APPLINK_FCLOSE 10 /* should not be used */ | ||
11 | |||
12 | #define APPLINK_FOPEN 11 /* solely for completeness */ | ||
13 | #define APPLINK_FSEEK 12 | ||
14 | #define APPLINK_FTELL 13 | ||
15 | #define APPLINK_FFLUSH 14 | ||
16 | #define APPLINK_FERROR 15 | ||
17 | #define APPLINK_CLEARERR 16 | ||
18 | #define APPLINK_FILENO 17 /* to be used with below */ | ||
19 | |||
20 | #define APPLINK_OPEN 18 /* formally can't be used, as flags can vary */ | ||
21 | #define APPLINK_READ 19 | ||
22 | #define APPLINK_WRITE 20 | ||
23 | #define APPLINK_LSEEK 21 | ||
24 | #define APPLINK_CLOSE 22 | ||
25 | #define APPLINK_MAX 22 /* always same as last macro */ | ||
26 | |||
27 | #ifndef APPMACROS_ONLY | ||
28 | #include <stdio.h> | ||
29 | #include <io.h> | ||
30 | #include <fcntl.h> | ||
31 | |||
32 | static void *app_stdin(void) { return stdin; } | ||
33 | static void *app_stdout(void) { return stdout; } | ||
34 | static void *app_stderr(void) { return stderr; } | ||
35 | static int app_feof(FILE *fp) { return feof(fp); } | ||
36 | static int app_ferror(FILE *fp) { return ferror(fp); } | ||
37 | static void app_clearerr(FILE *fp) { clearerr(fp); } | ||
38 | static int app_fileno(FILE *fp) { return _fileno(fp); } | ||
39 | static int app_fsetmod(FILE *fp,char mod) | ||
40 | { return _setmode (_fileno(fp),mod=='b'?_O_BINARY:_O_TEXT); } | ||
41 | |||
42 | #ifdef __cplusplus | ||
43 | extern "C" { | ||
44 | #endif | ||
45 | |||
46 | __declspec(dllexport) | ||
47 | void ** | ||
48 | #if defined(__BORLANDC__) | ||
49 | __stdcall /* __stdcall appears to be the only way to get the name | ||
50 | * decoration right with Borland C. Otherwise it works | ||
51 | * purely incidentally, as we pass no parameters. */ | ||
52 | #else | ||
53 | __cdecl | ||
54 | #endif | ||
55 | OPENSSL_Applink(void) | ||
56 | { static int once=1; | ||
57 | static void *OPENSSL_ApplinkTable[APPLINK_MAX+1]={(void *)APPLINK_MAX}; | ||
58 | |||
59 | if (once) | ||
60 | { OPENSSL_ApplinkTable[APPLINK_STDIN] = app_stdin; | ||
61 | OPENSSL_ApplinkTable[APPLINK_STDOUT] = app_stdout; | ||
62 | OPENSSL_ApplinkTable[APPLINK_STDERR] = app_stderr; | ||
63 | OPENSSL_ApplinkTable[APPLINK_FPRINTF] = fprintf; | ||
64 | OPENSSL_ApplinkTable[APPLINK_FGETS] = fgets; | ||
65 | OPENSSL_ApplinkTable[APPLINK_FREAD] = fread; | ||
66 | OPENSSL_ApplinkTable[APPLINK_FWRITE] = fwrite; | ||
67 | OPENSSL_ApplinkTable[APPLINK_FSETMOD] = app_fsetmod; | ||
68 | OPENSSL_ApplinkTable[APPLINK_FEOF] = app_feof; | ||
69 | OPENSSL_ApplinkTable[APPLINK_FCLOSE] = fclose; | ||
70 | |||
71 | OPENSSL_ApplinkTable[APPLINK_FOPEN] = fopen; | ||
72 | OPENSSL_ApplinkTable[APPLINK_FSEEK] = fseek; | ||
73 | OPENSSL_ApplinkTable[APPLINK_FTELL] = ftell; | ||
74 | OPENSSL_ApplinkTable[APPLINK_FFLUSH] = fflush; | ||
75 | OPENSSL_ApplinkTable[APPLINK_FERROR] = app_ferror; | ||
76 | OPENSSL_ApplinkTable[APPLINK_CLEARERR] = app_clearerr; | ||
77 | OPENSSL_ApplinkTable[APPLINK_FILENO] = app_fileno; | ||
78 | |||
79 | OPENSSL_ApplinkTable[APPLINK_OPEN] = _open; | ||
80 | OPENSSL_ApplinkTable[APPLINK_READ] = _read; | ||
81 | OPENSSL_ApplinkTable[APPLINK_WRITE] = _write; | ||
82 | OPENSSL_ApplinkTable[APPLINK_LSEEK] = _lseek; | ||
83 | OPENSSL_ApplinkTable[APPLINK_CLOSE] = _close; | ||
84 | |||
85 | once = 0; | ||
86 | } | ||
87 | |||
88 | return OPENSSL_ApplinkTable; | ||
89 | } | ||
90 | |||
91 | #ifdef __cplusplus | ||
92 | } | ||
93 | #endif | ||
94 | #endif | ||
diff --git a/src/lib/libssl/src/ms/do_win64a.bat b/src/lib/libssl/src/ms/do_win64a.bat new file mode 100755 index 0000000000..825c690221 --- /dev/null +++ b/src/lib/libssl/src/ms/do_win64a.bat | |||
@@ -0,0 +1,9 @@ | |||
1 | |||
2 | perl util\mkfiles.pl >MINFO | ||
3 | perl ms\uplink.pl win64a > ms\uptable.asm | ||
4 | ml64 -c -Foms\uptable.obj ms\uptable.asm | ||
5 | perl util\mk1mf.pl no-asm VC-WIN64A >ms\nt.mak | ||
6 | perl util\mk1mf.pl dll no-asm VC-WIN64A >ms\ntdll.mak | ||
7 | |||
8 | perl util\mkdef.pl 32 libeay > ms\libeay32.def | ||
9 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def | ||
diff --git a/src/lib/libssl/src/ms/do_win64i.bat b/src/lib/libssl/src/ms/do_win64i.bat new file mode 100755 index 0000000000..7bfc2f1818 --- /dev/null +++ b/src/lib/libssl/src/ms/do_win64i.bat | |||
@@ -0,0 +1,9 @@ | |||
1 | |||
2 | perl util\mkfiles.pl >MINFO | ||
3 | perl ms\uplink.pl win64i > ms\uptable.asm | ||
4 | ias -o ms\uptable.obj ms\uptable.asm | ||
5 | perl util\mk1mf.pl no-asm VC-WIN64I >ms\nt.mak | ||
6 | perl util\mk1mf.pl dll no-asm VC-WIN64I >ms\ntdll.mak | ||
7 | |||
8 | perl util\mkdef.pl 32 libeay > ms\libeay32.def | ||
9 | perl util\mkdef.pl 32 ssleay > ms\ssleay32.def | ||
diff --git a/src/lib/libssl/src/ms/uplink.c b/src/lib/libssl/src/ms/uplink.c new file mode 100644 index 0000000000..7b7da08d47 --- /dev/null +++ b/src/lib/libssl/src/ms/uplink.c | |||
@@ -0,0 +1,116 @@ | |||
1 | #if (defined(_WIN64) || defined(_WIN32_WCE)) && !defined(UNICODE) | ||
2 | #define UNICODE | ||
3 | #endif | ||
4 | #if defined(UNICODE) && !defined(_UNICODE) | ||
5 | #define _UNICODE | ||
6 | #endif | ||
7 | #if defined(_UNICODE) && !defined(UNICODE) | ||
8 | #define UNICODE | ||
9 | #endif | ||
10 | |||
11 | #include <windows.h> | ||
12 | #include <tchar.h> | ||
13 | #include <stdio.h> | ||
14 | #include "uplink.h" | ||
15 | void OPENSSL_showfatal(const char *,...); | ||
16 | |||
17 | static TCHAR msg[128]; | ||
18 | |||
19 | static void unimplemented (void) | ||
20 | { OPENSSL_showfatal (sizeof(TCHAR)==sizeof(char)?"%s\n":"%S\n",msg); | ||
21 | ExitProcess (1); | ||
22 | } | ||
23 | |||
24 | void OPENSSL_Uplink (volatile void **table, int index) | ||
25 | { static HMODULE volatile apphandle=NULL; | ||
26 | static void ** volatile applinktable=NULL; | ||
27 | int len; | ||
28 | void (*func)(void)=unimplemented; | ||
29 | HANDLE h; | ||
30 | void **p; | ||
31 | |||
32 | /* Note that the below code is not MT-safe in respect to msg | ||
33 | * buffer, but what's the worst thing that can happen? Error | ||
34 | * message might be misleading or corrupted. As error condition | ||
35 | * is fatal and should never be risen, I accept the risk... */ | ||
36 | /* One can argue that I should have used InterlockedExchangePointer | ||
37 | * or something to update static variables and table[]. Well, | ||
38 | * store instructions are as atomic as they can get and assigned | ||
39 | * values are effectively constant... So that volatile qualifier | ||
40 | * should be sufficient [it prohibits compiler to reorder memory | ||
41 | * access instructions]. */ | ||
42 | do { | ||
43 | len = _stprintf (msg,_T("OPENSSL_Uplink(%p,%02X): "),table,index); | ||
44 | _tcscpy (msg+len,_T("unimplemented function")); | ||
45 | |||
46 | if ((h=apphandle)==NULL) | ||
47 | { if ((h=GetModuleHandle(NULL))==NULL) | ||
48 | { apphandle=(HMODULE)-1; | ||
49 | _tcscpy (msg+len,_T("no host application")); | ||
50 | break; | ||
51 | } | ||
52 | apphandle = h; | ||
53 | } | ||
54 | if ((h=apphandle)==(HMODULE)-1) /* revalidate */ | ||
55 | break; | ||
56 | |||
57 | if (applinktable==NULL) | ||
58 | { void**(*applink)(); | ||
59 | |||
60 | applink=(void**(*)())GetProcAddress(h,"OPENSSL_Applink"); | ||
61 | if (applink==NULL) | ||
62 | { apphandle=(HMODULE)-1; | ||
63 | _tcscpy (msg+len,_T("no OPENSSL_Applink")); | ||
64 | break; | ||
65 | } | ||
66 | p = (*applink)(); | ||
67 | if (p==NULL) | ||
68 | { apphandle=(HMODULE)-1; | ||
69 | _tcscpy (msg+len,_T("no ApplinkTable")); | ||
70 | break; | ||
71 | } | ||
72 | applinktable = p; | ||
73 | } | ||
74 | else | ||
75 | p = applinktable; | ||
76 | |||
77 | if (index > (int)p[0]) | ||
78 | break; | ||
79 | |||
80 | if (p[index]) func = p[index]; | ||
81 | } while (0); | ||
82 | |||
83 | table[index] = func; | ||
84 | } | ||
85 | |||
86 | #if defined(_MSC_VER) && defined(_M_IX86) && !defined(OPENSSL_NO_INLINE_ASM) | ||
87 | #define LAZY(i) \ | ||
88 | __declspec(naked) static void lazy##i (void) { \ | ||
89 | _asm push i \ | ||
90 | _asm push OFFSET OPENSSL_UplinkTable \ | ||
91 | _asm call OPENSSL_Uplink \ | ||
92 | _asm add esp,8 \ | ||
93 | _asm jmp OPENSSL_UplinkTable+4*i } | ||
94 | |||
95 | #if APPLINK_MAX>25 | ||
96 | #error "Add more stubs..." | ||
97 | #endif | ||
98 | /* make some in advance... */ | ||
99 | LAZY(1) LAZY(2) LAZY(3) LAZY(4) LAZY(5) | ||
100 | LAZY(6) LAZY(7) LAZY(8) LAZY(9) LAZY(10) | ||
101 | LAZY(11) LAZY(12) LAZY(13) LAZY(14) LAZY(15) | ||
102 | LAZY(16) LAZY(17) LAZY(18) LAZY(19) LAZY(20) | ||
103 | LAZY(21) LAZY(22) LAZY(23) LAZY(24) LAZY(25) | ||
104 | void *OPENSSL_UplinkTable[] = { | ||
105 | (void *)APPLINK_MAX, | ||
106 | lazy1, lazy2, lazy3, lazy4, lazy5, | ||
107 | lazy6, lazy7, lazy8, lazy9, lazy10, | ||
108 | lazy11,lazy12,lazy13,lazy14,lazy15, | ||
109 | lazy16,lazy17,lazy18,lazy19,lazy20, | ||
110 | lazy21,lazy22,lazy23,lazy24,lazy25, | ||
111 | }; | ||
112 | #endif | ||
113 | |||
114 | #ifdef SELFTEST | ||
115 | main() { UP_fprintf(UP_stdout,"hello, world!\n"); } | ||
116 | #endif | ||
diff --git a/src/lib/libssl/src/ms/uplink.h b/src/lib/libssl/src/ms/uplink.h new file mode 100644 index 0000000000..a4a67d3c14 --- /dev/null +++ b/src/lib/libssl/src/ms/uplink.h | |||
@@ -0,0 +1,29 @@ | |||
1 | #define APPMACROS_ONLY | ||
2 | #include "applink.c" | ||
3 | |||
4 | extern void *OPENSSL_UplinkTable[]; | ||
5 | |||
6 | #define UP_stdin (*(void *(*)(void))OPENSSL_UplinkTable[APPLINK_STDIN])() | ||
7 | #define UP_stdout (*(void *(*)(void))OPENSSL_UplinkTable[APPLINK_STDOUT])() | ||
8 | #define UP_stderr (*(void *(*)(void))OPENSSL_UplinkTable[APPLINK_STDERR])() | ||
9 | #define UP_fprintf (*(int (*)(void *,const char *,...))OPENSSL_UplinkTable[APPLINK_FPRINTF]) | ||
10 | #define UP_fgets (*(char *(*)(char *,int,void *))OPENSSL_UplinkTable[APPLINK_FGETS]) | ||
11 | #define UP_fread (*(size_t (*)(void *,size_t,size_t,void *))OPENSSL_UplinkTable[APPLINK_FREAD]) | ||
12 | #define UP_fwrite (*(size_t (*)(const void *,size_t,size_t,void *))OPENSSL_UplinkTable[APPLINK_FWRITE]) | ||
13 | #define UP_fsetmod (*(int (*)(void *,char))OPENSSL_UplinkTable[APPLINK_FSETMOD]) | ||
14 | #define UP_feof (*(int (*)(void *))OPENSSL_UplinkTable[APPLINK_FEOF]) | ||
15 | #define UP_fclose (*(int (*)(void *))OPENSSL_UplinkTable[APPLINK_FCLOSE]) | ||
16 | |||
17 | #define UP_fopen (*(void *(*)(const char *,const char *))OPENSSL_UplinkTable[APPLINK_FOPEN]) | ||
18 | #define UP_fseek (*(int (*)(void *,long,int))OPENSSL_UplinkTable[APPLINK_FSEEK]) | ||
19 | #define UP_ftell (*(long (*)(void *))OPENSSL_UplinkTable[APPLINK_FTELL]) | ||
20 | #define UP_fflush (*(int (*)(void *))OPENSSL_UplinkTable[APPLINK_FFLUSH]) | ||
21 | #define UP_ferror (*(int (*)(void *))OPENSSL_UplinkTable[APPLINK_FERROR]) | ||
22 | #define UP_clearerr (*(void (*)(void *))OPENSSL_UplinkTable[APPLINK_CLEARERR]) | ||
23 | #define UP_fileno (*(int (*)(void *))OPENSSL_UplinkTable[APPLINK_FILENO]) | ||
24 | |||
25 | #define UP_open (*(int (*)(const char *,int,...))OPENSSL_UplinkTable[APPLINK_OPEN]) | ||
26 | #define UP_read (*(ssize_t (*)(int,void *,size_t))OPENSSL_UplinkTable[APPLINK_READ]) | ||
27 | #define UP_write (*(ssize_t (*)(int,const void *,size_t))OPENSSL_UplinkTable[APPLINK_WRITE]) | ||
28 | #define UP_lseek (*(long (*)(int,long,int))OPENSSL_UplinkTable[APPLINK_LSEEK]) | ||
29 | #define UP_close (*(int (*)(int))OPENSSL_UplinkTable[APPLINK_CLOSE]) | ||
diff --git a/src/lib/libssl/src/ms/uplink.pl b/src/lib/libssl/src/ms/uplink.pl new file mode 100755 index 0000000000..102400e880 --- /dev/null +++ b/src/lib/libssl/src/ms/uplink.pl | |||
@@ -0,0 +1,204 @@ | |||
1 | #!/usr/bin/env perl | ||
2 | # | ||
3 | # For Microsoft CL this is implemented as inline assembler. So that | ||
4 | # even though this script can generate even Win32 code, we'll be | ||
5 | # using it primarily to generate Win64 modules. Both IA-64 and AMD64 | ||
6 | # are supported... | ||
7 | |||
8 | # pull APPLINK_MAX value from applink.c... | ||
9 | $applink_c=$0; | ||
10 | $applink_c=~s|[^/\\]+$||g; | ||
11 | $applink_c.="applink.c"; | ||
12 | open(INPUT,$applink_c) || die "can't open $applink_c: $!"; | ||
13 | @max=grep {/APPLINK_MAX\s+(\d+)/} <INPUT>; | ||
14 | close(INPUT); | ||
15 | ($#max==0) or die "can't find APPLINK_MAX in $applink_c"; | ||
16 | |||
17 | $max[0]=~/APPLINK_MAX\s+(\d+)/; | ||
18 | $N=$1; # number of entries in OPENSSL_UplinkTable not including | ||
19 | # OPENSSL_UplinkTable[0], which contains this value... | ||
20 | |||
21 | # Idea is to fill the OPENSSL_UplinkTable with pointers to stubs | ||
22 | # which invoke 'void OPENSSL_Uplink (ULONG_PTR *table,int index)'; | ||
23 | # and then dereference themselves. Latter shall result in endless | ||
24 | # loop *unless* OPENSSL_Uplink does not replace 'table[index]' with | ||
25 | # something else, e.g. as 'table[index]=unimplemented;'... | ||
26 | |||
27 | $arg = shift; | ||
28 | #( defined shift || open STDOUT,">$arg" ) || die "can't open $arg: $!"; | ||
29 | |||
30 | if ($arg =~ /win32n/) { ia32nasm(); } | ||
31 | elsif ($arg =~ /win32/) { ia32masm(); } | ||
32 | elsif ($arg =~ /coff/) { ia32gas(); } | ||
33 | elsif ($arg =~ /win64i/ or $arg =~ /ia64/) { ia64ias(); } | ||
34 | elsif ($arg =~ /win64a/ or $arg =~ /amd64/) { amd64masm(); } | ||
35 | else { die "nonsense $arg"; } | ||
36 | |||
37 | sub ia32gas() { | ||
38 | print <<___; | ||
39 | .text | ||
40 | ___ | ||
41 | for ($i=1;$i<=$N;$i++) { | ||
42 | print <<___; | ||
43 | .def .Lazy$i; .scl 3; .type 32; .endef | ||
44 | .align 4 | ||
45 | .Lazy$i: | ||
46 | pushl \$$i | ||
47 | pushl \$_OPENSSL_UplinkTable | ||
48 | call _OPENSSL_Uplink | ||
49 | addl \$8,%esp | ||
50 | jmp *(_OPENSSL_UplinkTable+4*$i) | ||
51 | ___ | ||
52 | } | ||
53 | print <<___; | ||
54 | .data | ||
55 | .align 4 | ||
56 | .globl _OPENSSL_UplinkTable | ||
57 | _OPENSSL_UplinkTable: | ||
58 | .long $N | ||
59 | ___ | ||
60 | for ($i=1;$i<=$N;$i++) { print " .long .Lazy$i\n"; } | ||
61 | } | ||
62 | |||
63 | sub ia32masm() { | ||
64 | print <<___; | ||
65 | .386P | ||
66 | .model FLAT | ||
67 | |||
68 | _DATA SEGMENT | ||
69 | PUBLIC _OPENSSL_UplinkTable | ||
70 | _OPENSSL_UplinkTable DD $N ; amount of following entries | ||
71 | ___ | ||
72 | for ($i=1;$i<=$N;$i++) { print " DD FLAT:\$lazy$i\n"; } | ||
73 | print <<___; | ||
74 | _DATA ENDS | ||
75 | |||
76 | _TEXT SEGMENT | ||
77 | EXTRN _OPENSSL_Uplink:NEAR | ||
78 | ___ | ||
79 | for ($i=1;$i<=$N;$i++) { | ||
80 | print <<___; | ||
81 | ALIGN 4 | ||
82 | \$lazy$i PROC NEAR | ||
83 | push $i | ||
84 | push OFFSET FLAT:_OPENSSL_UplinkTable | ||
85 | call _OPENSSL_Uplink | ||
86 | add esp,8 | ||
87 | jmp DWORD PTR _OPENSSL_UplinkTable+4*$i | ||
88 | \$lazy$i ENDP | ||
89 | ___ | ||
90 | } | ||
91 | print <<___; | ||
92 | ALIGN 4 | ||
93 | _TEXT ENDS | ||
94 | END | ||
95 | ___ | ||
96 | } | ||
97 | |||
98 | sub ia32nasm() { | ||
99 | print <<___; | ||
100 | SEGMENT .data | ||
101 | GLOBAL _OPENSSL_UplinkTable | ||
102 | _OPENSSL_UplinkTable DD $N ; amount of following entries | ||
103 | ___ | ||
104 | for ($i=1;$i<=$N;$i++) { print " DD \$lazy$i\n"; } | ||
105 | print <<___; | ||
106 | |||
107 | SEGMENT .text | ||
108 | EXTERN _OPENSSL_Uplink | ||
109 | ___ | ||
110 | for ($i=1;$i<=$N;$i++) { | ||
111 | print <<___; | ||
112 | ALIGN 4 | ||
113 | \$lazy$i: | ||
114 | push $i | ||
115 | push _OPENSSL_UplinkTable | ||
116 | call _OPENSSL_Uplink | ||
117 | add esp,8 | ||
118 | jmp [_OPENSSL_UplinkTable+4*$i] | ||
119 | ___ | ||
120 | } | ||
121 | print <<___; | ||
122 | ALIGN 4 | ||
123 | END | ||
124 | ___ | ||
125 | } | ||
126 | |||
127 | sub ia64ias () { | ||
128 | local $V=8; # max number of args uplink functions may accept... | ||
129 | print <<___; | ||
130 | .data | ||
131 | .global OPENSSL_UplinkTable# | ||
132 | OPENSSL_UplinkTable: data8 $N // amount of following entries | ||
133 | ___ | ||
134 | for ($i=1;$i<=$N;$i++) { print " data8 \@fptr(lazy$i#)\n"; } | ||
135 | print <<___; | ||
136 | .size OPENSSL_UplinkTable,.-OPENSSL_UplinkTable# | ||
137 | |||
138 | .text | ||
139 | .global OPENSSL_Uplink# | ||
140 | .type OPENSSL_Uplink#,\@function | ||
141 | ___ | ||
142 | for ($i=1;$i<=$N;$i++) { | ||
143 | print <<___; | ||
144 | .proc lazy$i | ||
145 | lazy$i: | ||
146 | { .mii; alloc loc0=ar.pfs,$V,3,2,0 | ||
147 | mov loc1=b0 | ||
148 | addl loc2=\@ltoff(OPENSSL_UplinkTable#),gp };; | ||
149 | { .mmi; ld8 out0=[loc2] | ||
150 | mov out1=$i };; | ||
151 | { .mib; adds loc2=8*$i,out0 | ||
152 | br.call.sptk.many b0=OPENSSL_Uplink# };; | ||
153 | { .mmi; ld8 r31=[loc2];; | ||
154 | ld8 r30=[r31],8 };; | ||
155 | { .mii; ld8 gp=[r31] | ||
156 | mov b6=r30 | ||
157 | mov b0=loc1 };; | ||
158 | { .mib; mov ar.pfs=loc0 | ||
159 | br.many b6 };; | ||
160 | .endp lazy$i# | ||
161 | ___ | ||
162 | } | ||
163 | } | ||
164 | |||
165 | sub amd64masm() { | ||
166 | print <<___; | ||
167 | _DATA SEGMENT | ||
168 | PUBLIC OPENSSL_UplinkTable | ||
169 | OPENSSL_UplinkTable DQ $N | ||
170 | ___ | ||
171 | for ($i=1;$i<=$N;$i++) { print " DQ \$lazy$i\n"; } | ||
172 | print <<___; | ||
173 | _DATA ENDS | ||
174 | |||
175 | _TEXT SEGMENT | ||
176 | EXTERN OPENSSL_Uplink:PROC | ||
177 | ___ | ||
178 | for ($i=1;$i<=$N;$i++) { | ||
179 | print <<___; | ||
180 | ALIGN 4 | ||
181 | \$lazy$i PROC | ||
182 | push r9 | ||
183 | push r8 | ||
184 | push rdx | ||
185 | push rcx | ||
186 | sub rsp,40 | ||
187 | lea rcx,OFFSET OPENSSL_UplinkTable | ||
188 | mov rdx,$i | ||
189 | call OPENSSL_Uplink | ||
190 | add rsp,40 | ||
191 | pop rcx | ||
192 | pop rdx | ||
193 | pop r8 | ||
194 | pop r9 | ||
195 | jmp QWORD PTR OPENSSL_UplinkTable+8*$i | ||
196 | \$lazy$i ENDP | ||
197 | ___ | ||
198 | } | ||
199 | print <<___; | ||
200 | _TEXT ENDS | ||
201 | END | ||
202 | ___ | ||
203 | } | ||
204 | |||
diff --git a/src/lib/libssl/src/ssl/Makefile b/src/lib/libssl/src/ssl/Makefile index 14a89e77b2..2754632849 100644 --- a/src/lib/libssl/src/ssl/Makefile +++ b/src/lib/libssl/src/ssl/Makefile | |||
@@ -7,11 +7,6 @@ TOP= .. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I../crypto -I$(TOP) -I../include $(KRB5_INCLUDES) | 8 | INCLUDES= -I../crypto -I$(TOP) -I../include $(KRB5_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 | # KRB5 stuff | 12 | # KRB5 stuff |
@@ -30,6 +25,8 @@ LIBSRC= \ | |||
30 | s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \ | 25 | s3_meth.c s3_srvr.c s3_clnt.c s3_lib.c s3_enc.c s3_pkt.c s3_both.c \ |
31 | s23_meth.c s23_srvr.c s23_clnt.c s23_lib.c s23_pkt.c \ | 26 | s23_meth.c s23_srvr.c s23_clnt.c s23_lib.c s23_pkt.c \ |
32 | t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ | 27 | t1_meth.c t1_srvr.c t1_clnt.c t1_lib.c t1_enc.c \ |
28 | d1_meth.c d1_srvr.c d1_clnt.c d1_lib.c d1_pkt.c \ | ||
29 | d1_both.c d1_enc.c \ | ||
33 | ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \ | 30 | ssl_lib.c ssl_err2.c ssl_cert.c ssl_sess.c \ |
34 | ssl_ciph.c ssl_stat.c ssl_rsa.c \ | 31 | ssl_ciph.c ssl_stat.c ssl_rsa.c \ |
35 | ssl_asn1.c ssl_txt.c ssl_algs.c \ | 32 | ssl_asn1.c ssl_txt.c ssl_algs.c \ |
@@ -39,6 +36,8 @@ LIBOBJ= \ | |||
39 | s3_meth.o s3_srvr.o s3_clnt.o s3_lib.o s3_enc.o s3_pkt.o s3_both.o \ | 36 | s3_meth.o s3_srvr.o s3_clnt.o s3_lib.o s3_enc.o s3_pkt.o s3_both.o \ |
40 | s23_meth.o s23_srvr.o s23_clnt.o s23_lib.o s23_pkt.o \ | 37 | s23_meth.o s23_srvr.o s23_clnt.o s23_lib.o s23_pkt.o \ |
41 | t1_meth.o t1_srvr.o t1_clnt.o t1_lib.o t1_enc.o \ | 38 | t1_meth.o t1_srvr.o t1_clnt.o t1_lib.o t1_enc.o \ |
39 | d1_meth.o d1_srvr.o d1_clnt.o d1_lib.o d1_pkt.o \ | ||
40 | d1_both.o d1_enc.o \ | ||
42 | ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \ | 41 | ssl_lib.o ssl_err2.o ssl_cert.o ssl_sess.o \ |
43 | ssl_ciph.o ssl_stat.o ssl_rsa.o \ | 42 | ssl_ciph.o ssl_stat.o ssl_rsa.o \ |
44 | ssl_asn1.o ssl_txt.o ssl_algs.o \ | 43 | ssl_asn1.o ssl_txt.o ssl_algs.o \ |
@@ -46,7 +45,7 @@ LIBOBJ= \ | |||
46 | 45 | ||
47 | SRC= $(LIBSRC) | 46 | SRC= $(LIBSRC) |
48 | 47 | ||
49 | EXHEADER= ssl.h ssl2.h ssl3.h ssl23.h tls1.h kssl.h | 48 | EXHEADER= ssl.h ssl2.h ssl3.h ssl23.h tls1.h dtls1.h kssl.h |
50 | HEADER= $(EXHEADER) ssl_locl.h kssl_lcl.h | 49 | HEADER= $(EXHEADER) ssl_locl.h kssl_lcl.h |
51 | 50 | ||
52 | ALL= $(GENERAL) $(SRC) $(HEADER) | 51 | ALL= $(GENERAL) $(SRC) $(HEADER) |
@@ -75,6 +74,7 @@ links: | |||
75 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) | 74 | @$(PERL) $(TOP)/util/mklink.pl ../apps $(APPS) |
76 | 75 | ||
77 | install: | 76 | install: |
77 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
78 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ | 78 | @headerlist="$(EXHEADER)"; for i in $$headerlist ; \ |
79 | do \ | 79 | do \ |
80 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | 80 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ |
@@ -90,7 +90,11 @@ lint: | |||
90 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 90 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
91 | 91 | ||
92 | depend: | 92 | depend: |
93 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | 93 | @if [ -z "$(THIS)" ]; then \ |
94 | $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \ | ||
95 | else \ | ||
96 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC); \ | ||
97 | fi | ||
94 | 98 | ||
95 | dclean: | 99 | dclean: |
96 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 100 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
@@ -101,920 +105,869 @@ clean: | |||
101 | 105 | ||
102 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 106 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
103 | 107 | ||
104 | bio_ssl.o: ../include/openssl/aes.h ../include/openssl/asn1.h | 108 | bio_ssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
105 | bio_ssl.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
106 | bio_ssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 109 | bio_ssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
107 | bio_ssl.o: ../include/openssl/cast.h ../include/openssl/comp.h | 110 | bio_ssl.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
108 | bio_ssl.o: ../include/openssl/crypto.h ../include/openssl/des.h | 111 | bio_ssl.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
109 | bio_ssl.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 112 | bio_ssl.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
110 | bio_ssl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 113 | bio_ssl.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
111 | bio_ssl.o: ../include/openssl/err.h ../include/openssl/evp.h | 114 | bio_ssl.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
112 | bio_ssl.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 115 | bio_ssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
113 | bio_ssl.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
114 | bio_ssl.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
115 | bio_ssl.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
116 | bio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 116 | bio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
117 | bio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 117 | bio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
118 | bio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 118 | bio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
119 | bio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 119 | bio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
120 | bio_ssl.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 120 | bio_ssl.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h |
121 | bio_ssl.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 121 | bio_ssl.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
122 | bio_ssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 122 | bio_ssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
123 | bio_ssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 123 | bio_ssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
124 | bio_ssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 124 | bio_ssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
125 | bio_ssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 125 | bio_ssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bio_ssl.c |
126 | bio_ssl.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 126 | d1_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
127 | bio_ssl.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 127 | d1_both.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
128 | bio_ssl.o: ../include/openssl/x509_vfy.h bio_ssl.c | 128 | d1_both.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
129 | kssl.o: ../include/openssl/aes.h ../include/openssl/asn1.h | 129 | d1_both.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
130 | kssl.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 130 | d1_both.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
131 | d1_both.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
132 | d1_both.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
133 | d1_both.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
134 | d1_both.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
135 | d1_both.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
136 | d1_both.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
137 | d1_both.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
138 | d1_both.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h | ||
139 | d1_both.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
140 | d1_both.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
141 | d1_both.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
142 | d1_both.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
143 | d1_both.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
144 | d1_both.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
145 | d1_both.o: ../include/openssl/x509_vfy.h d1_both.c ssl_locl.h | ||
146 | d1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
147 | d1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
148 | d1_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
149 | d1_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
150 | d1_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h | ||
151 | d1_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
152 | d1_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | ||
153 | d1_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
154 | d1_clnt.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
155 | d1_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
156 | d1_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
157 | d1_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
158 | d1_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
159 | d1_clnt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h | ||
160 | d1_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
161 | d1_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
162 | d1_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
163 | d1_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
164 | d1_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
165 | d1_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
166 | d1_clnt.o: ../include/openssl/x509_vfy.h d1_clnt.c kssl_lcl.h ssl_locl.h | ||
167 | d1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
168 | d1_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
169 | d1_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
170 | d1_enc.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h | ||
171 | d1_enc.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
172 | d1_enc.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
173 | d1_enc.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
174 | d1_enc.o: ../include/openssl/hmac.h ../include/openssl/kssl.h | ||
175 | d1_enc.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
176 | d1_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
177 | d1_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
178 | d1_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
179 | d1_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
180 | d1_enc.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h | ||
181 | d1_enc.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
182 | d1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
183 | d1_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
184 | d1_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
185 | d1_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
186 | d1_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
187 | d1_enc.o: ../include/openssl/x509_vfy.h d1_enc.c ssl_locl.h | ||
188 | d1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
189 | d1_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
190 | d1_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
191 | d1_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h | ||
192 | d1_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
193 | d1_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
194 | d1_lib.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
195 | d1_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
196 | d1_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
197 | d1_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
198 | d1_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
199 | d1_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
200 | d1_lib.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h | ||
201 | d1_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
202 | d1_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
203 | d1_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
204 | d1_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
205 | d1_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
206 | d1_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_lib.c | ||
207 | d1_lib.o: ssl_locl.h | ||
208 | d1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
209 | d1_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
210 | d1_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
211 | d1_meth.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h | ||
212 | d1_meth.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
213 | d1_meth.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
214 | d1_meth.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
215 | d1_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
216 | d1_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
217 | d1_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
218 | d1_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
219 | d1_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
220 | d1_meth.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h | ||
221 | d1_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
222 | d1_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
223 | d1_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
224 | d1_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
225 | d1_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
226 | d1_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h d1_meth.c | ||
227 | d1_meth.o: ssl_locl.h | ||
228 | d1_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
229 | d1_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
230 | d1_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
231 | d1_pkt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h | ||
232 | d1_pkt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
233 | d1_pkt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
234 | d1_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
235 | d1_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | ||
236 | d1_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
237 | d1_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
238 | d1_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
239 | d1_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
240 | d1_pkt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h | ||
241 | d1_pkt.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
242 | d1_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
243 | d1_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
244 | d1_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
245 | d1_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
246 | d1_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
247 | d1_pkt.o: ../include/openssl/x509_vfy.h d1_pkt.c ssl_locl.h | ||
248 | d1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
249 | d1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
250 | d1_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | ||
251 | d1_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
252 | d1_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h | ||
253 | d1_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
254 | d1_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | ||
255 | d1_srvr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | ||
256 | d1_srvr.o: ../include/openssl/lhash.h ../include/openssl/md5.h | ||
257 | d1_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
258 | d1_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
259 | d1_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | ||
260 | d1_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | ||
261 | d1_srvr.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h | ||
262 | d1_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
263 | d1_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
264 | d1_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | ||
265 | d1_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
266 | d1_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
267 | d1_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h | ||
268 | d1_srvr.o: ../include/openssl/x509_vfy.h d1_srvr.c ssl_locl.h | ||
269 | kssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
131 | kssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 270 | kssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
132 | kssl.o: ../include/openssl/cast.h ../include/openssl/comp.h | 271 | kssl.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
133 | kssl.o: ../include/openssl/crypto.h ../include/openssl/des.h | 272 | kssl.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
134 | kssl.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 273 | kssl.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
135 | kssl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 274 | kssl.o: ../include/openssl/ecdsa.h ../include/openssl/evp.h |
136 | kssl.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
137 | kssl.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h | 275 | kssl.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h |
138 | kssl.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 276 | kssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
139 | kssl.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
140 | kssl.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
141 | kssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 277 | kssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
142 | kssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 278 | kssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
143 | kssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 279 | kssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
144 | kssl.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 280 | kssl.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
145 | kssl.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 281 | kssl.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h |
146 | kssl.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 282 | kssl.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
147 | kssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 283 | kssl.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
148 | kssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 284 | kssl.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
149 | kssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 285 | kssl.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
150 | kssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 286 | kssl.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl.c |
151 | kssl.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 287 | s23_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
152 | kssl.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
153 | kssl.o: ../include/openssl/x509_vfy.h kssl.c | ||
154 | s23_clnt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
155 | s23_clnt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
156 | s23_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 288 | s23_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
157 | s23_clnt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 289 | s23_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
158 | s23_clnt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 290 | s23_clnt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
159 | s23_clnt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 291 | s23_clnt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
160 | s23_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 292 | s23_clnt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
161 | s23_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h | 293 | s23_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h |
162 | s23_clnt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 294 | s23_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
163 | s23_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 295 | s23_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
164 | s23_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h | 296 | s23_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
165 | s23_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 297 | s23_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
166 | s23_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 298 | s23_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
167 | s23_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 299 | s23_clnt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
168 | s23_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 300 | s23_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
169 | s23_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 301 | s23_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
170 | s23_clnt.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 302 | s23_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
171 | s23_clnt.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 303 | s23_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
172 | s23_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 304 | s23_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
173 | s23_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 305 | s23_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
174 | s23_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 306 | s23_clnt.o: ../include/openssl/x509_vfy.h s23_clnt.c ssl_locl.h |
175 | s23_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 307 | s23_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
176 | s23_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
177 | s23_clnt.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
178 | s23_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_clnt.c | ||
179 | s23_clnt.o: ssl_locl.h | ||
180 | s23_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
181 | s23_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
182 | s23_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 308 | s23_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
183 | s23_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h | 309 | s23_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
184 | s23_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h | 310 | s23_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
185 | s23_lib.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 311 | s23_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
186 | s23_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 312 | s23_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
187 | s23_lib.o: ../include/openssl/err.h ../include/openssl/evp.h | 313 | s23_lib.o: ../include/openssl/err.h ../include/openssl/evp.h |
188 | s23_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 314 | s23_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
189 | s23_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 315 | s23_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
190 | s23_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h | 316 | s23_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
191 | s23_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 317 | s23_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
192 | s23_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 318 | s23_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
193 | s23_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 319 | s23_lib.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
194 | s23_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 320 | s23_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
195 | s23_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 321 | s23_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
196 | s23_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 322 | s23_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
197 | s23_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 323 | s23_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
198 | s23_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 324 | s23_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
199 | s23_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 325 | s23_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_lib.c |
200 | s23_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 326 | s23_lib.o: ssl_locl.h |
201 | s23_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 327 | s23_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
202 | s23_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
203 | s23_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
204 | s23_lib.o: ../include/openssl/x509_vfy.h s23_lib.c ssl_locl.h | ||
205 | s23_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
206 | s23_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
207 | s23_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 328 | s23_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
208 | s23_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h | 329 | s23_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
209 | s23_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h | 330 | s23_meth.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
210 | s23_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 331 | s23_meth.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
211 | s23_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 332 | s23_meth.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
212 | s23_meth.o: ../include/openssl/err.h ../include/openssl/evp.h | 333 | s23_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
213 | s23_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 334 | s23_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
214 | s23_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 335 | s23_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
215 | s23_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | 336 | s23_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
216 | s23_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 337 | s23_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
217 | s23_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 338 | s23_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
218 | s23_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 339 | s23_meth.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
219 | s23_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 340 | s23_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
220 | s23_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 341 | s23_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
221 | s23_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 342 | s23_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
222 | s23_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 343 | s23_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
223 | s23_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 344 | s23_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
224 | s23_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 345 | s23_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_meth.c |
225 | s23_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 346 | s23_meth.o: ssl_locl.h |
226 | s23_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 347 | s23_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
227 | s23_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
228 | s23_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
229 | s23_meth.o: ../include/openssl/x509_vfy.h s23_meth.c ssl_locl.h | ||
230 | s23_pkt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
231 | s23_pkt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
232 | s23_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 348 | s23_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
233 | s23_pkt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 349 | s23_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
234 | s23_pkt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 350 | s23_pkt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
235 | s23_pkt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 351 | s23_pkt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
236 | s23_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 352 | s23_pkt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
237 | s23_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h | 353 | s23_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h |
238 | s23_pkt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 354 | s23_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
239 | s23_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 355 | s23_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
240 | s23_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h | 356 | s23_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
241 | s23_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 357 | s23_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
242 | s23_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 358 | s23_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
243 | s23_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 359 | s23_pkt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
244 | s23_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 360 | s23_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
245 | s23_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 361 | s23_pkt.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
246 | s23_pkt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 362 | s23_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
247 | s23_pkt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 363 | s23_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
248 | s23_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 364 | s23_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
249 | s23_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 365 | s23_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_pkt.c |
250 | s23_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 366 | s23_pkt.o: ssl_locl.h |
251 | s23_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 367 | s23_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
252 | s23_pkt.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
253 | s23_pkt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
254 | s23_pkt.o: ../include/openssl/x509_vfy.h s23_pkt.c ssl_locl.h | ||
255 | s23_srvr.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
256 | s23_srvr.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
257 | s23_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 368 | s23_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
258 | s23_srvr.o: ../include/openssl/cast.h ../include/openssl/comp.h | 369 | s23_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
259 | s23_srvr.o: ../include/openssl/crypto.h ../include/openssl/des.h | 370 | s23_srvr.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
260 | s23_srvr.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 371 | s23_srvr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
261 | s23_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 372 | s23_srvr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
262 | s23_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h | 373 | s23_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h |
263 | s23_srvr.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 374 | s23_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
264 | s23_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 375 | s23_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
265 | s23_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h | 376 | s23_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
266 | s23_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 377 | s23_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
267 | s23_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 378 | s23_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
268 | s23_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 379 | s23_srvr.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
269 | s23_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 380 | s23_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
270 | s23_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 381 | s23_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
271 | s23_srvr.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 382 | s23_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
272 | s23_srvr.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 383 | s23_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
273 | s23_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 384 | s23_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
274 | s23_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 385 | s23_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
275 | s23_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 386 | s23_srvr.o: ../include/openssl/x509_vfy.h s23_srvr.c ssl_locl.h |
276 | s23_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 387 | s2_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
277 | s23_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
278 | s23_srvr.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
279 | s23_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_srvr.c | ||
280 | s23_srvr.o: ssl_locl.h | ||
281 | s2_clnt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
282 | s2_clnt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
283 | s2_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 388 | s2_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
284 | s2_clnt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 389 | s2_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
285 | s2_clnt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 390 | s2_clnt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
286 | s2_clnt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 391 | s2_clnt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
287 | s2_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 392 | s2_clnt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
288 | s2_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h | 393 | s2_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h |
289 | s2_clnt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 394 | s2_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
290 | s2_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 395 | s2_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
291 | s2_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h | 396 | s2_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
292 | s2_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 397 | s2_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
293 | s2_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 398 | s2_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
294 | s2_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 399 | s2_clnt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
295 | s2_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 400 | s2_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
296 | s2_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 401 | s2_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
297 | s2_clnt.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 402 | s2_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
298 | s2_clnt.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 403 | s2_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
299 | s2_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 404 | s2_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
300 | s2_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 405 | s2_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
301 | s2_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 406 | s2_clnt.o: ../include/openssl/x509_vfy.h s2_clnt.c ssl_locl.h |
302 | s2_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 407 | s2_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
303 | s2_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
304 | s2_clnt.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
305 | s2_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_clnt.c | ||
306 | s2_clnt.o: ssl_locl.h | ||
307 | s2_enc.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
308 | s2_enc.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
309 | s2_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 408 | s2_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
310 | s2_enc.o: ../include/openssl/cast.h ../include/openssl/comp.h | 409 | s2_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
311 | s2_enc.o: ../include/openssl/crypto.h ../include/openssl/des.h | 410 | s2_enc.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
312 | s2_enc.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 411 | s2_enc.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
313 | s2_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 412 | s2_enc.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
314 | s2_enc.o: ../include/openssl/err.h ../include/openssl/evp.h | 413 | s2_enc.o: ../include/openssl/err.h ../include/openssl/evp.h |
315 | s2_enc.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 414 | s2_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
316 | s2_enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 415 | s2_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
317 | s2_enc.o: ../include/openssl/md4.h ../include/openssl/md5.h | 416 | s2_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
318 | s2_enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 417 | s2_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
319 | s2_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 418 | s2_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
320 | s2_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 419 | s2_enc.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
321 | s2_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 420 | s2_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
322 | s2_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 421 | s2_enc.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
323 | s2_enc.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 422 | s2_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
324 | s2_enc.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 423 | s2_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
325 | s2_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 424 | s2_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
326 | s2_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 425 | s2_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_enc.c |
327 | s2_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 426 | s2_enc.o: ssl_locl.h |
328 | s2_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 427 | s2_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
329 | s2_enc.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
330 | s2_enc.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
331 | s2_enc.o: ../include/openssl/x509_vfy.h s2_enc.c ssl_locl.h | ||
332 | s2_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
333 | s2_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
334 | s2_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 428 | s2_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
335 | s2_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h | 429 | s2_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
336 | s2_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h | 430 | s2_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
337 | s2_lib.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 431 | s2_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
338 | s2_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 432 | s2_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
339 | s2_lib.o: ../include/openssl/err.h ../include/openssl/evp.h | 433 | s2_lib.o: ../include/openssl/err.h ../include/openssl/evp.h |
340 | s2_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 434 | s2_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
341 | s2_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 435 | s2_lib.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h |
342 | s2_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
343 | s2_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
344 | s2_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 436 | s2_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
345 | s2_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 437 | s2_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
346 | s2_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 438 | s2_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
347 | s2_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 439 | s2_lib.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
348 | s2_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 440 | s2_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h |
349 | s2_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
350 | s2_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 441 | s2_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
351 | s2_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 442 | s2_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
352 | s2_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 443 | s2_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
353 | s2_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 444 | s2_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
354 | s2_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 445 | s2_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
355 | s2_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
356 | s2_lib.o: ../include/openssl/x509_vfy.h s2_lib.c ssl_locl.h | 446 | s2_lib.o: ../include/openssl/x509_vfy.h s2_lib.c ssl_locl.h |
357 | s2_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 447 | s2_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
358 | s2_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
359 | s2_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 448 | s2_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
360 | s2_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h | 449 | s2_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
361 | s2_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h | 450 | s2_meth.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
362 | s2_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 451 | s2_meth.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
363 | s2_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 452 | s2_meth.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
364 | s2_meth.o: ../include/openssl/err.h ../include/openssl/evp.h | 453 | s2_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
365 | s2_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 454 | s2_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
366 | s2_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 455 | s2_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
367 | s2_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | 456 | s2_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
368 | s2_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 457 | s2_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
369 | s2_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 458 | s2_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
370 | s2_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 459 | s2_meth.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
371 | s2_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 460 | s2_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
372 | s2_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 461 | s2_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
373 | s2_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 462 | s2_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
374 | s2_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 463 | s2_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
375 | s2_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 464 | s2_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
376 | s2_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 465 | s2_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_meth.c |
377 | s2_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 466 | s2_meth.o: ssl_locl.h |
378 | s2_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 467 | s2_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
379 | s2_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
380 | s2_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
381 | s2_meth.o: ../include/openssl/x509_vfy.h s2_meth.c ssl_locl.h | ||
382 | s2_pkt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
383 | s2_pkt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
384 | s2_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 468 | s2_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
385 | s2_pkt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 469 | s2_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
386 | s2_pkt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 470 | s2_pkt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
387 | s2_pkt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 471 | s2_pkt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
388 | s2_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 472 | s2_pkt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
389 | s2_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h | 473 | s2_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h |
390 | s2_pkt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 474 | s2_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
391 | s2_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 475 | s2_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
392 | s2_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h | 476 | s2_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
393 | s2_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 477 | s2_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
394 | s2_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 478 | s2_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
395 | s2_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 479 | s2_pkt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
396 | s2_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 480 | s2_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
397 | s2_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 481 | s2_pkt.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
398 | s2_pkt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 482 | s2_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
399 | s2_pkt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 483 | s2_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
400 | s2_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 484 | s2_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
401 | s2_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 485 | s2_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_pkt.c |
402 | s2_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 486 | s2_pkt.o: ssl_locl.h |
403 | s2_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 487 | s2_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
404 | s2_pkt.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
405 | s2_pkt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
406 | s2_pkt.o: ../include/openssl/x509_vfy.h s2_pkt.c ssl_locl.h | ||
407 | s2_srvr.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
408 | s2_srvr.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
409 | s2_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 488 | s2_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
410 | s2_srvr.o: ../include/openssl/cast.h ../include/openssl/comp.h | 489 | s2_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
411 | s2_srvr.o: ../include/openssl/crypto.h ../include/openssl/des.h | 490 | s2_srvr.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
412 | s2_srvr.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 491 | s2_srvr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
413 | s2_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 492 | s2_srvr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
414 | s2_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h | 493 | s2_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h |
415 | s2_srvr.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 494 | s2_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
416 | s2_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 495 | s2_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
417 | s2_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h | 496 | s2_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
418 | s2_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 497 | s2_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
419 | s2_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 498 | s2_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
420 | s2_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 499 | s2_srvr.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
421 | s2_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 500 | s2_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
422 | s2_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 501 | s2_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
423 | s2_srvr.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 502 | s2_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
424 | s2_srvr.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 503 | s2_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
425 | s2_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 504 | s2_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
426 | s2_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 505 | s2_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
427 | s2_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 506 | s2_srvr.o: ../include/openssl/x509_vfy.h s2_srvr.c ssl_locl.h |
428 | s2_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 507 | s3_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
429 | s2_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
430 | s2_srvr.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
431 | s2_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_srvr.c | ||
432 | s2_srvr.o: ssl_locl.h | ||
433 | s3_both.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
434 | s3_both.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
435 | s3_both.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 508 | s3_both.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
436 | s3_both.o: ../include/openssl/cast.h ../include/openssl/comp.h | 509 | s3_both.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
437 | s3_both.o: ../include/openssl/crypto.h ../include/openssl/des.h | 510 | s3_both.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
438 | s3_both.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 511 | s3_both.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
439 | s3_both.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 512 | s3_both.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
440 | s3_both.o: ../include/openssl/err.h ../include/openssl/evp.h | 513 | s3_both.o: ../include/openssl/err.h ../include/openssl/evp.h |
441 | s3_both.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 514 | s3_both.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
442 | s3_both.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 515 | s3_both.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
443 | s3_both.o: ../include/openssl/md4.h ../include/openssl/md5.h | 516 | s3_both.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
444 | s3_both.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 517 | s3_both.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
445 | s3_both.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 518 | s3_both.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
446 | s3_both.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 519 | s3_both.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
447 | s3_both.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 520 | s3_both.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
448 | s3_both.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 521 | s3_both.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
449 | s3_both.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 522 | s3_both.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
450 | s3_both.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 523 | s3_both.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
451 | s3_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 524 | s3_both.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
452 | s3_both.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 525 | s3_both.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
453 | s3_both.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 526 | s3_both.o: ../include/openssl/x509_vfy.h s3_both.c ssl_locl.h |
454 | s3_both.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 527 | s3_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
455 | s3_both.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
456 | s3_both.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
457 | s3_both.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_both.c | ||
458 | s3_both.o: ssl_locl.h | ||
459 | s3_clnt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
460 | s3_clnt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
461 | s3_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 528 | s3_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
462 | s3_clnt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 529 | s3_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
463 | s3_clnt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 530 | s3_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
464 | s3_clnt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 531 | s3_clnt.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
465 | s3_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 532 | s3_clnt.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
466 | s3_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h | 533 | s3_clnt.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
467 | s3_clnt.o: ../include/openssl/fips.h ../include/openssl/idea.h | 534 | s3_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
468 | s3_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 535 | s3_clnt.o: ../include/openssl/lhash.h ../include/openssl/md5.h |
469 | s3_clnt.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
470 | s3_clnt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
471 | s3_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 536 | s3_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
472 | s3_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 537 | s3_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
473 | s3_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 538 | s3_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
474 | s3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 539 | s3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
475 | s3_clnt.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 540 | s3_clnt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
476 | s3_clnt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 541 | s3_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
477 | s3_clnt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
478 | s3_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 542 | s3_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
479 | s3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 543 | s3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
480 | s3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 544 | s3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
481 | s3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 545 | s3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
482 | s3_clnt.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 546 | s3_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
483 | s3_clnt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
484 | s3_clnt.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_clnt.c ssl_locl.h | 547 | s3_clnt.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_clnt.c ssl_locl.h |
485 | s3_enc.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 548 | s3_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
486 | s3_enc.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
487 | s3_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 549 | s3_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
488 | s3_enc.o: ../include/openssl/cast.h ../include/openssl/comp.h | 550 | s3_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
489 | s3_enc.o: ../include/openssl/crypto.h ../include/openssl/des.h | 551 | s3_enc.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
490 | s3_enc.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 552 | s3_enc.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
491 | s3_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 553 | s3_enc.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
492 | s3_enc.o: ../include/openssl/err.h ../include/openssl/evp.h | 554 | s3_enc.o: ../include/openssl/err.h ../include/openssl/evp.h |
493 | s3_enc.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 555 | s3_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
494 | s3_enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 556 | s3_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h |
495 | s3_enc.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
496 | s3_enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
497 | s3_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 557 | s3_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
498 | s3_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 558 | s3_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
499 | s3_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 559 | s3_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
500 | s3_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 560 | s3_enc.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
501 | s3_enc.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 561 | s3_enc.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h |
502 | s3_enc.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
503 | s3_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 562 | s3_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
504 | s3_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 563 | s3_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
505 | s3_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 564 | s3_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
506 | s3_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 565 | s3_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
507 | s3_enc.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 566 | s3_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
508 | s3_enc.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
509 | s3_enc.o: ../include/openssl/x509_vfy.h s3_enc.c ssl_locl.h | 567 | s3_enc.o: ../include/openssl/x509_vfy.h s3_enc.c ssl_locl.h |
510 | s3_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 568 | s3_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
511 | s3_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
512 | s3_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 569 | s3_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
513 | s3_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h | 570 | s3_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
514 | s3_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h | 571 | s3_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
515 | s3_lib.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 572 | s3_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
516 | s3_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 573 | s3_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
517 | s3_lib.o: ../include/openssl/err.h ../include/openssl/evp.h | 574 | s3_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
518 | s3_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 575 | s3_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
519 | s3_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 576 | s3_lib.o: ../include/openssl/lhash.h ../include/openssl/md5.h |
520 | s3_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h | 577 | s3_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
521 | s3_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 578 | s3_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
522 | s3_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 579 | s3_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
523 | s3_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 580 | s3_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
524 | s3_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 581 | s3_lib.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
525 | s3_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 582 | s3_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
526 | s3_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 583 | s3_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
527 | s3_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 584 | s3_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
528 | s3_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 585 | s3_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
529 | s3_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 586 | s3_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
530 | s3_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 587 | s3_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h |
531 | s3_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 588 | s3_lib.o: s3_lib.c ssl_locl.h |
532 | s3_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 589 | s3_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
533 | s3_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
534 | s3_lib.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_lib.c ssl_locl.h | ||
535 | s3_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
536 | s3_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
537 | s3_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 590 | s3_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
538 | s3_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h | 591 | s3_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
539 | s3_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h | 592 | s3_meth.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
540 | s3_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 593 | s3_meth.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
541 | s3_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 594 | s3_meth.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
542 | s3_meth.o: ../include/openssl/err.h ../include/openssl/evp.h | 595 | s3_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
543 | s3_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 596 | s3_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
544 | s3_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 597 | s3_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
545 | s3_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | 598 | s3_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
546 | s3_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 599 | s3_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
547 | s3_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 600 | s3_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
548 | s3_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 601 | s3_meth.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
549 | s3_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 602 | s3_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
550 | s3_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 603 | s3_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
551 | s3_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 604 | s3_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
552 | s3_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 605 | s3_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
553 | s3_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 606 | s3_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
554 | s3_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 607 | s3_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_meth.c |
555 | s3_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 608 | s3_meth.o: ssl_locl.h |
556 | s3_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 609 | s3_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
557 | s3_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
558 | s3_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
559 | s3_meth.o: ../include/openssl/x509_vfy.h s3_meth.c ssl_locl.h | ||
560 | s3_pkt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
561 | s3_pkt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
562 | s3_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 610 | s3_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
563 | s3_pkt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 611 | s3_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
564 | s3_pkt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 612 | s3_pkt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
565 | s3_pkt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 613 | s3_pkt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
566 | s3_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 614 | s3_pkt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
567 | s3_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h | 615 | s3_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h |
568 | s3_pkt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 616 | s3_pkt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
569 | s3_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 617 | s3_pkt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
570 | s3_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h | 618 | s3_pkt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
571 | s3_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 619 | s3_pkt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
572 | s3_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 620 | s3_pkt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
573 | s3_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 621 | s3_pkt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
574 | s3_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 622 | s3_pkt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
575 | s3_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 623 | s3_pkt.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
576 | s3_pkt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 624 | s3_pkt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
577 | s3_pkt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 625 | s3_pkt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
578 | s3_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 626 | s3_pkt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
579 | s3_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 627 | s3_pkt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_pkt.c |
580 | s3_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 628 | s3_pkt.o: ssl_locl.h |
581 | s3_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 629 | s3_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
582 | s3_pkt.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
583 | s3_pkt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
584 | s3_pkt.o: ../include/openssl/x509_vfy.h s3_pkt.c ssl_locl.h | ||
585 | s3_srvr.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
586 | s3_srvr.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
587 | s3_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 630 | s3_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
588 | s3_srvr.o: ../include/openssl/cast.h ../include/openssl/comp.h | 631 | s3_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
589 | s3_srvr.o: ../include/openssl/crypto.h ../include/openssl/des.h | 632 | s3_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
590 | s3_srvr.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 633 | s3_srvr.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
591 | s3_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 634 | s3_srvr.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
592 | s3_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h | 635 | s3_srvr.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
593 | s3_srvr.o: ../include/openssl/fips.h ../include/openssl/idea.h | 636 | s3_srvr.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
594 | s3_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 637 | s3_srvr.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h |
595 | s3_srvr.o: ../include/openssl/md2.h ../include/openssl/md4.h | 638 | s3_srvr.o: ../include/openssl/lhash.h ../include/openssl/md5.h |
596 | s3_srvr.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
597 | s3_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 639 | s3_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
598 | s3_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 640 | s3_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
599 | s3_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 641 | s3_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
600 | s3_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 642 | s3_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
601 | s3_srvr.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 643 | s3_srvr.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
602 | s3_srvr.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 644 | s3_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
603 | s3_srvr.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
604 | s3_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 645 | s3_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
605 | s3_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 646 | s3_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
606 | s3_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 647 | s3_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
607 | s3_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 648 | s3_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
608 | s3_srvr.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 649 | s3_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
609 | s3_srvr.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
610 | s3_srvr.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_srvr.c ssl_locl.h | 650 | s3_srvr.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_srvr.c ssl_locl.h |
611 | ssl_algs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 651 | ssl_algs.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
612 | ssl_algs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
613 | ssl_algs.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 652 | ssl_algs.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
614 | ssl_algs.o: ../include/openssl/cast.h ../include/openssl/comp.h | 653 | ssl_algs.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
615 | ssl_algs.o: ../include/openssl/crypto.h ../include/openssl/des.h | 654 | ssl_algs.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
616 | ssl_algs.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 655 | ssl_algs.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
617 | ssl_algs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 656 | ssl_algs.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
618 | ssl_algs.o: ../include/openssl/err.h ../include/openssl/evp.h | 657 | ssl_algs.o: ../include/openssl/err.h ../include/openssl/evp.h |
619 | ssl_algs.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 658 | ssl_algs.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
620 | ssl_algs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 659 | ssl_algs.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
621 | ssl_algs.o: ../include/openssl/md4.h ../include/openssl/md5.h | 660 | ssl_algs.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
622 | ssl_algs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 661 | ssl_algs.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
623 | ssl_algs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 662 | ssl_algs.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
624 | ssl_algs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 663 | ssl_algs.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
625 | ssl_algs.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 664 | ssl_algs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
626 | ssl_algs.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 665 | ssl_algs.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
627 | ssl_algs.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 666 | ssl_algs.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
628 | ssl_algs.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 667 | ssl_algs.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
629 | ssl_algs.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 668 | ssl_algs.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
630 | ssl_algs.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 669 | ssl_algs.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_algs.c |
631 | ssl_algs.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 670 | ssl_algs.o: ssl_locl.h |
632 | ssl_algs.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 671 | ssl_asn1.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/asn1_mac.h |
633 | ssl_algs.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 672 | ssl_asn1.o: ../include/openssl/bio.h ../include/openssl/bn.h |
634 | ssl_algs.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 673 | ssl_asn1.o: ../include/openssl/buffer.h ../include/openssl/comp.h |
635 | ssl_algs.o: ../include/openssl/x509_vfy.h ssl_algs.c ssl_locl.h | 674 | ssl_asn1.o: ../include/openssl/crypto.h ../include/openssl/dsa.h |
636 | ssl_asn1.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 675 | ssl_asn1.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
637 | ssl_asn1.o: ../include/openssl/asn1_mac.h ../include/openssl/bio.h | 676 | ssl_asn1.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
638 | ssl_asn1.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | 677 | ssl_asn1.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
639 | ssl_asn1.o: ../include/openssl/buffer.h ../include/openssl/cast.h | 678 | ssl_asn1.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
640 | ssl_asn1.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 679 | ssl_asn1.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
641 | ssl_asn1.o: ../include/openssl/des.h ../include/openssl/des_old.h | 680 | ssl_asn1.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
642 | ssl_asn1.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 681 | ssl_asn1.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
643 | ssl_asn1.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 682 | ssl_asn1.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
644 | ssl_asn1.o: ../include/openssl/evp.h ../include/openssl/idea.h | 683 | ssl_asn1.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
645 | ssl_asn1.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 684 | ssl_asn1.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h |
646 | ssl_asn1.o: ../include/openssl/md2.h ../include/openssl/md4.h | 685 | ssl_asn1.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
647 | ssl_asn1.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 686 | ssl_asn1.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
648 | ssl_asn1.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 687 | ssl_asn1.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
649 | ssl_asn1.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 688 | ssl_asn1.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
650 | ssl_asn1.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 689 | ssl_asn1.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
651 | ssl_asn1.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 690 | ssl_asn1.o: ../include/openssl/x509_vfy.h ssl_asn1.c ssl_locl.h |
652 | ssl_asn1.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 691 | ssl_cert.o: ../crypto/o_dir.h ../e_os.h ../include/openssl/asn1.h |
653 | ssl_asn1.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 692 | ssl_cert.o: ../include/openssl/bio.h ../include/openssl/bn.h |
654 | ssl_asn1.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 693 | ssl_cert.o: ../include/openssl/buffer.h ../include/openssl/comp.h |
655 | ssl_asn1.o: ../include/openssl/sha.h ../include/openssl/ssl.h | ||
656 | ssl_asn1.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | ||
657 | ssl_asn1.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
658 | ssl_asn1.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
659 | ssl_asn1.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
660 | ssl_asn1.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_asn1.c | ||
661 | ssl_asn1.o: ssl_locl.h | ||
662 | ssl_cert.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
663 | ssl_cert.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
664 | ssl_cert.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
665 | ssl_cert.o: ../include/openssl/cast.h ../include/openssl/comp.h | ||
666 | ssl_cert.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 694 | ssl_cert.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
667 | ssl_cert.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
668 | ssl_cert.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 695 | ssl_cert.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
669 | ssl_cert.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 696 | ssl_cert.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
670 | ssl_cert.o: ../include/openssl/evp.h ../include/openssl/fips.h | 697 | ssl_cert.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
671 | ssl_cert.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 698 | ssl_cert.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
672 | ssl_cert.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 699 | ssl_cert.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
673 | ssl_cert.o: ../include/openssl/md4.h ../include/openssl/md5.h | 700 | ssl_cert.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
674 | ssl_cert.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
675 | ssl_cert.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 701 | ssl_cert.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
676 | ssl_cert.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 702 | ssl_cert.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
677 | ssl_cert.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 703 | ssl_cert.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
678 | ssl_cert.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 704 | ssl_cert.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
679 | ssl_cert.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 705 | ssl_cert.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h |
680 | ssl_cert.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
681 | ssl_cert.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 706 | ssl_cert.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
682 | ssl_cert.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 707 | ssl_cert.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
683 | ssl_cert.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 708 | ssl_cert.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
684 | ssl_cert.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 709 | ssl_cert.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
685 | ssl_cert.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 710 | ssl_cert.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
686 | ssl_cert.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
687 | ssl_cert.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | 711 | ssl_cert.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h |
688 | ssl_cert.o: ssl_cert.c ssl_locl.h | 712 | ssl_cert.o: ssl_cert.c ssl_locl.h |
689 | ssl_ciph.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 713 | ssl_ciph.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
690 | ssl_ciph.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
691 | ssl_ciph.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 714 | ssl_ciph.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
692 | ssl_ciph.o: ../include/openssl/cast.h ../include/openssl/comp.h | 715 | ssl_ciph.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
693 | ssl_ciph.o: ../include/openssl/crypto.h ../include/openssl/des.h | 716 | ssl_ciph.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
694 | ssl_ciph.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 717 | ssl_ciph.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
695 | ssl_ciph.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 718 | ssl_ciph.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
696 | ssl_ciph.o: ../include/openssl/err.h ../include/openssl/evp.h | 719 | ssl_ciph.o: ../include/openssl/err.h ../include/openssl/evp.h |
697 | ssl_ciph.o: ../include/openssl/fips.h ../include/openssl/idea.h | ||
698 | ssl_ciph.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 720 | ssl_ciph.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
699 | ssl_ciph.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
700 | ssl_ciph.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
701 | ssl_ciph.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 721 | ssl_ciph.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
702 | ssl_ciph.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 722 | ssl_ciph.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
703 | ssl_ciph.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 723 | ssl_ciph.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
704 | ssl_ciph.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 724 | ssl_ciph.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
705 | ssl_ciph.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 725 | ssl_ciph.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
706 | ssl_ciph.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
707 | ssl_ciph.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 726 | ssl_ciph.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
708 | ssl_ciph.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 727 | ssl_ciph.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
709 | ssl_ciph.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 728 | ssl_ciph.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
710 | ssl_ciph.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 729 | ssl_ciph.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
711 | ssl_ciph.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 730 | ssl_ciph.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
712 | ssl_ciph.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
713 | ssl_ciph.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_ciph.c | 731 | ssl_ciph.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_ciph.c |
714 | ssl_ciph.o: ssl_locl.h | 732 | ssl_ciph.o: ssl_locl.h |
715 | ssl_err.o: ../include/openssl/aes.h ../include/openssl/asn1.h | 733 | ssl_err.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
716 | ssl_err.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
717 | ssl_err.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 734 | ssl_err.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
718 | ssl_err.o: ../include/openssl/cast.h ../include/openssl/comp.h | 735 | ssl_err.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
719 | ssl_err.o: ../include/openssl/crypto.h ../include/openssl/des.h | 736 | ssl_err.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
720 | ssl_err.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 737 | ssl_err.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
721 | ssl_err.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 738 | ssl_err.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
722 | ssl_err.o: ../include/openssl/err.h ../include/openssl/evp.h | 739 | ssl_err.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
723 | ssl_err.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 740 | ssl_err.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
724 | ssl_err.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
725 | ssl_err.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
726 | ssl_err.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
727 | ssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 741 | ssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
728 | ssl_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 742 | ssl_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
729 | ssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 743 | ssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
730 | ssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 744 | ssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
731 | ssl_err.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 745 | ssl_err.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h |
732 | ssl_err.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 746 | ssl_err.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
733 | ssl_err.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 747 | ssl_err.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
734 | ssl_err.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 748 | ssl_err.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
735 | ssl_err.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 749 | ssl_err.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
736 | ssl_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 750 | ssl_err.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_err.c |
737 | ssl_err.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 751 | ssl_err2.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
738 | ssl_err.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
739 | ssl_err.o: ../include/openssl/x509_vfy.h ssl_err.c | ||
740 | ssl_err2.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
741 | ssl_err2.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
742 | ssl_err2.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 752 | ssl_err2.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
743 | ssl_err2.o: ../include/openssl/cast.h ../include/openssl/comp.h | 753 | ssl_err2.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
744 | ssl_err2.o: ../include/openssl/crypto.h ../include/openssl/des.h | 754 | ssl_err2.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
745 | ssl_err2.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 755 | ssl_err2.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
746 | ssl_err2.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 756 | ssl_err2.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
747 | ssl_err2.o: ../include/openssl/err.h ../include/openssl/evp.h | 757 | ssl_err2.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
748 | ssl_err2.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 758 | ssl_err2.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
749 | ssl_err2.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
750 | ssl_err2.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
751 | ssl_err2.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
752 | ssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 759 | ssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
753 | ssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 760 | ssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
754 | ssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 761 | ssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
755 | ssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 762 | ssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
756 | ssl_err2.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 763 | ssl_err2.o: ../include/openssl/pqueue.h ../include/openssl/safestack.h |
757 | ssl_err2.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 764 | ssl_err2.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
758 | ssl_err2.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 765 | ssl_err2.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
759 | ssl_err2.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 766 | ssl_err2.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
760 | ssl_err2.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 767 | ssl_err2.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
761 | ssl_err2.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 768 | ssl_err2.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_err2.c |
762 | ssl_err2.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 769 | ssl_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
763 | ssl_err2.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
764 | ssl_err2.o: ../include/openssl/x509_vfy.h ssl_err2.c | ||
765 | ssl_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
766 | ssl_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
767 | ssl_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 770 | ssl_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
768 | ssl_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h | 771 | ssl_lib.o: ../include/openssl/comp.h ../include/openssl/conf.h |
769 | ssl_lib.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 772 | ssl_lib.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
770 | ssl_lib.o: ../include/openssl/des.h ../include/openssl/des_old.h | 773 | ssl_lib.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
771 | ssl_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 774 | ssl_lib.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
772 | ssl_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 775 | ssl_lib.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
773 | ssl_lib.o: ../include/openssl/evp.h ../include/openssl/fips.h | 776 | ssl_lib.o: ../include/openssl/err.h ../include/openssl/evp.h |
774 | ssl_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 777 | ssl_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
775 | ssl_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 778 | ssl_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
776 | ssl_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h | 779 | ssl_lib.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
777 | ssl_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
778 | ssl_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
779 | ssl_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 780 | ssl_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
780 | ssl_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 781 | ssl_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
781 | ssl_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 782 | ssl_lib.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
782 | ssl_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 783 | ssl_lib.o: ../include/openssl/pqueue.h ../include/openssl/rand.h |
783 | ssl_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 784 | ssl_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
784 | ssl_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 785 | ssl_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
785 | ssl_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 786 | ssl_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
786 | ssl_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 787 | ssl_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
787 | ssl_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 788 | ssl_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
788 | ssl_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 789 | ssl_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
789 | ssl_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 790 | ssl_lib.o: ../include/openssl/x509v3.h kssl_lcl.h ssl_lib.c ssl_locl.h |
790 | ssl_lib.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h kssl_lcl.h | 791 | ssl_rsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
791 | ssl_lib.o: ssl_lib.c ssl_locl.h | ||
792 | ssl_rsa.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
793 | ssl_rsa.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
794 | ssl_rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 792 | ssl_rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
795 | ssl_rsa.o: ../include/openssl/cast.h ../include/openssl/comp.h | 793 | ssl_rsa.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
796 | ssl_rsa.o: ../include/openssl/crypto.h ../include/openssl/des.h | 794 | ssl_rsa.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
797 | ssl_rsa.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 795 | ssl_rsa.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
798 | ssl_rsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 796 | ssl_rsa.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
799 | ssl_rsa.o: ../include/openssl/err.h ../include/openssl/evp.h | 797 | ssl_rsa.o: ../include/openssl/err.h ../include/openssl/evp.h |
800 | ssl_rsa.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 798 | ssl_rsa.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
801 | ssl_rsa.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 799 | ssl_rsa.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
802 | ssl_rsa.o: ../include/openssl/md4.h ../include/openssl/md5.h | 800 | ssl_rsa.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
803 | ssl_rsa.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 801 | ssl_rsa.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
804 | ssl_rsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 802 | ssl_rsa.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
805 | ssl_rsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 803 | ssl_rsa.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
806 | ssl_rsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 804 | ssl_rsa.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
807 | ssl_rsa.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 805 | ssl_rsa.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
808 | ssl_rsa.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 806 | ssl_rsa.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
809 | ssl_rsa.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 807 | ssl_rsa.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
810 | ssl_rsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 808 | ssl_rsa.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
811 | ssl_rsa.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 809 | ssl_rsa.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h |
812 | ssl_rsa.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 810 | ssl_rsa.o: ssl_rsa.c |
813 | ssl_rsa.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 811 | ssl_sess.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
814 | ssl_rsa.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
815 | ssl_rsa.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
816 | ssl_rsa.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_rsa.c | ||
817 | ssl_sess.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
818 | ssl_sess.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
819 | ssl_sess.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 812 | ssl_sess.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
820 | ssl_sess.o: ../include/openssl/cast.h ../include/openssl/comp.h | 813 | ssl_sess.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
821 | ssl_sess.o: ../include/openssl/crypto.h ../include/openssl/des.h | 814 | ssl_sess.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
822 | ssl_sess.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 815 | ssl_sess.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
823 | ssl_sess.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 816 | ssl_sess.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
824 | ssl_sess.o: ../include/openssl/err.h ../include/openssl/evp.h | 817 | ssl_sess.o: ../include/openssl/err.h ../include/openssl/evp.h |
825 | ssl_sess.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 818 | ssl_sess.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
826 | ssl_sess.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 819 | ssl_sess.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
827 | ssl_sess.o: ../include/openssl/md4.h ../include/openssl/md5.h | 820 | ssl_sess.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
828 | ssl_sess.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 821 | ssl_sess.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
829 | ssl_sess.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 822 | ssl_sess.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
830 | ssl_sess.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 823 | ssl_sess.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
831 | ssl_sess.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 824 | ssl_sess.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
832 | ssl_sess.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 825 | ssl_sess.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
833 | ssl_sess.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 826 | ssl_sess.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
834 | ssl_sess.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 827 | ssl_sess.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
835 | ssl_sess.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 828 | ssl_sess.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
836 | ssl_sess.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 829 | ssl_sess.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
837 | ssl_sess.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 830 | ssl_sess.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_sess.c |
838 | ssl_sess.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 831 | ssl_stat.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
839 | ssl_sess.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
840 | ssl_sess.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
841 | ssl_sess.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | ||
842 | ssl_sess.o: ssl_sess.c | ||
843 | ssl_stat.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
844 | ssl_stat.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
845 | ssl_stat.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 832 | ssl_stat.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
846 | ssl_stat.o: ../include/openssl/cast.h ../include/openssl/comp.h | 833 | ssl_stat.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
847 | ssl_stat.o: ../include/openssl/crypto.h ../include/openssl/des.h | 834 | ssl_stat.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
848 | ssl_stat.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 835 | ssl_stat.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
849 | ssl_stat.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 836 | ssl_stat.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
850 | ssl_stat.o: ../include/openssl/err.h ../include/openssl/evp.h | 837 | ssl_stat.o: ../include/openssl/err.h ../include/openssl/evp.h |
851 | ssl_stat.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 838 | ssl_stat.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
852 | ssl_stat.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 839 | ssl_stat.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
853 | ssl_stat.o: ../include/openssl/md4.h ../include/openssl/md5.h | 840 | ssl_stat.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
854 | ssl_stat.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 841 | ssl_stat.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
855 | ssl_stat.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 842 | ssl_stat.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
856 | ssl_stat.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 843 | ssl_stat.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
857 | ssl_stat.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 844 | ssl_stat.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
858 | ssl_stat.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 845 | ssl_stat.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
859 | ssl_stat.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 846 | ssl_stat.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
860 | ssl_stat.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 847 | ssl_stat.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
861 | ssl_stat.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 848 | ssl_stat.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
862 | ssl_stat.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 849 | ssl_stat.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h |
863 | ssl_stat.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 850 | ssl_stat.o: ssl_stat.c |
864 | ssl_stat.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 851 | ssl_txt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
865 | ssl_stat.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
866 | ssl_stat.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
867 | ssl_stat.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_stat.c | ||
868 | ssl_txt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
869 | ssl_txt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
870 | ssl_txt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 852 | ssl_txt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
871 | ssl_txt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 853 | ssl_txt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
872 | ssl_txt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 854 | ssl_txt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
873 | ssl_txt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 855 | ssl_txt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
874 | ssl_txt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 856 | ssl_txt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
875 | ssl_txt.o: ../include/openssl/err.h ../include/openssl/evp.h | 857 | ssl_txt.o: ../include/openssl/err.h ../include/openssl/evp.h |
876 | ssl_txt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 858 | ssl_txt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
877 | ssl_txt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 859 | ssl_txt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
878 | ssl_txt.o: ../include/openssl/md4.h ../include/openssl/md5.h | 860 | ssl_txt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
879 | ssl_txt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 861 | ssl_txt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
880 | ssl_txt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 862 | ssl_txt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
881 | ssl_txt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 863 | ssl_txt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
882 | ssl_txt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 864 | ssl_txt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
883 | ssl_txt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 865 | ssl_txt.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
884 | ssl_txt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 866 | ssl_txt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
885 | ssl_txt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 867 | ssl_txt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
886 | ssl_txt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 868 | ssl_txt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
887 | ssl_txt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 869 | ssl_txt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h |
888 | ssl_txt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 870 | ssl_txt.o: ssl_txt.c |
889 | ssl_txt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 871 | t1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
890 | ssl_txt.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
891 | ssl_txt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
892 | ssl_txt.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_txt.c | ||
893 | t1_clnt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
894 | t1_clnt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
895 | t1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 872 | t1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
896 | t1_clnt.o: ../include/openssl/cast.h ../include/openssl/comp.h | 873 | t1_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
897 | t1_clnt.o: ../include/openssl/crypto.h ../include/openssl/des.h | 874 | t1_clnt.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
898 | t1_clnt.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 875 | t1_clnt.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
899 | t1_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 876 | t1_clnt.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
900 | t1_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h | 877 | t1_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h |
901 | t1_clnt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 878 | t1_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
902 | t1_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 879 | t1_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
903 | t1_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h | 880 | t1_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
904 | t1_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 881 | t1_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
905 | t1_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 882 | t1_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
906 | t1_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 883 | t1_clnt.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
907 | t1_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 884 | t1_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
908 | t1_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 885 | t1_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
909 | t1_clnt.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 886 | t1_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
910 | t1_clnt.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 887 | t1_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
911 | t1_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 888 | t1_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
912 | t1_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 889 | t1_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
913 | t1_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 890 | t1_clnt.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_clnt.c |
914 | t1_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 891 | t1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
915 | t1_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
916 | t1_clnt.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
917 | t1_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | ||
918 | t1_clnt.o: t1_clnt.c | ||
919 | t1_enc.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
920 | t1_enc.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
921 | t1_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 892 | t1_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
922 | t1_enc.o: ../include/openssl/cast.h ../include/openssl/comp.h | 893 | t1_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
923 | t1_enc.o: ../include/openssl/crypto.h ../include/openssl/des.h | 894 | t1_enc.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
924 | t1_enc.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 895 | t1_enc.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
925 | t1_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 896 | t1_enc.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
926 | t1_enc.o: ../include/openssl/err.h ../include/openssl/evp.h | 897 | t1_enc.o: ../include/openssl/err.h ../include/openssl/evp.h |
927 | t1_enc.o: ../include/openssl/fips.h ../include/openssl/hmac.h | 898 | t1_enc.o: ../include/openssl/hmac.h ../include/openssl/kssl.h |
928 | t1_enc.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 899 | t1_enc.o: ../include/openssl/lhash.h ../include/openssl/md5.h |
929 | t1_enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 900 | t1_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
930 | t1_enc.o: ../include/openssl/md4.h ../include/openssl/md5.h | 901 | t1_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
931 | t1_enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 902 | t1_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
932 | t1_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 903 | t1_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
933 | t1_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 904 | t1_enc.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
934 | t1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 905 | t1_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
935 | t1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 906 | t1_enc.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
936 | t1_enc.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 907 | t1_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
937 | t1_enc.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 908 | t1_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
938 | t1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 909 | t1_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
939 | t1_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 910 | t1_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h |
940 | t1_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 911 | t1_enc.o: t1_enc.c |
941 | t1_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 912 | t1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
942 | t1_enc.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
943 | t1_enc.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
944 | t1_enc.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_enc.c | ||
945 | t1_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
946 | t1_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
947 | t1_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 913 | t1_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
948 | t1_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h | 914 | t1_lib.o: ../include/openssl/comp.h ../include/openssl/conf.h |
949 | t1_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h | 915 | t1_lib.o: ../include/openssl/crypto.h ../include/openssl/dsa.h |
950 | t1_lib.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 916 | t1_lib.o: ../include/openssl/dtls1.h ../include/openssl/e_os2.h |
951 | t1_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 917 | t1_lib.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
952 | t1_lib.o: ../include/openssl/err.h ../include/openssl/evp.h | 918 | t1_lib.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
953 | t1_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 919 | t1_lib.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
954 | t1_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 920 | t1_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
955 | t1_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h | 921 | t1_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
956 | t1_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 922 | t1_lib.o: ../include/openssl/ocsp.h ../include/openssl/opensslconf.h |
957 | t1_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
958 | t1_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 923 | t1_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
959 | t1_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 924 | t1_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
960 | t1_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 925 | t1_lib.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
961 | t1_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 926 | t1_lib.o: ../include/openssl/pqueue.h ../include/openssl/rsa.h |
962 | t1_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
963 | t1_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 927 | t1_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
964 | t1_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 928 | t1_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
965 | t1_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 929 | t1_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
966 | t1_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 930 | t1_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
967 | t1_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 931 | t1_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
968 | t1_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | 932 | t1_lib.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssl_locl.h |
969 | t1_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_lib.c | 933 | t1_lib.o: t1_lib.c |
970 | t1_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 934 | t1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
971 | t1_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
972 | t1_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 935 | t1_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
973 | t1_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h | 936 | t1_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
974 | t1_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h | 937 | t1_meth.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
975 | t1_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 938 | t1_meth.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
976 | t1_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 939 | t1_meth.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
977 | t1_meth.o: ../include/openssl/err.h ../include/openssl/evp.h | 940 | t1_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
978 | t1_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 941 | t1_meth.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
979 | t1_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 942 | t1_meth.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
980 | t1_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | 943 | t1_meth.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
981 | t1_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 944 | t1_meth.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
982 | t1_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 945 | t1_meth.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
983 | t1_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 946 | t1_meth.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
984 | t1_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 947 | t1_meth.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
985 | t1_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | 948 | t1_meth.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
986 | t1_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 949 | t1_meth.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
987 | t1_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 950 | t1_meth.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
988 | t1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 951 | t1_meth.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
989 | t1_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 952 | t1_meth.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h |
990 | t1_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 953 | t1_meth.o: t1_meth.c |
991 | t1_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 954 | t1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
992 | t1_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
993 | t1_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
994 | t1_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_meth.c | ||
995 | t1_srvr.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
996 | t1_srvr.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
997 | t1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 955 | t1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
998 | t1_srvr.o: ../include/openssl/cast.h ../include/openssl/comp.h | 956 | t1_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
999 | t1_srvr.o: ../include/openssl/crypto.h ../include/openssl/des.h | 957 | t1_srvr.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
1000 | t1_srvr.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 958 | t1_srvr.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
1001 | t1_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 959 | t1_srvr.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
1002 | t1_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h | 960 | t1_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h |
1003 | t1_srvr.o: ../include/openssl/idea.h ../include/openssl/kssl.h | 961 | t1_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
1004 | t1_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 962 | t1_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
1005 | t1_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h | 963 | t1_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
1006 | t1_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 964 | t1_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
1007 | t1_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 965 | t1_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
1008 | t1_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 966 | t1_srvr.o: ../include/openssl/pq_compat.h ../include/openssl/pqueue.h |
1009 | t1_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 967 | t1_srvr.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
1010 | t1_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 968 | t1_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
1011 | t1_srvr.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 969 | t1_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
1012 | t1_srvr.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 970 | t1_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
1013 | t1_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 971 | t1_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
1014 | t1_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 972 | t1_srvr.o: ../include/openssl/tls1.h ../include/openssl/x509.h |
1015 | t1_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 973 | t1_srvr.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_srvr.c |
1016 | t1_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | ||
1017 | t1_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
1018 | t1_srvr.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
1019 | t1_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | ||
1020 | t1_srvr.o: t1_srvr.c | ||
diff --git a/src/lib/libssl/src/test/CAss.cnf b/src/lib/libssl/src/test/CAss.cnf index 21da59a73a..20f8f05e3d 100644 --- a/src/lib/libssl/src/test/CAss.cnf +++ b/src/lib/libssl/src/test/CAss.cnf | |||
@@ -24,10 +24,53 @@ organizationName_value = Dodgy Brothers | |||
24 | commonName = Common Name (eg, YOUR name) | 24 | commonName = Common Name (eg, YOUR name) |
25 | commonName_value = Dodgy CA | 25 | commonName_value = Dodgy CA |
26 | 26 | ||
27 | #################################################################### | ||
28 | [ ca ] | ||
29 | default_ca = CA_default # The default ca section | ||
30 | |||
31 | #################################################################### | ||
32 | [ CA_default ] | ||
33 | |||
34 | dir = ./demoCA # Where everything is kept | ||
35 | certs = $dir/certs # Where the issued certs are kept | ||
36 | crl_dir = $dir/crl # Where the issued crl are kept | ||
37 | database = $dir/index.txt # database index file. | ||
38 | #unique_subject = no # Set to 'no' to allow creation of | ||
39 | # several ctificates with same subject. | ||
40 | new_certs_dir = $dir/newcerts # default place for new certs. | ||
41 | |||
42 | certificate = $dir/cacert.pem # The CA certificate | ||
43 | serial = $dir/serial # The current serial number | ||
44 | crl = $dir/crl.pem # The current CRL | ||
45 | private_key = $dir/private/cakey.pem# The private key | ||
46 | RANDFILE = $dir/private/.rand # private random number file | ||
47 | |||
48 | x509_extensions = v3_ca # The extentions to add to the cert | ||
49 | |||
50 | name_opt = ca_default # Subject Name options | ||
51 | cert_opt = ca_default # Certificate field options | ||
52 | |||
53 | default_days = 365 # how long to certify for | ||
54 | default_crl_days= 30 # how long before next CRL | ||
55 | default_md = md5 # which md to use. | ||
56 | preserve = no # keep passed DN ordering | ||
57 | |||
58 | policy = policy_anything | ||
59 | |||
60 | [ policy_anything ] | ||
61 | countryName = optional | ||
62 | stateOrProvinceName = optional | ||
63 | localityName = optional | ||
64 | organizationName = optional | ||
65 | organizationalUnitName = optional | ||
66 | commonName = supplied | ||
67 | emailAddress = optional | ||
68 | |||
69 | |||
70 | |||
27 | [ v3_ca ] | 71 | [ v3_ca ] |
28 | subjectKeyIdentifier=hash | 72 | subjectKeyIdentifier=hash |
29 | authorityKeyIdentifier=keyid:always,issuer:always | 73 | authorityKeyIdentifier=keyid:always,issuer:always |
30 | basicConstraints = CA:true,pathlen:1 | 74 | basicConstraints = CA:true,pathlen:1 |
31 | keyUsage = cRLSign, keyCertSign | 75 | keyUsage = cRLSign, keyCertSign |
32 | issuerAltName=issuer:copy | 76 | issuerAltName=issuer:copy |
33 | |||
diff --git a/src/lib/libssl/src/test/Makefile b/src/lib/libssl/src/test/Makefile index 189d14ed49..62f9b86052 100644 --- a/src/lib/libssl/src/test/Makefile +++ b/src/lib/libssl/src/test/Makefile | |||
@@ -7,11 +7,6 @@ TOP= .. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
9 | CFLAG= -g | 9 | CFLAG= -g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP= /usr/local/ssl | ||
13 | MAKEFILE= Makefile | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | 10 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) |
16 | PERL= perl | 11 | PERL= perl |
17 | # KRB5 stuff | 12 | # KRB5 stuff |
@@ -35,11 +30,14 @@ LIBSSL= -L.. -lssl | |||
35 | 30 | ||
36 | BNTEST= bntest | 31 | BNTEST= bntest |
37 | ECTEST= ectest | 32 | ECTEST= ectest |
33 | ECDSATEST= ecdsatest | ||
34 | ECDHTEST= ecdhtest | ||
38 | EXPTEST= exptest | 35 | EXPTEST= exptest |
39 | IDEATEST= ideatest | 36 | IDEATEST= ideatest |
40 | SHATEST= shatest | 37 | SHATEST= shatest |
41 | SHA1TEST= sha1test | 38 | SHA1TEST= sha1test |
42 | FIPS_SHATEST= fips_shatest | 39 | SHA256TEST= sha256t |
40 | SHA512TEST= sha512t | ||
43 | MDC2TEST= mdc2test | 41 | MDC2TEST= mdc2test |
44 | RMDTEST= rmdtest | 42 | RMDTEST= rmdtest |
45 | MD2TEST= md2test | 43 | MD2TEST= md2test |
@@ -52,59 +50,46 @@ RC5TEST= rc5test | |||
52 | BFTEST= bftest | 50 | BFTEST= bftest |
53 | CASTTEST= casttest | 51 | CASTTEST= casttest |
54 | DESTEST= destest | 52 | DESTEST= destest |
55 | FIPS_DESTEST= fips_desmovs | ||
56 | RANDTEST= randtest | 53 | RANDTEST= randtest |
57 | FIPS_RANDTEST= fips_randtest | ||
58 | DHTEST= dhtest | 54 | DHTEST= dhtest |
59 | DSATEST= dsatest | 55 | DSATEST= dsatest |
60 | FIPS_DSATEST= fips_dsatest | ||
61 | METHTEST= methtest | 56 | METHTEST= methtest |
62 | SSLTEST= ssltest | 57 | SSLTEST= ssltest |
63 | RSATEST= rsa_test | 58 | RSATEST= rsa_test |
64 | ENGINETEST= enginetest | 59 | ENGINETEST= enginetest |
65 | EVPTEST= evp_test | 60 | EVPTEST= evp_test |
66 | FIPS_AESTEST= fips_aesavs | 61 | IGETEST= igetest |
67 | FIPS_HMACTEST= fips_hmactest | ||
68 | FIPS_RSAVTEST= fips_rsavtest | ||
69 | FIPS_RSASTEST= fips_rsastest | ||
70 | FIPS_RSAGTEST= fips_rsagtest | ||
71 | FIPS_DSSVS= fips_dssvs | ||
72 | FIPS_RNGVS= fips_rngvs | ||
73 | FIPS_TEST_SUITE=fips_test_suite | ||
74 | 62 | ||
75 | TESTS= alltests | 63 | TESTS= alltests |
76 | 64 | ||
77 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \ | 65 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \ |
66 | $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \ | ||
78 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ | 67 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ |
79 | $(DESTEST)$(EXE_EXT) $(FIPS_DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(FIPS_SHATEST)$(EXE_EXT) $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ | 68 | $(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \ |
80 | $(RANDTEST)$(EXE_EXT) $(FIPS_RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ | 69 | $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ |
81 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(FIPS_DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ | 70 | $(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ |
82 | $(EVPTEST)$(EXE_EXT) $(FIPS_AESTEST)$(EXE_EXT) \ | 71 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ |
83 | $(FIPS_HMACTEST)$(EXE_EXT) $(FIPS_RSAVTEST)$(EXE_EXT) \ | 72 | $(EVPTEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) |
84 | $(FIPS_RSASTEST)$(EXE_EXT) $(FIPS_RSAGTEST)$(EXE_EXT) \ | ||
85 | $(FIPS_DSSVS)$(EXE_EXT) $(FIPS_RNGVS)$(EXE_EXT) \ | ||
86 | $(FIPS_TEST_SUITE)$(EXE_EXT) | ||
87 | 73 | ||
88 | # $(METHTEST)$(EXE_EXT) | 74 | # $(METHTEST)$(EXE_EXT) |
89 | 75 | ||
90 | OBJ= $(BNTEST).o $(ECTEST).o $(IDEATEST).o $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ | 76 | OBJ= $(BNTEST).o $(ECTEST).o $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \ |
77 | $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ | ||
91 | $(HMACTEST).o \ | 78 | $(HMACTEST).o \ |
92 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ | 79 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ |
93 | $(DESTEST).o $(FIPS_DESTEST).o $(SHATEST).o $(SHA1TEST).o $(FIPS_SHATEST).o $(MDC2TEST).o $(RMDTEST).o \ | 80 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \ |
94 | $(RANDTEST).o $(FIPS_RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ | 81 | $(MDC2TEST).o $(RMDTEST).o \ |
95 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(FIPS_DSATEST).o $(EXPTEST).o $(RSATEST).o \ | 82 | $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ |
96 | $(EVPTEST).o $(FIPS_AESTEST).o $(FIPS_HMACTEST).o $(FIPS_RSAVTEST).o \ | 83 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \ |
97 | $(FIPS_RSASTEST).o $(FIPS_RSAGTEST).o $(FIPS_DSSVS).o $(FIPS_RNGVS).o \ | 84 | $(EVPTEST).o $(IGETEST).o |
98 | $(FIPS_TEST_SUITE).o | 85 | SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \ |
99 | SRC= $(BNTEST).c $(ECTEST).c $(IDEATEST).c $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ | 86 | $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ |
100 | $(HMACTEST).c \ | 87 | $(HMACTEST).c \ |
101 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ | 88 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ |
102 | $(DESTEST).c $(FIPS_DESTEST).c $(SHATEST).c $(SHA1TEST).c $(FIPS_SHATEST).c $(MDC2TEST).c $(RMDTEST).c \ | 89 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ |
103 | $(RANDTEST).c $(FIPS_RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ | 90 | $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ |
104 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(FIPS_DSATEST).c $(EXPTEST).c $(RSATEST).c \ | 91 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \ |
105 | $(EVPTEST).c $(FIPS_AESTEST).c $(FIPS_HMACTEST).c $(FIPS_RSAVTEST).c \ | 92 | $(EVPTEST).c $(IGETEST).c |
106 | $(FIPS_RSASTEST).c $(FIPS_RSAGTEST).c $(FIPS_DSSVS).c $(FIPS_RNGVS).c \ | ||
107 | $(FIPS_TEST_SUITE).c | ||
108 | 93 | ||
109 | EXHEADER= | 94 | EXHEADER= |
110 | HEADER= $(EXHEADER) | 95 | HEADER= $(EXHEADER) |
@@ -143,17 +128,10 @@ alltests: \ | |||
143 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | 128 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ |
144 | test_md2 test_mdc2 \ | 129 | test_md2 test_mdc2 \ |
145 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ | 130 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ |
146 | test_rand test_bn test_ec test_enc test_x509 test_rsa test_crl test_sid \ | 131 | test_rand test_bn test_ec test_ecdsa test_ecdh \ |
132 | test_enc test_x509 test_rsa test_crl test_sid \ | ||
147 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ | 133 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ |
148 | test_ss test_ca test_engine test_evp test_ssl | 134 | test_ss test_ca test_engine test_evp test_ssl test_ige |
149 | # temporarily removed | ||
150 | # fips_test_aes | ||
151 | |||
152 | fips_test_aes: | ||
153 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
154 | mkdir -p fips_aes_data/rsp; \ | ||
155 | ../util/shlib_wrap.sh ./$(FIPS_AESTEST) -d fips_aes_data/list; \ | ||
156 | fi | ||
157 | 135 | ||
158 | test_evp: | 136 | test_evp: |
159 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt | 137 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt |
@@ -167,9 +145,8 @@ test_idea: | |||
167 | test_sha: | 145 | test_sha: |
168 | ../util/shlib_wrap.sh ./$(SHATEST) | 146 | ../util/shlib_wrap.sh ./$(SHATEST) |
169 | ../util/shlib_wrap.sh ./$(SHA1TEST) | 147 | ../util/shlib_wrap.sh ./$(SHA1TEST) |
170 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 148 | ../util/shlib_wrap.sh ./$(SHA256TEST) |
171 | ../util/shlib_wrap.sh ./$(FIPS_SHATEST) < SHAmix.req | diff -w SHAmix.fax - ; \ | 149 | ../util/shlib_wrap.sh ./$(SHA512TEST) |
172 | fi | ||
173 | 150 | ||
174 | test_mdc2: | 151 | test_mdc2: |
175 | ../util/shlib_wrap.sh ./$(MDC2TEST) | 152 | ../util/shlib_wrap.sh ./$(MDC2TEST) |
@@ -206,9 +183,6 @@ test_rc5: | |||
206 | 183 | ||
207 | test_rand: | 184 | test_rand: |
208 | ../util/shlib_wrap.sh ./$(RANDTEST) | 185 | ../util/shlib_wrap.sh ./$(RANDTEST) |
209 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
210 | ../util/shlib_wrap.sh ./$(FIPS_RANDTEST); \ | ||
211 | fi | ||
212 | 186 | ||
213 | test_enc: | 187 | test_enc: |
214 | @sh ./testenc | 188 | @sh ./testenc |
@@ -221,7 +195,7 @@ test_x509: | |||
221 | echo test second x509v3 certificate | 195 | echo test second x509v3 certificate |
222 | sh ./tx509 v3-cert2.pem 2>/dev/null | 196 | sh ./tx509 v3-cert2.pem 2>/dev/null |
223 | 197 | ||
224 | test_rsa: | 198 | test_rsa: $(RSATEST)$(EXE_EXT) |
225 | @sh ./trsa 2>/dev/null | 199 | @sh ./trsa 2>/dev/null |
226 | ../util/shlib_wrap.sh ./$(RSATEST) | 200 | ../util/shlib_wrap.sh ./$(RSATEST) |
227 | 201 | ||
@@ -252,10 +226,18 @@ test_ec: | |||
252 | @echo 'test elliptic curves' | 226 | @echo 'test elliptic curves' |
253 | ../util/shlib_wrap.sh ./$(ECTEST) | 227 | ../util/shlib_wrap.sh ./$(ECTEST) |
254 | 228 | ||
229 | test_ecdsa: | ||
230 | @echo 'test ecdsa' | ||
231 | ../util/shlib_wrap.sh ./$(ECDSATEST) | ||
232 | |||
233 | test_ecdh: | ||
234 | @echo 'test ecdh' | ||
235 | ../util/shlib_wrap.sh ./$(ECDHTEST) | ||
236 | |||
255 | test_verify: | 237 | test_verify: |
256 | @echo "The following command should have some OK's and some failures" | 238 | @echo "The following command should have some OK's and some failures" |
257 | @echo "There are definitly a few expired certificates" | 239 | @echo "There are definitly a few expired certificates" |
258 | -../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem | 240 | ../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem |
259 | 241 | ||
260 | test_dh: | 242 | test_dh: |
261 | @echo "Generate a set of DH parameters" | 243 | @echo "Generate a set of DH parameters" |
@@ -265,10 +247,6 @@ test_dsa: | |||
265 | @echo "Generate a set of DSA parameters" | 247 | @echo "Generate a set of DSA parameters" |
266 | ../util/shlib_wrap.sh ./$(DSATEST) | 248 | ../util/shlib_wrap.sh ./$(DSATEST) |
267 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 | 249 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 |
268 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
269 | ../util/shlib_wrap.sh ./$(FIPS_DSATEST); \ | ||
270 | ../util/shlib_wrap.sh ./$(FIPS_DSATEST) -app2_1; \ | ||
271 | fi | ||
272 | 250 | ||
273 | test_gen: | 251 | test_gen: |
274 | @echo "Generate and verify a certificate request" | 252 | @echo "Generate and verify a certificate request" |
@@ -288,9 +266,7 @@ test_engine: | |||
288 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ | 266 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ |
289 | intP1.ss intP2.ss | 267 | intP1.ss intP2.ss |
290 | @echo "test SSL protocol" | 268 | @echo "test SSL protocol" |
291 | @if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 269 | ../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist |
292 | sh ./testfipsssl keyU.ss certU.ss certCA.ss; \ | ||
293 | fi | ||
294 | @sh ./testssl keyU.ss certU.ss certCA.ss | 270 | @sh ./testssl keyU.ss certU.ss certCA.ss |
295 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss | 271 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss |
296 | @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss | 272 | @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss |
@@ -307,11 +283,19 @@ test_aes: #$(AESTEST) | |||
307 | # @echo "test Rijndael" | 283 | # @echo "test Rijndael" |
308 | # ../util/shlib_wrap.sh ./$(AESTEST) | 284 | # ../util/shlib_wrap.sh ./$(AESTEST) |
309 | 285 | ||
286 | test_ige: $(IGETEST)$(EXE_EXT) | ||
287 | @echo "Test IGE mode" | ||
288 | ../util/shlib_wrap.sh ./$(IGETEST) | ||
289 | |||
310 | lint: | 290 | lint: |
311 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 291 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
312 | 292 | ||
313 | depend: | 293 | depend: |
314 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC) | 294 | @if [ -z "$(THIS)" ]; then \ |
295 | $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \ | ||
296 | else \ | ||
297 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \ | ||
298 | fi | ||
315 | 299 | ||
316 | dclean: | 300 | dclean: |
317 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 301 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
@@ -326,43 +310,14 @@ $(DLIBSSL): | |||
326 | $(DLIBCRYPTO): | 310 | $(DLIBCRYPTO): |
327 | (cd ..; $(MAKE) DIRS=crypto all) | 311 | (cd ..; $(MAKE) DIRS=crypto all) |
328 | 312 | ||
329 | BUILD_CMD=SHARED_LIBS="$(SHARED_LIBS)"; \ | 313 | BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ |
330 | if [ "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \ | 314 | shlib_target="$(SHLIB_TARGET)"; \ |
331 | SHARED_LIBS=""; \ | ||
332 | fi; \ | 315 | fi; \ |
333 | if [ -z "$$SHARED_LIBS" ]; then \ | 316 | LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \ |
334 | set -x; $${CC:-$(CC)} -o $$target$(EXE_EXT) $(CFLAGS) $$target.o $(PEX_LIBS) $(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO) $(EX_LIBS) ; \ | 317 | $(MAKE) -f $(TOP)/Makefile.shared -e \ |
335 | else set -x; LD_LIBRARY_PATH=..:$$LD_LIBRARY_PATH \ | 318 | APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \ |
336 | $(CC) -o $$target$(EXE_EXT) $(CFLAGS) $$target.o $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \ | 319 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ |
337 | fi | 320 | link_app.$${shlib_target} |
338 | |||
339 | FIPS_BUILD_CMD=if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
340 | FIPSLD_CC=$(CC); CC=$(TOP)/fips-1.0/fipsld; export CC FIPSLD_CC; \ | ||
341 | fi; $(BUILD_CMD) | ||
342 | |||
343 | $(FIPS_AESTEST)$(EXE_EXT): $(FIPS_AESTEST).o $(DLIBCRYPTO) | ||
344 | @target=$(FIPS_AESTEST); $(FIPS_BUILD_CMD) | ||
345 | |||
346 | $(FIPS_HMACTEST)$(EXE_EXT): $(FIPS_HMACTEST).o $(DLIBCRYPTO) | ||
347 | @target=$(FIPS_HMACTEST); $(FIPS_BUILD_CMD) | ||
348 | |||
349 | $(FIPS_RSAVTEST)$(EXE_EXT): $(FIPS_RSAVTEST).o $(DLIBCRYPTO) | ||
350 | @target=$(FIPS_RSAVTEST); $(FIPS_BUILD_CMD) | ||
351 | |||
352 | $(FIPS_RSASTEST)$(EXE_EXT): $(FIPS_RSASTEST).o $(DLIBCRYPTO) | ||
353 | @target=$(FIPS_RSASTEST); $(FIPS_BUILD_CMD) | ||
354 | |||
355 | $(FIPS_RSAGTEST)$(EXE_EXT): $(FIPS_RSAGTEST).o $(DLIBCRYPTO) | ||
356 | @target=$(FIPS_RSAGTEST); $(FIPS_BUILD_CMD) | ||
357 | |||
358 | $(FIPS_DSSVS)$(EXE_EXT): $(FIPS_DSSVS).o $(DLIBCRYPTO) | ||
359 | @target=$(FIPS_DSSVS); $(FIPS_BUILD_CMD) | ||
360 | |||
361 | $(FIPS_RNGVS)$(EXE_EXT): $(FIPS_RNGVS).o $(DLIBCRYPTO) | ||
362 | @target=$(FIPS_RNGVS); $(FIPS_BUILD_CMD) | ||
363 | |||
364 | $(FIPS_TEST_SUITE)$(EXE_EXT): $(FIPS_TEST_SUITE).o $(DLIBCRYPTO) | ||
365 | @target=$(FIPS_TEST_SUITE); $(FIPS_BUILD_CMD) | ||
366 | 321 | ||
367 | $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO) | 322 | $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO) |
368 | @target=$(RSATEST); $(BUILD_CMD) | 323 | @target=$(RSATEST); $(BUILD_CMD) |
@@ -388,8 +343,11 @@ $(SHATEST)$(EXE_EXT): $(SHATEST).o $(DLIBCRYPTO) | |||
388 | $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO) | 343 | $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO) |
389 | @target=$(SHA1TEST); $(BUILD_CMD) | 344 | @target=$(SHA1TEST); $(BUILD_CMD) |
390 | 345 | ||
391 | $(FIPS_SHATEST)$(EXE_EXT): $(FIPS_SHATEST).o $(DLIBCRYPTO) | 346 | $(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO) |
392 | @target=$(FIPS_SHATEST); $(FIPS_BUILD_CMD) | 347 | @target=$(SHA256TEST); $(BUILD_CMD) |
348 | |||
349 | $(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO) | ||
350 | @target=$(SHA512TEST); $(BUILD_CMD) | ||
393 | 351 | ||
394 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) | 352 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) |
395 | @target=$(RMDTEST); $(BUILD_CMD) | 353 | @target=$(RMDTEST); $(BUILD_CMD) |
@@ -424,29 +382,20 @@ $(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO) | |||
424 | $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO) | 382 | $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO) |
425 | @target=$(DESTEST); $(BUILD_CMD) | 383 | @target=$(DESTEST); $(BUILD_CMD) |
426 | 384 | ||
427 | $(FIPS_DESTEST)$(EXE_EXT): $(FIPS_DESTEST).o $(DLIBCRYPTO) | ||
428 | @target=$(FIPS_DESTEST); $(FIPS_BUILD_CMD) | ||
429 | |||
430 | $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO) | 385 | $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO) |
431 | @target=$(RANDTEST); $(BUILD_CMD) | 386 | @target=$(RANDTEST); $(BUILD_CMD) |
432 | 387 | ||
433 | $(FIPS_RANDTEST)$(EXE_EXT): $(FIPS_RANDTEST).o $(DLIBCRYPTO) | ||
434 | @target=$(FIPS_RANDTEST); $(FIPS_BUILD_CMD) | ||
435 | |||
436 | $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO) | 388 | $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO) |
437 | @target=$(DHTEST); $(BUILD_CMD) | 389 | @target=$(DHTEST); $(BUILD_CMD) |
438 | 390 | ||
439 | $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO) | 391 | $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO) |
440 | @target=$(DSATEST); $(BUILD_CMD) | 392 | @target=$(DSATEST); $(BUILD_CMD) |
441 | 393 | ||
442 | $(FIPS_DSATEST)$(EXE_EXT): $(FIPS_DSATEST).o $(DLIBCRYPTO) | ||
443 | @target=$(FIPS_DSATEST); $(FIPS_BUILD_CMD) | ||
444 | |||
445 | $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO) | 394 | $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO) |
446 | @target=$(METHTEST); $(BUILD_CMD) | 395 | @target=$(METHTEST); $(BUILD_CMD) |
447 | 396 | ||
448 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) | 397 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) |
449 | @target=$(SSLTEST); $(FIPS_BUILD_CMD) | 398 | @target=$(SSLTEST); $(BUILD_CMD) |
450 | 399 | ||
451 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) | 400 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) |
452 | @target=$(ENGINETEST); $(BUILD_CMD) | 401 | @target=$(ENGINETEST); $(BUILD_CMD) |
@@ -454,48 +403,53 @@ $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) | |||
454 | $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO) | 403 | $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO) |
455 | @target=$(EVPTEST); $(BUILD_CMD) | 404 | @target=$(EVPTEST); $(BUILD_CMD) |
456 | 405 | ||
406 | $(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO) | ||
407 | @target=$(ECDSATEST); $(BUILD_CMD) | ||
408 | |||
409 | $(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO) | ||
410 | @target=$(ECDHTEST); $(BUILD_CMD) | ||
411 | |||
412 | $(IGETEST)$(EXE_EXT): $(IGETEST).o $(DLIBCRYPTO) | ||
413 | @target=$(IGETEST); $(BUILD_CMD) | ||
414 | |||
457 | #$(AESTEST).o: $(AESTEST).c | 415 | #$(AESTEST).o: $(AESTEST).c |
458 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c | 416 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c |
459 | 417 | ||
460 | #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO) | 418 | #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO) |
461 | # @target=$(AESTEST); $(BUILD_CMD) | 419 | # if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \ |
420 | # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \ | ||
421 | # else \ | ||
422 | # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \ | ||
423 | # fi | ||
462 | 424 | ||
463 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) | 425 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) |
464 | @target=dummytest; $(BUILD_CMD) | 426 | @target=dummytest$; $(BUILD_CMD) |
465 | 427 | ||
466 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 428 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
467 | 429 | ||
468 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h | 430 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h |
469 | bftest.o: ../include/openssl/opensslconf.h bftest.c | 431 | bftest.o: ../include/openssl/opensslconf.h bftest.c |
470 | bntest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 432 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
471 | bntest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
472 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 433 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
473 | bntest.o: ../include/openssl/cast.h ../include/openssl/crypto.h | 434 | bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
474 | bntest.o: ../include/openssl/des.h ../include/openssl/des_old.h | 435 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
475 | bntest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 436 | bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
476 | bntest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 437 | bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
477 | bntest.o: ../include/openssl/evp.h ../include/openssl/idea.h | 438 | bntest.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
478 | bntest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 439 | bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
479 | bntest.o: ../include/openssl/md4.h ../include/openssl/md5.h | 440 | bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
480 | bntest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 441 | bntest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
481 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 442 | bntest.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
482 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 443 | bntest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
483 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 444 | bntest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
484 | bntest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 445 | bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bntest.c |
485 | bntest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
486 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
487 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
488 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
489 | bntest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
490 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | ||
491 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h | 446 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h |
492 | casttest.o: ../include/openssl/opensslconf.h casttest.c | 447 | casttest.o: ../include/openssl/opensslconf.h casttest.c |
493 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 448 | destest.o: ../include/openssl/des.h ../include/openssl/des_old.h |
494 | destest.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h | 449 | destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
495 | destest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 450 | destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
496 | destest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 451 | destest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
497 | destest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 452 | destest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h destest.c |
498 | destest.o: ../include/openssl/ui_compat.h destest.c | ||
499 | dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h | 453 | dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h |
500 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 454 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
501 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 455 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
@@ -511,47 +465,52 @@ dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
511 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 465 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
512 | dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 466 | dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
513 | dsatest.o: ../include/openssl/symhacks.h dsatest.c | 467 | dsatest.o: ../include/openssl/symhacks.h dsatest.c |
468 | ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
469 | ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
470 | ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
471 | ecdhtest.o: ../include/openssl/ecdh.h ../include/openssl/err.h | ||
472 | ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
473 | ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
474 | ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
475 | ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
476 | ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
477 | ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c | ||
478 | ecdsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
479 | ecdsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
480 | ecdsatest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
481 | ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | ||
482 | ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
483 | ecdsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
484 | ecdsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
485 | ecdsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
486 | ecdsatest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
487 | ecdsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
488 | ecdsatest.o: ecdsatest.c | ||
514 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 489 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
515 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 490 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
516 | ectest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
517 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | 491 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
518 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h | 492 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h |
519 | ectest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 493 | ectest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
494 | ectest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
520 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 495 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
521 | ectest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 496 | ectest.o: ../include/openssl/rand.h ../include/openssl/safestack.h |
522 | ectest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 497 | ectest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h ectest.c |
523 | ectest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h ectest.c | 498 | enginetest.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
524 | enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 499 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
525 | enginetest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
526 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
527 | enginetest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
528 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h | 500 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h |
529 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 501 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h |
530 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 502 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
531 | enginetest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
532 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 503 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
533 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 504 | enginetest.o: ../include/openssl/symhacks.h enginetest.c |
534 | enginetest.o: enginetest.c | 505 | evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
535 | evp_test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
536 | evp_test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
537 | evp_test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
538 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 506 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
539 | evp_test.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
540 | evp_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
541 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 507 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h |
542 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h | 508 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h |
543 | evp_test.o: ../include/openssl/idea.h ../include/openssl/lhash.h | 509 | evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
544 | evp_test.o: ../include/openssl/md2.h ../include/openssl/md4.h | 510 | evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
545 | evp_test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 511 | evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
546 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 512 | evp_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
547 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 513 | evp_test.o: ../include/openssl/symhacks.h evp_test.c |
548 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
549 | evp_test.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
550 | evp_test.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
551 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
552 | evp_test.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
553 | evp_test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
554 | evp_test.o: ../include/openssl/ui_compat.h evp_test.c | ||
555 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h | 514 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h |
556 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 515 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
557 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | 516 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h |
@@ -559,314 +518,65 @@ exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
559 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 518 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
560 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 519 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
561 | exptest.o: ../include/openssl/symhacks.h exptest.c | 520 | exptest.o: ../include/openssl/symhacks.h exptest.c |
562 | fips_aesavs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 521 | hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
563 | fips_aesavs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 522 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
564 | fips_aesavs.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
565 | fips_aesavs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
566 | fips_aesavs.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
567 | fips_aesavs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
568 | fips_aesavs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
569 | fips_aesavs.o: ../include/openssl/fips.h ../include/openssl/idea.h | ||
570 | fips_aesavs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
571 | fips_aesavs.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
572 | fips_aesavs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
573 | fips_aesavs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
574 | fips_aesavs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
575 | fips_aesavs.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
576 | fips_aesavs.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
577 | fips_aesavs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
578 | fips_aesavs.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
579 | fips_aesavs.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
580 | fips_aesavs.o: ../include/openssl/ui_compat.h fips_aesavs.c | ||
581 | fips_desmovs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
582 | fips_desmovs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
583 | fips_desmovs.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
584 | fips_desmovs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
585 | fips_desmovs.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
586 | fips_desmovs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
587 | fips_desmovs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
588 | fips_desmovs.o: ../include/openssl/fips.h ../include/openssl/idea.h | ||
589 | fips_desmovs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
590 | fips_desmovs.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
591 | fips_desmovs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
592 | fips_desmovs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
593 | fips_desmovs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
594 | fips_desmovs.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
595 | fips_desmovs.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
596 | fips_desmovs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
597 | fips_desmovs.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
598 | fips_desmovs.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
599 | fips_desmovs.o: ../include/openssl/ui_compat.h fips_desmovs.c | ||
600 | fips_dsatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
601 | fips_dsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
602 | fips_dsatest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
603 | fips_dsatest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
604 | fips_dsatest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
605 | fips_dsatest.o: ../include/openssl/err.h ../include/openssl/fips.h | ||
606 | fips_dsatest.o: ../include/openssl/fips_rand.h ../include/openssl/lhash.h | ||
607 | fips_dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
608 | fips_dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
609 | fips_dsatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
610 | fips_dsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
611 | fips_dsatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
612 | fips_dsatest.o: fips_dsatest.c | ||
613 | fips_dssvs.o: ../include/openssl/opensslconf.h fips_dssvs.c | ||
614 | fips_hmactest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
615 | fips_hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
616 | fips_hmactest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
617 | fips_hmactest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
618 | fips_hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
619 | fips_hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
620 | fips_hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
621 | fips_hmactest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
622 | fips_hmactest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
623 | fips_hmactest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
624 | fips_hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
625 | fips_hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
626 | fips_hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
627 | fips_hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
628 | fips_hmactest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
629 | fips_hmactest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
630 | fips_hmactest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
631 | fips_hmactest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
632 | fips_hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
633 | fips_hmactest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
634 | fips_hmactest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
635 | fips_hmactest.o: ../include/openssl/x509v3.h fips_hmactest.c | ||
636 | fips_randtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h | ||
637 | fips_randtest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
638 | fips_randtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
639 | fips_randtest.o: ../include/openssl/fips_rand.h ../include/openssl/lhash.h | ||
640 | fips_randtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
641 | fips_randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
642 | fips_randtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
643 | fips_randtest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
644 | fips_randtest.o: ../include/openssl/ui_compat.h fips_randtest.c | ||
645 | fips_rngvs.o: ../include/openssl/opensslconf.h fips_rngvs.c | ||
646 | fips_rsagtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
647 | fips_rsagtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
648 | fips_rsagtest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
649 | fips_rsagtest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
650 | fips_rsagtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
651 | fips_rsagtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
652 | fips_rsagtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
653 | fips_rsagtest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
654 | fips_rsagtest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
655 | fips_rsagtest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
656 | fips_rsagtest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
657 | fips_rsagtest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
658 | fips_rsagtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
659 | fips_rsagtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
660 | fips_rsagtest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
661 | fips_rsagtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
662 | fips_rsagtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
663 | fips_rsagtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
664 | fips_rsagtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
665 | fips_rsagtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
666 | fips_rsagtest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
667 | fips_rsagtest.o: ../include/openssl/x509v3.h fips_rsagtest.c | ||
668 | fips_rsastest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
669 | fips_rsastest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
670 | fips_rsastest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
671 | fips_rsastest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
672 | fips_rsastest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
673 | fips_rsastest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
674 | fips_rsastest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
675 | fips_rsastest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
676 | fips_rsastest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
677 | fips_rsastest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
678 | fips_rsastest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
679 | fips_rsastest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
680 | fips_rsastest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
681 | fips_rsastest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
682 | fips_rsastest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
683 | fips_rsastest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
684 | fips_rsastest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
685 | fips_rsastest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
686 | fips_rsastest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
687 | fips_rsastest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
688 | fips_rsastest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
689 | fips_rsastest.o: ../include/openssl/x509v3.h fips_rsastest.c | ||
690 | fips_rsavtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
691 | fips_rsavtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
692 | fips_rsavtest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
693 | fips_rsavtest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
694 | fips_rsavtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
695 | fips_rsavtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
696 | fips_rsavtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
697 | fips_rsavtest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
698 | fips_rsavtest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
699 | fips_rsavtest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
700 | fips_rsavtest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
701 | fips_rsavtest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
702 | fips_rsavtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
703 | fips_rsavtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
704 | fips_rsavtest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
705 | fips_rsavtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
706 | fips_rsavtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
707 | fips_rsavtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
708 | fips_rsavtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
709 | fips_rsavtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
710 | fips_rsavtest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
711 | fips_rsavtest.o: ../include/openssl/x509v3.h fips_rsavtest.c | ||
712 | fips_shatest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
713 | fips_shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
714 | fips_shatest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
715 | fips_shatest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
716 | fips_shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
717 | fips_shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
718 | fips_shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
719 | fips_shatest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
720 | fips_shatest.o: ../include/openssl/idea.h ../include/openssl/lhash.h | ||
721 | fips_shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
722 | fips_shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
723 | fips_shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
724 | fips_shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
725 | fips_shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
726 | fips_shatest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
727 | fips_shatest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
728 | fips_shatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
729 | fips_shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
730 | fips_shatest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
731 | fips_shatest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
732 | fips_shatest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | ||
733 | fips_shatest.o: fips_shatest.c | ||
734 | fips_test_suite.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
735 | fips_test_suite.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
736 | fips_test_suite.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
737 | fips_test_suite.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
738 | fips_test_suite.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
739 | fips_test_suite.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
740 | fips_test_suite.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
741 | fips_test_suite.o: ../include/openssl/fips.h ../include/openssl/fips_sha.h | ||
742 | fips_test_suite.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
743 | fips_test_suite.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
744 | fips_test_suite.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
745 | fips_test_suite.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
746 | fips_test_suite.o: ../include/openssl/objects.h | ||
747 | fips_test_suite.o: ../include/openssl/opensslconf.h | ||
748 | fips_test_suite.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
749 | fips_test_suite.o: ../include/openssl/rand.h ../include/openssl/rc2.h | ||
750 | fips_test_suite.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
751 | fips_test_suite.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
752 | fips_test_suite.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
753 | fips_test_suite.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
754 | fips_test_suite.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
755 | fips_test_suite.o: fips_test_suite.c | ||
756 | hmactest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
757 | hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
758 | hmactest.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
759 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
760 | hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
761 | hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
762 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h | 523 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
763 | hmactest.o: ../include/openssl/idea.h ../include/openssl/md2.h | 524 | hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h |
764 | hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
765 | hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
766 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 525 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
767 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 526 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
768 | hmactest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 527 | hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
769 | hmactest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 528 | hmactest.o: ../include/openssl/symhacks.h hmactest.c |
770 | hmactest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
771 | hmactest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
772 | hmactest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
773 | hmactest.o: ../include/openssl/ui_compat.h hmactest.c | ||
774 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h | 529 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h |
775 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c | 530 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c |
776 | md2test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 531 | igetest.o: ../include/openssl/aes.h ../include/openssl/e_os2.h |
777 | md2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 532 | igetest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h |
778 | md2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | 533 | igetest.o: ../include/openssl/rand.h igetest.c |
779 | md2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | 534 | md2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
780 | md2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 535 | md2test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
781 | md2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 536 | md2test.o: ../include/openssl/evp.h ../include/openssl/md2.h |
782 | md2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
783 | md2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
784 | md2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
785 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 537 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
786 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 538 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
787 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 539 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
788 | md2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 540 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md2test.c |
789 | md2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 541 | md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
790 | md2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 542 | md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
791 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 543 | md4test.o: ../include/openssl/evp.h ../include/openssl/md4.h |
792 | md2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md2test.c | ||
793 | md4test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
794 | md4test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
795 | md4test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
796 | md4test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
797 | md4test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
798 | md4test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
799 | md4test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
800 | md4test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
801 | md4test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
802 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 544 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
803 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 545 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
804 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 546 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
805 | md4test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 547 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md4test.c |
806 | md4test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 548 | md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
807 | md4test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 549 | md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
808 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 550 | md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h |
809 | md4test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md4test.c | ||
810 | md5test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
811 | md5test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
812 | md5test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
813 | md5test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
814 | md5test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
815 | md5test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
816 | md5test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
817 | md5test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
818 | md5test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
819 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 551 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
820 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 552 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
821 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 553 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
822 | md5test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 554 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c |
823 | md5test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 555 | mdc2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
824 | md5test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 556 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
825 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 557 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
826 | md5test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md5test.c | 558 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
827 | mdc2test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 559 | mdc2test.o: ../include/openssl/symhacks.h mdc2test.c |
828 | mdc2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
829 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
830 | mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
831 | mdc2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
832 | mdc2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
833 | mdc2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
834 | mdc2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
835 | mdc2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
836 | mdc2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
837 | mdc2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
838 | mdc2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
839 | mdc2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
840 | mdc2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
841 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
842 | mdc2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
843 | mdc2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h mdc2test.c | ||
844 | randtest.o: ../e_os.h ../include/openssl/e_os2.h | 560 | randtest.o: ../e_os.h ../include/openssl/e_os2.h |
845 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h | 561 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h |
846 | randtest.o: ../include/openssl/rand.h randtest.c | 562 | randtest.o: ../include/openssl/rand.h randtest.c |
847 | rc2test.o: ../e_os.h ../include/openssl/e_os2.h | 563 | rc2test.o: ../e_os.h ../include/openssl/e_os2.h |
848 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c | 564 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c |
849 | rc4test.o: ../e_os.h ../include/openssl/e_os2.h | 565 | rc4test.o: ../e_os.h ../include/openssl/e_os2.h |
850 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c | 566 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h |
851 | rc5test.o: ../e_os.h ../include/openssl/e_os2.h | 567 | rc4test.o: ../include/openssl/sha.h rc4test.c |
852 | rc5test.o: ../include/openssl/opensslconf.h ../include/openssl/rc5.h rc5test.c | 568 | rc5test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
853 | rmdtest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 569 | rc5test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
854 | rmdtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 570 | rc5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
855 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/cast.h | 571 | rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
856 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 572 | rc5test.o: ../include/openssl/symhacks.h rc5test.c |
857 | rmdtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 573 | rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
858 | rmdtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 574 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
859 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/idea.h | 575 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
860 | rmdtest.o: ../include/openssl/md2.h ../include/openssl/md4.h | 576 | rmdtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
861 | rmdtest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 577 | rmdtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
862 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 578 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/safestack.h |
863 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 579 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h rmdtest.c |
864 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
865 | rmdtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
866 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
867 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
868 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
869 | rmdtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h rmdtest.c | ||
870 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 580 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
871 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 581 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
872 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 582 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
@@ -875,64 +585,39 @@ rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | |||
875 | rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 585 | rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
876 | rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 586 | rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
877 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c | 587 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c |
878 | sha1test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 588 | sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
879 | sha1test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 589 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
880 | sha1test.o: ../include/openssl/bn.h ../include/openssl/cast.h | 590 | sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
881 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/des.h | 591 | sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
882 | sha1test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 592 | sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
883 | sha1test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
884 | sha1test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
885 | sha1test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
886 | sha1test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
887 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
888 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
889 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
890 | sha1test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
891 | sha1test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
892 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 593 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
893 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 594 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c |
894 | sha1test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h sha1test.c | 595 | shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
895 | shatest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 596 | shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
896 | shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 597 | shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
897 | shatest.o: ../include/openssl/bn.h ../include/openssl/cast.h | 598 | shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
898 | shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 599 | shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
899 | shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
900 | shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
901 | shatest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
902 | shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
903 | shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
904 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
905 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
906 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
907 | shatest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
908 | shatest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
909 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 600 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
910 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 601 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c |
911 | shatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h shatest.c | 602 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
912 | ssltest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
913 | ssltest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
914 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 603 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
915 | ssltest.o: ../include/openssl/cast.h ../include/openssl/comp.h | 604 | ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h |
916 | ssltest.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 605 | ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
917 | ssltest.o: ../include/openssl/des.h ../include/openssl/des_old.h | 606 | ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
918 | ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 607 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
919 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 608 | ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
920 | ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h | 609 | ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h |
921 | ssltest.o: ../include/openssl/fips.h ../include/openssl/idea.h | 610 | ssltest.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
922 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 611 | ssltest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
923 | ssltest.o: ../include/openssl/md2.h ../include/openssl/md4.h | 612 | ssltest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
924 | ssltest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 613 | ssltest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
925 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 614 | ssltest.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
926 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 615 | ssltest.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
927 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 616 | ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h |
928 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 617 | ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
929 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 618 | ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
930 | ssltest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 619 | ssltest.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
931 | ssltest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 620 | ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
932 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 621 | ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
933 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 622 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
934 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 623 | ssltest.o: ../include/openssl/x509v3.h ssltest.c |
935 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
936 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
937 | ssltest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
938 | ssltest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssltest.c | ||
diff --git a/src/lib/libssl/src/test/evptests.txt b/src/lib/libssl/src/test/evptests.txt index dfe91a5bc0..beb12144b6 100644 --- a/src/lib/libssl/src/test/evptests.txt +++ b/src/lib/libssl/src/test/evptests.txt | |||
@@ -92,102 +92,7 @@ AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000 | |||
92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D | 92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D |
93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 | 93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 |
94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B | 94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B |
95 | 95 | # We don't support CFB{1,8}-AESxxx.{En,De}crypt | |
96 | # CFB1-AES128.Encrypt | ||
97 | |||
98 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:1 | ||
99 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:1 | ||
100 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:1 | ||
101 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:1 | ||
102 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:1 | ||
103 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:1 | ||
104 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:1 | ||
105 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:1 | ||
106 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:1 | ||
107 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:1 | ||
108 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:1 | ||
109 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:1 | ||
110 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:1 | ||
111 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:1 | ||
112 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:1 | ||
113 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:1 | ||
114 | # all of the above packed into one... | ||
115 | # in: 0110 1011 1100 0001 = 6bc1 | ||
116 | # out: 0110 1000 1011 0011 = 68b3 | ||
117 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:1 | ||
118 | |||
119 | # CFB1-AES128.Decrypt | ||
120 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:0 | ||
121 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:0 | ||
122 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:0 | ||
123 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:0 | ||
124 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:0 | ||
125 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:0 | ||
126 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:0 | ||
127 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:0 | ||
128 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:0 | ||
129 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:0 | ||
130 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:0 | ||
131 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:0 | ||
132 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:0 | ||
133 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:0 | ||
134 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:0 | ||
135 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:0 | ||
136 | # all of the above packed into one... | ||
137 | # in: 0110 1000 1011 0011 = 68b3 | ||
138 | # out: 0110 1011 1100 0001 = 6bc1 | ||
139 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:0 | ||
140 | |||
141 | # TODO: CFB1-AES192 and 256 | ||
142 | |||
143 | # CFB8-AES128.Encrypt | ||
144 | |||
145 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:1 | ||
146 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:1 | ||
147 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:1 | ||
148 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:1 | ||
149 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:1 | ||
150 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:1 | ||
151 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:1 | ||
152 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:1 | ||
153 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:1 | ||
154 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:1 | ||
155 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:1 | ||
156 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:1 | ||
157 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:1 | ||
158 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:1 | ||
159 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:1 | ||
160 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:1 | ||
161 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:1 | ||
162 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:1 | ||
163 | # all of the above packed into one | ||
164 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:1 | ||
165 | |||
166 | # CFB8-AES128.Decrypt | ||
167 | |||
168 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:0 | ||
169 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:0 | ||
170 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:0 | ||
171 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:0 | ||
172 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:0 | ||
173 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:0 | ||
174 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:0 | ||
175 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:0 | ||
176 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:0 | ||
177 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:0 | ||
178 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:0 | ||
179 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:0 | ||
180 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:0 | ||
181 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:0 | ||
182 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:0 | ||
183 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:0 | ||
184 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:0 | ||
185 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:0 | ||
186 | # all of the above packed into one | ||
187 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:0 | ||
188 | |||
189 | # TODO: 192 and 256 bit keys | ||
190 | |||
191 | # For all CFB128 encrypts and decrypts, the transformed sequence is | 96 | # For all CFB128 encrypts and decrypts, the transformed sequence is |
192 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec | 97 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec |
193 | # CFB128-AES128.Encrypt | 98 | # CFB128-AES128.Encrypt |
@@ -269,16 +174,6 @@ DESX-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363 | |||
269 | # DES EDE3 CBC tests (from destest) | 174 | # DES EDE3 CBC tests (from destest) |
270 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 | 175 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 |
271 | 176 | ||
272 | # DES CFB1 from FIPS 81 | ||
273 | # plaintext: 0100 1110 0110 1111 0111 0111 = 4e6f77 | ||
274 | # ciphertext: 1100 1101 0001 1110 1100 1001 = cd1ec9 | ||
275 | |||
276 | DES-CFB1*8:0123456789abcdef:1234567890abcdef:4e6f77:cd1ec9 | ||
277 | |||
278 | # DES CFB8 from FIPS 81 | ||
279 | |||
280 | DES-CFB8:0123456789abcdef:1234567890abcdef:4e6f7720697320746865:f31fda07011462ee187f | ||
281 | |||
282 | # RC4 tests (from rc4test) | 177 | # RC4 tests (from rc4test) |
283 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 | 178 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 |
284 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 | 179 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 |
@@ -286,3 +181,141 @@ RC4:00000000000000000000000000000000::0000000000000000:de188941a3375d3a | |||
286 | RC4:ef012345ef012345ef012345ef012345::0000000000000000000000000000000000000000:d6a141a7ec3c38dfbd615a1162e1c7ba36b67858 | 181 | RC4:ef012345ef012345ef012345ef012345::0000000000000000000000000000000000000000:d6a141a7ec3c38dfbd615a1162e1c7ba36b67858 |
287 | RC4:0123456789abcdef0123456789abcdef::123456789ABCDEF0123456789ABCDEF0123456789ABCDEF012345678:66a0949f8af7d6891f7f832ba833c00c892ebe30143ce28740011ecf | 182 | RC4:0123456789abcdef0123456789abcdef::123456789ABCDEF0123456789ABCDEF0123456789ABCDEF012345678:66a0949f8af7d6891f7f832ba833c00c892ebe30143ce28740011ecf |
288 | RC4:ef012345ef012345ef012345ef012345::00000000000000000000:d6a141a7ec3c38dfbd61 | 183 | RC4:ef012345ef012345ef012345ef012345::00000000000000000000:d6a141a7ec3c38dfbd61 |
184 | |||
185 | |||
186 | # Camellia tests from RFC3713 | ||
187 | # For all ECB encrypts and decrypts, the transformed sequence is | ||
188 | # CAMELLIA-bits-ECB:key::plaintext:ciphertext:encdec | ||
189 | CAMELLIA-128-ECB:0123456789abcdeffedcba9876543210::0123456789abcdeffedcba9876543210:67673138549669730857065648eabe43 | ||
190 | CAMELLIA-192-ECB:0123456789abcdeffedcba98765432100011223344556677::0123456789abcdeffedcba9876543210:b4993401b3e996f84ee5cee7d79b09b9 | ||
191 | CAMELLIA-256-ECB:0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff::0123456789abcdeffedcba9876543210:9acc237dff16d76c20ef7c919e3a7509 | ||
192 | |||
193 | # ECB-CAMELLIA128.Encrypt | ||
194 | CAMELLIA-128-ECB:000102030405060708090A0B0C0D0E0F::00112233445566778899AABBCCDDEEFF:77CF412067AF8270613529149919546F:1 | ||
195 | CAMELLIA-192-ECB:000102030405060708090A0B0C0D0E0F1011121314151617::00112233445566778899AABBCCDDEEFF:B22F3C36B72D31329EEE8ADDC2906C68:1 | ||
196 | CAMELLIA-256-ECB:000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F::00112233445566778899AABBCCDDEEFF:2EDF1F3418D53B88841FC8985FB1ECF2:1 | ||
197 | |||
198 | # ECB-CAMELLIA128.Encrypt and ECB-CAMELLIA128.Decrypt | ||
199 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::6BC1BEE22E409F96E93D7E117393172A:432FC5DCD628115B7C388D770B270C96 | ||
200 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::AE2D8A571E03AC9C9EB76FAC45AF8E51:0BE1F14023782A22E8384C5ABB7FAB2B | ||
201 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::30C81C46A35CE411E5FBC1191A0A52EF:A0A1ABCD1893AB6FE0FE5B65DF5F8636 | ||
202 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::F69F2445DF4F9B17AD2B417BE66C3710:E61925E0D5DFAA9BB29F815B3076E51A | ||
203 | |||
204 | # ECB-CAMELLIA192.Encrypt and ECB-CAMELLIA192.Decrypt | ||
205 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::6BC1BEE22E409F96E93D7E117393172A:CCCC6C4E138B45848514D48D0D3439D3 | ||
206 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::AE2D8A571E03AC9C9EB76FAC45AF8E51:5713C62C14B2EC0F8393B6AFD6F5785A | ||
207 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::30C81C46A35CE411E5FBC1191A0A52EF:B40ED2B60EB54D09D030CF511FEEF366 | ||
208 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::F69F2445DF4F9B17AD2B417BE66C3710:909DBD95799096748CB27357E73E1D26 | ||
209 | |||
210 | # ECB-CAMELLIA256.Encrypt and ECB-CAMELLIA256.Decrypt | ||
211 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::6BC1BEE22E409F96E93D7E117393172A:BEFD219B112FA00098919CD101C9CCFA | ||
212 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::AE2D8A571E03AC9C9EB76FAC45AF8E51:C91D3A8F1AEA08A9386CF4B66C0169EA | ||
213 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::30C81C46A35CE411E5FBC1191A0A52EF:A623D711DC5F25A51BB8A80D56397D28 | ||
214 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::F69F2445DF4F9B17AD2B417BE66C3710:7960109FB6DC42947FCFE59EA3C5EB6B | ||
215 | |||
216 | # For all CBC encrypts and decrypts, the transformed sequence is | ||
217 | # CAMELLIA-bits-CBC:key:IV/ciphertext':plaintext:ciphertext:encdec | ||
218 | # CBC-CAMELLIA128.Encrypt and CBC-CAMELLIA128.Decrypt | ||
219 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:1607CF494B36BBF00DAEB0B503C831AB | ||
220 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:1607CF494B36BBF00DAEB0B503C831AB:AE2D8A571E03AC9C9EB76FAC45AF8E51:A2F2CF671629EF7840C5A5DFB5074887 | ||
221 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:A2F2CF671629EF7840C5A5DFB5074887:30C81C46A35CE411E5FBC1191A0A52EF:0F06165008CF8B8B5A63586362543E54 | ||
222 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:36A84CDAFD5F9A85ADA0F0A993D6D577:F69F2445DF4F9B17AD2B417BE66C3710:74C64268CDB8B8FAF5B34E8AF3732980 | ||
223 | |||
224 | # CBC-CAMELLIA192.Encrypt and CBC-CAMELLIA192.Decrypt | ||
225 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:2A4830AB5AC4A1A2405955FD2195CF93 | ||
226 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:2A4830AB5AC4A1A2405955FD2195CF93:AE2D8A571E03AC9C9EB76FAC45AF8E51:5D5A869BD14CE54264F892A6DD2EC3D5 | ||
227 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:5D5A869BD14CE54264F892A6DD2EC3D5:30C81C46A35CE411E5FBC1191A0A52EF:37D359C3349836D884E310ADDF68C449 | ||
228 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:37D359C3349836D884E310ADDF68C449:F69F2445DF4F9B17AD2B417BE66C3710:01FAAA930B4AB9916E9668E1428C6B08 | ||
229 | |||
230 | # CBC-CAMELLIA256.Encrypt and CBC-CAMELLIA256.Decrypt | ||
231 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:E6CFA35FC02B134A4D2C0B6737AC3EDA | ||
232 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E6CFA35FC02B134A4D2C0B6737AC3EDA:AE2D8A571E03AC9C9EB76FAC45AF8E51:36CBEB73BD504B4070B1B7DE2B21EB50 | ||
233 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:36CBEB73BD504B4070B1B7DE2B21EB50:30C81C46A35CE411E5FBC1191A0A52EF:E31A6055297D96CA3330CDF1B1860A83 | ||
234 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E31A6055297D96CA3330CDF1B1860A83:F69F2445DF4F9B17AD2B417BE66C3710:5D563F6D1CCCF236051C0C5C1C58F28F | ||
235 | |||
236 | # We don't support CFB{1,8}-CAMELLIAxxx.{En,De}crypt | ||
237 | # For all CFB128 encrypts and decrypts, the transformed sequence is | ||
238 | # CAMELLIA-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec | ||
239 | # CFB128-CAMELLIA128.Encrypt | ||
240 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:1 | ||
241 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:14F7646187817EB586599146B82BD719:AE2D8A571E03AC9C9EB76FAC45AF8E51:A53D28BB82DF741103EA4F921A44880B:1 | ||
242 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:A53D28BB82DF741103EA4F921A44880B:30C81C46A35CE411E5FBC1191A0A52EF:9C2157A664626D1DEF9EA420FDE69B96:1 | ||
243 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:9C2157A664626D1DEF9EA420FDE69B96:F69F2445DF4F9B17AD2B417BE66C3710:742A25F0542340C7BAEF24CA8482BB09:1 | ||
244 | |||
245 | # CFB128-CAMELLIA128.Decrypt | ||
246 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:0 | ||
247 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:14F7646187817EB586599146B82BD719:AE2D8A571E03AC9C9EB76FAC45AF8E51:A53D28BB82DF741103EA4F921A44880B:0 | ||
248 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:A53D28BB82DF741103EA4F921A44880B:30C81C46A35CE411E5FBC1191A0A52EF:9C2157A664626D1DEF9EA420FDE69B96:0 | ||
249 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:9C2157A664626D1DEF9EA420FDE69B96:F69F2445DF4F9B17AD2B417BE66C3710:742A25F0542340C7BAEF24CA8482BB09:0 | ||
250 | |||
251 | # CFB128-CAMELLIA192.Encrypt | ||
252 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:1 | ||
253 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:C832BB9780677DAA82D9B6860DCD565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:86F8491627906D780C7A6D46EA331F98:1 | ||
254 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:86F8491627906D780C7A6D46EA331F98:30C81C46A35CE411E5FBC1191A0A52EF:69511CCE594CF710CB98BB63D7221F01:1 | ||
255 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:69511CCE594CF710CB98BB63D7221F01:F69F2445DF4F9B17AD2B417BE66C3710:D5B5378A3ABED55803F25565D8907B84:1 | ||
256 | |||
257 | # CFB128-CAMELLIA192.Decrypt | ||
258 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:0 | ||
259 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:C832BB9780677DAA82D9B6860DCD565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:86F8491627906D780C7A6D46EA331F98:0 | ||
260 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:86F8491627906D780C7A6D46EA331F98:30C81C46A35CE411E5FBC1191A0A52EF:69511CCE594CF710CB98BB63D7221F01:0 | ||
261 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:69511CCE594CF710CB98BB63D7221F01:F69F2445DF4F9B17AD2B417BE66C3710:D5B5378A3ABED55803F25565D8907B84:0 | ||
262 | |||
263 | # CFB128-CAMELLIA256.Encrypt | ||
264 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:1 | ||
265 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:CF6107BB0CEA7D7FB1BD31F5E7B06C93:AE2D8A571E03AC9C9EB76FAC45AF8E51:89BEDB4CCDD864EA11BA4CBE849B5E2B:1 | ||
266 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:89BEDB4CCDD864EA11BA4CBE849B5E2B:30C81C46A35CE411E5FBC1191A0A52EF:555FC3F34BDD2D54C62D9E3BF338C1C4:1 | ||
267 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:555FC3F34BDD2D54C62D9E3BF338C1C4:F69F2445DF4F9B17AD2B417BE66C3710:5953ADCE14DB8C7F39F1BD39F359BFFA:1 | ||
268 | |||
269 | # CFB128-CAMELLIA256.Decrypt | ||
270 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:0 | ||
271 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:CF6107BB0CEA7D7FB1BD31F5E7B06C93:AE2D8A571E03AC9C9EB76FAC45AF8E51:89BEDB4CCDD864EA11BA4CBE849B5E2B:0 | ||
272 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:89BEDB4CCDD864EA11BA4CBE849B5E2B:30C81C46A35CE411E5FBC1191A0A52EF:555FC3F34BDD2D54C62D9E3BF338C1C4:0 | ||
273 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:555FC3F34BDD2D54C62D9E3BF338C1C4:F69F2445DF4F9B17AD2B417BE66C3710:5953ADCE14DB8C7F39F1BD39F359BFFA:0 | ||
274 | |||
275 | # For all OFB encrypts and decrypts, the transformed sequence is | ||
276 | # CAMELLIA-bits-OFB:key:IV/output':plaintext:ciphertext:encdec | ||
277 | # OFB-CAMELLIA128.Encrypt | ||
278 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:1 | ||
279 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:50FE67CC996D32B6DA0937E99BAFEC60:AE2D8A571E03AC9C9EB76FAC45AF8E51:25623DB569CA51E01482649977E28D84:1 | ||
280 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:D9A4DADA0892239F6B8B3D7680E15674:30C81C46A35CE411E5FBC1191A0A52EF:C776634A60729DC657D12B9FCA801E98:1 | ||
281 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:A78819583F0308E7A6BF36B1386ABF23:F69F2445DF4F9B17AD2B417BE66C3710:D776379BE0E50825E681DA1A4C980E8E:1 | ||
282 | |||
283 | # OFB-CAMELLIA128.Decrypt | ||
284 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:0 | ||
285 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:50FE67CC996D32B6DA0937E99BAFEC60:AE2D8A571E03AC9C9EB76FAC45AF8E51:25623DB569CA51E01482649977E28D84:0 | ||
286 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:D9A4DADA0892239F6B8B3D7680E15674:30C81C46A35CE411E5FBC1191A0A52EF:C776634A60729DC657D12B9FCA801E98:0 | ||
287 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:A78819583F0308E7A6BF36B1386ABF23:F69F2445DF4F9B17AD2B417BE66C3710:D776379BE0E50825E681DA1A4C980E8E:0 | ||
288 | |||
289 | # OFB-CAMELLIA192.Encrypt | ||
290 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:1 | ||
291 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:A609B38DF3B1133DDDFF2718BA09565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:8ECEB7D0350D72C7F78562AEBDF99339:1 | ||
292 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:52EF01DA52602FE0975F78AC84BF8A50:30C81C46A35CE411E5FBC1191A0A52EF:BDD62DBBB9700846C53B507F544696F0:1 | ||
293 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:BD5286AC63AABD7EB067AC54B553F71D:F69F2445DF4F9B17AD2B417BE66C3710:E28014E046B802F385C4C2E13EAD4A72:1 | ||
294 | |||
295 | # OFB-CAMELLIA192.Decrypt | ||
296 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:0 | ||
297 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:A609B38DF3B1133DDDFF2718BA09565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:8ECEB7D0350D72C7F78562AEBDF99339:0 | ||
298 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:52EF01DA52602FE0975F78AC84BF8A50:30C81C46A35CE411E5FBC1191A0A52EF:BDD62DBBB9700846C53B507F544696F0:0 | ||
299 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:BD5286AC63AABD7EB067AC54B553F71D:F69F2445DF4F9B17AD2B417BE66C3710:E28014E046B802F385C4C2E13EAD4A72:0 | ||
300 | |||
301 | # OFB-CAMELLIA256.Encrypt | ||
302 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:1 | ||
303 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:B7BF3A5DF43989DD97F0FA97EBCE2F4A:AE2D8A571E03AC9C9EB76FAC45AF8E51:127AD97E8E3994E4820027D7BA109368:1 | ||
304 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E1C656305ED1A7A6563805746FE03EDC:30C81C46A35CE411E5FBC1191A0A52EF:6BFF6265A6A6B7A535BC65A80B17214E:1 | ||
305 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:41635BE625B48AFC1666DD42A09D96E7:F69F2445DF4F9B17AD2B417BE66C3710:0A4A0404E26AA78A27CB271E8BF3CF20:1 | ||
306 | |||
307 | # OFB-CAMELLIA256.Decrypt | ||
308 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:0 | ||
309 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:B7BF3A5DF43989DD97F0FA97EBCE2F4A:AE2D8A571E03AC9C9EB76FAC45AF8E51:127AD97E8E3994E4820027D7BA109368:0 | ||
310 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E1C656305ED1A7A6563805746FE03EDC:30C81C46A35CE411E5FBC1191A0A52EF:6BFF6265A6A6B7A535BC65A80B17214E:0 | ||
311 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:41635BE625B48AFC1666DD42A09D96E7:F69F2445DF4F9B17AD2B417BE66C3710:0A4A0404E26AA78A27CB271E8BF3CF20:0 | ||
312 | |||
313 | # SEED test vectors from RFC4269 | ||
314 | SEED-ECB:00000000000000000000000000000000::000102030405060708090A0B0C0D0E0F:5EBAC6E0054E166819AFF1CC6D346CDB:0 | ||
315 | SEED-ECB:000102030405060708090A0B0C0D0E0F::00000000000000000000000000000000:C11F22F20140505084483597E4370F43:0 | ||
316 | SEED-ECB:4706480851E61BE85D74BFB3FD956185::83A2F8A288641FB9A4E9A5CC2F131C7D:EE54D13EBCAE706D226BC3142CD40D4A:0 | ||
317 | SEED-ECB:28DBC3BC49FFD87DCFA509B11D422BE7::B41E6BE2EBA84A148E2EED84593C5EC7:9B9B7BFCD1813CB95D0B3618F40F5122:0 | ||
318 | SEED-ECB:00000000000000000000000000000000::000102030405060708090A0B0C0D0E0F:5EBAC6E0054E166819AFF1CC6D346CDB:1 | ||
319 | SEED-ECB:000102030405060708090A0B0C0D0E0F::00000000000000000000000000000000:C11F22F20140505084483597E4370F43:1 | ||
320 | SEED-ECB:4706480851E61BE85D74BFB3FD956185::83A2F8A288641FB9A4E9A5CC2F131C7D:EE54D13EBCAE706D226BC3142CD40D4A:1 | ||
321 | SEED-ECB:28DBC3BC49FFD87DCFA509B11D422BE7::B41E6BE2EBA84A148E2EED84593C5EC7:9B9B7BFCD1813CB95D0B3618F40F5122:1 | ||
diff --git a/src/lib/libssl/src/tools/Makefile b/src/lib/libssl/src/tools/Makefile index d675b5792c..4ca835c4af 100644 --- a/src/lib/libssl/src/tools/Makefile +++ b/src/lib/libssl/src/tools/Makefile | |||
@@ -7,15 +7,11 @@ TOP= .. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I$(TOP) -I../../include | 8 | INCLUDES= -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 | 11 | ||
17 | CFLAGS= $(INCLUDES) $(CFLAG) | 12 | CFLAGS= $(INCLUDES) $(CFLAG) |
18 | 13 | ||
14 | GENERAL=Makefile | ||
19 | TEST= | 15 | TEST= |
20 | APPS= c_rehash | 16 | APPS= c_rehash |
21 | MISC_APPS= c_hash c_info c_issuer c_name | 17 | MISC_APPS= c_hash c_info c_issuer c_name |
@@ -23,6 +19,7 @@ MISC_APPS= c_hash c_info c_issuer c_name | |||
23 | all: | 19 | all: |
24 | 20 | ||
25 | install: | 21 | install: |
22 | @[ -n "$(INSTALLTOP)" ] # should be set by top Makefile... | ||
26 | @for i in $(APPS) ; \ | 23 | @for i in $(APPS) ; \ |
27 | do \ | 24 | do \ |
28 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ | 25 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$i.new; \ |
diff --git a/src/lib/libssl/src/util/opensslwrap.sh b/src/lib/libssl/src/util/opensslwrap.sh index 91d29e2b87..b27cbb897f 100755 --- a/src/lib/libssl/src/util/opensslwrap.sh +++ b/src/lib/libssl/src/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/libssl/src/util/shlib_wrap.sh b/src/lib/libssl/src/util/shlib_wrap.sh index dc5f5b1ce4..a2f62d696f 100755 --- a/src/lib/libssl/src/util/shlib_wrap.sh +++ b/src/lib/libssl/src/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/libssl/test/Makefile b/src/lib/libssl/test/Makefile index 189d14ed49..62f9b86052 100644 --- a/src/lib/libssl/test/Makefile +++ b/src/lib/libssl/test/Makefile | |||
@@ -7,11 +7,6 @@ TOP= .. | |||
7 | CC= cc | 7 | CC= cc |
8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
9 | CFLAG= -g | 9 | CFLAG= -g |
10 | INSTALL_PREFIX= | ||
11 | OPENSSLDIR= /usr/local/ssl | ||
12 | INSTALLTOP= /usr/local/ssl | ||
13 | MAKEFILE= Makefile | ||
14 | MAKEDEPPROG= makedepend | ||
15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | 10 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) |
16 | PERL= perl | 11 | PERL= perl |
17 | # KRB5 stuff | 12 | # KRB5 stuff |
@@ -35,11 +30,14 @@ LIBSSL= -L.. -lssl | |||
35 | 30 | ||
36 | BNTEST= bntest | 31 | BNTEST= bntest |
37 | ECTEST= ectest | 32 | ECTEST= ectest |
33 | ECDSATEST= ecdsatest | ||
34 | ECDHTEST= ecdhtest | ||
38 | EXPTEST= exptest | 35 | EXPTEST= exptest |
39 | IDEATEST= ideatest | 36 | IDEATEST= ideatest |
40 | SHATEST= shatest | 37 | SHATEST= shatest |
41 | SHA1TEST= sha1test | 38 | SHA1TEST= sha1test |
42 | FIPS_SHATEST= fips_shatest | 39 | SHA256TEST= sha256t |
40 | SHA512TEST= sha512t | ||
43 | MDC2TEST= mdc2test | 41 | MDC2TEST= mdc2test |
44 | RMDTEST= rmdtest | 42 | RMDTEST= rmdtest |
45 | MD2TEST= md2test | 43 | MD2TEST= md2test |
@@ -52,59 +50,46 @@ RC5TEST= rc5test | |||
52 | BFTEST= bftest | 50 | BFTEST= bftest |
53 | CASTTEST= casttest | 51 | CASTTEST= casttest |
54 | DESTEST= destest | 52 | DESTEST= destest |
55 | FIPS_DESTEST= fips_desmovs | ||
56 | RANDTEST= randtest | 53 | RANDTEST= randtest |
57 | FIPS_RANDTEST= fips_randtest | ||
58 | DHTEST= dhtest | 54 | DHTEST= dhtest |
59 | DSATEST= dsatest | 55 | DSATEST= dsatest |
60 | FIPS_DSATEST= fips_dsatest | ||
61 | METHTEST= methtest | 56 | METHTEST= methtest |
62 | SSLTEST= ssltest | 57 | SSLTEST= ssltest |
63 | RSATEST= rsa_test | 58 | RSATEST= rsa_test |
64 | ENGINETEST= enginetest | 59 | ENGINETEST= enginetest |
65 | EVPTEST= evp_test | 60 | EVPTEST= evp_test |
66 | FIPS_AESTEST= fips_aesavs | 61 | IGETEST= igetest |
67 | FIPS_HMACTEST= fips_hmactest | ||
68 | FIPS_RSAVTEST= fips_rsavtest | ||
69 | FIPS_RSASTEST= fips_rsastest | ||
70 | FIPS_RSAGTEST= fips_rsagtest | ||
71 | FIPS_DSSVS= fips_dssvs | ||
72 | FIPS_RNGVS= fips_rngvs | ||
73 | FIPS_TEST_SUITE=fips_test_suite | ||
74 | 62 | ||
75 | TESTS= alltests | 63 | TESTS= alltests |
76 | 64 | ||
77 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \ | 65 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \ |
66 | $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \ | ||
78 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ | 67 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ |
79 | $(DESTEST)$(EXE_EXT) $(FIPS_DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(FIPS_SHATEST)$(EXE_EXT) $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ | 68 | $(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \ |
80 | $(RANDTEST)$(EXE_EXT) $(FIPS_RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ | 69 | $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ |
81 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(FIPS_DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ | 70 | $(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ |
82 | $(EVPTEST)$(EXE_EXT) $(FIPS_AESTEST)$(EXE_EXT) \ | 71 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ |
83 | $(FIPS_HMACTEST)$(EXE_EXT) $(FIPS_RSAVTEST)$(EXE_EXT) \ | 72 | $(EVPTEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) |
84 | $(FIPS_RSASTEST)$(EXE_EXT) $(FIPS_RSAGTEST)$(EXE_EXT) \ | ||
85 | $(FIPS_DSSVS)$(EXE_EXT) $(FIPS_RNGVS)$(EXE_EXT) \ | ||
86 | $(FIPS_TEST_SUITE)$(EXE_EXT) | ||
87 | 73 | ||
88 | # $(METHTEST)$(EXE_EXT) | 74 | # $(METHTEST)$(EXE_EXT) |
89 | 75 | ||
90 | OBJ= $(BNTEST).o $(ECTEST).o $(IDEATEST).o $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ | 76 | OBJ= $(BNTEST).o $(ECTEST).o $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \ |
77 | $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ | ||
91 | $(HMACTEST).o \ | 78 | $(HMACTEST).o \ |
92 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ | 79 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ |
93 | $(DESTEST).o $(FIPS_DESTEST).o $(SHATEST).o $(SHA1TEST).o $(FIPS_SHATEST).o $(MDC2TEST).o $(RMDTEST).o \ | 80 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \ |
94 | $(RANDTEST).o $(FIPS_RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ | 81 | $(MDC2TEST).o $(RMDTEST).o \ |
95 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(FIPS_DSATEST).o $(EXPTEST).o $(RSATEST).o \ | 82 | $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ |
96 | $(EVPTEST).o $(FIPS_AESTEST).o $(FIPS_HMACTEST).o $(FIPS_RSAVTEST).o \ | 83 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \ |
97 | $(FIPS_RSASTEST).o $(FIPS_RSAGTEST).o $(FIPS_DSSVS).o $(FIPS_RNGVS).o \ | 84 | $(EVPTEST).o $(IGETEST).o |
98 | $(FIPS_TEST_SUITE).o | 85 | SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \ |
99 | SRC= $(BNTEST).c $(ECTEST).c $(IDEATEST).c $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ | 86 | $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ |
100 | $(HMACTEST).c \ | 87 | $(HMACTEST).c \ |
101 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ | 88 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ |
102 | $(DESTEST).c $(FIPS_DESTEST).c $(SHATEST).c $(SHA1TEST).c $(FIPS_SHATEST).c $(MDC2TEST).c $(RMDTEST).c \ | 89 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ |
103 | $(RANDTEST).c $(FIPS_RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ | 90 | $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ |
104 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(FIPS_DSATEST).c $(EXPTEST).c $(RSATEST).c \ | 91 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \ |
105 | $(EVPTEST).c $(FIPS_AESTEST).c $(FIPS_HMACTEST).c $(FIPS_RSAVTEST).c \ | 92 | $(EVPTEST).c $(IGETEST).c |
106 | $(FIPS_RSASTEST).c $(FIPS_RSAGTEST).c $(FIPS_DSSVS).c $(FIPS_RNGVS).c \ | ||
107 | $(FIPS_TEST_SUITE).c | ||
108 | 93 | ||
109 | EXHEADER= | 94 | EXHEADER= |
110 | HEADER= $(EXHEADER) | 95 | HEADER= $(EXHEADER) |
@@ -143,17 +128,10 @@ alltests: \ | |||
143 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | 128 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ |
144 | test_md2 test_mdc2 \ | 129 | test_md2 test_mdc2 \ |
145 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ | 130 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ |
146 | test_rand test_bn test_ec test_enc test_x509 test_rsa test_crl test_sid \ | 131 | test_rand test_bn test_ec test_ecdsa test_ecdh \ |
132 | test_enc test_x509 test_rsa test_crl test_sid \ | ||
147 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ | 133 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ |
148 | test_ss test_ca test_engine test_evp test_ssl | 134 | test_ss test_ca test_engine test_evp test_ssl test_ige |
149 | # temporarily removed | ||
150 | # fips_test_aes | ||
151 | |||
152 | fips_test_aes: | ||
153 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
154 | mkdir -p fips_aes_data/rsp; \ | ||
155 | ../util/shlib_wrap.sh ./$(FIPS_AESTEST) -d fips_aes_data/list; \ | ||
156 | fi | ||
157 | 135 | ||
158 | test_evp: | 136 | test_evp: |
159 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt | 137 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt |
@@ -167,9 +145,8 @@ test_idea: | |||
167 | test_sha: | 145 | test_sha: |
168 | ../util/shlib_wrap.sh ./$(SHATEST) | 146 | ../util/shlib_wrap.sh ./$(SHATEST) |
169 | ../util/shlib_wrap.sh ./$(SHA1TEST) | 147 | ../util/shlib_wrap.sh ./$(SHA1TEST) |
170 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 148 | ../util/shlib_wrap.sh ./$(SHA256TEST) |
171 | ../util/shlib_wrap.sh ./$(FIPS_SHATEST) < SHAmix.req | diff -w SHAmix.fax - ; \ | 149 | ../util/shlib_wrap.sh ./$(SHA512TEST) |
172 | fi | ||
173 | 150 | ||
174 | test_mdc2: | 151 | test_mdc2: |
175 | ../util/shlib_wrap.sh ./$(MDC2TEST) | 152 | ../util/shlib_wrap.sh ./$(MDC2TEST) |
@@ -206,9 +183,6 @@ test_rc5: | |||
206 | 183 | ||
207 | test_rand: | 184 | test_rand: |
208 | ../util/shlib_wrap.sh ./$(RANDTEST) | 185 | ../util/shlib_wrap.sh ./$(RANDTEST) |
209 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
210 | ../util/shlib_wrap.sh ./$(FIPS_RANDTEST); \ | ||
211 | fi | ||
212 | 186 | ||
213 | test_enc: | 187 | test_enc: |
214 | @sh ./testenc | 188 | @sh ./testenc |
@@ -221,7 +195,7 @@ test_x509: | |||
221 | echo test second x509v3 certificate | 195 | echo test second x509v3 certificate |
222 | sh ./tx509 v3-cert2.pem 2>/dev/null | 196 | sh ./tx509 v3-cert2.pem 2>/dev/null |
223 | 197 | ||
224 | test_rsa: | 198 | test_rsa: $(RSATEST)$(EXE_EXT) |
225 | @sh ./trsa 2>/dev/null | 199 | @sh ./trsa 2>/dev/null |
226 | ../util/shlib_wrap.sh ./$(RSATEST) | 200 | ../util/shlib_wrap.sh ./$(RSATEST) |
227 | 201 | ||
@@ -252,10 +226,18 @@ test_ec: | |||
252 | @echo 'test elliptic curves' | 226 | @echo 'test elliptic curves' |
253 | ../util/shlib_wrap.sh ./$(ECTEST) | 227 | ../util/shlib_wrap.sh ./$(ECTEST) |
254 | 228 | ||
229 | test_ecdsa: | ||
230 | @echo 'test ecdsa' | ||
231 | ../util/shlib_wrap.sh ./$(ECDSATEST) | ||
232 | |||
233 | test_ecdh: | ||
234 | @echo 'test ecdh' | ||
235 | ../util/shlib_wrap.sh ./$(ECDHTEST) | ||
236 | |||
255 | test_verify: | 237 | test_verify: |
256 | @echo "The following command should have some OK's and some failures" | 238 | @echo "The following command should have some OK's and some failures" |
257 | @echo "There are definitly a few expired certificates" | 239 | @echo "There are definitly a few expired certificates" |
258 | -../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem | 240 | ../util/shlib_wrap.sh ../apps/openssl verify -CApath ../certs ../certs/*.pem |
259 | 241 | ||
260 | test_dh: | 242 | test_dh: |
261 | @echo "Generate a set of DH parameters" | 243 | @echo "Generate a set of DH parameters" |
@@ -265,10 +247,6 @@ test_dsa: | |||
265 | @echo "Generate a set of DSA parameters" | 247 | @echo "Generate a set of DSA parameters" |
266 | ../util/shlib_wrap.sh ./$(DSATEST) | 248 | ../util/shlib_wrap.sh ./$(DSATEST) |
267 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 | 249 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 |
268 | if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
269 | ../util/shlib_wrap.sh ./$(FIPS_DSATEST); \ | ||
270 | ../util/shlib_wrap.sh ./$(FIPS_DSATEST) -app2_1; \ | ||
271 | fi | ||
272 | 250 | ||
273 | test_gen: | 251 | test_gen: |
274 | @echo "Generate and verify a certificate request" | 252 | @echo "Generate and verify a certificate request" |
@@ -288,9 +266,7 @@ test_engine: | |||
288 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ | 266 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ |
289 | intP1.ss intP2.ss | 267 | intP1.ss intP2.ss |
290 | @echo "test SSL protocol" | 268 | @echo "test SSL protocol" |
291 | @if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | 269 | ../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist |
292 | sh ./testfipsssl keyU.ss certU.ss certCA.ss; \ | ||
293 | fi | ||
294 | @sh ./testssl keyU.ss certU.ss certCA.ss | 270 | @sh ./testssl keyU.ss certU.ss certCA.ss |
295 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss | 271 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss |
296 | @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss | 272 | @sh ./testsslproxy keyP2.ss certP2.ss intP2.ss |
@@ -307,11 +283,19 @@ test_aes: #$(AESTEST) | |||
307 | # @echo "test Rijndael" | 283 | # @echo "test Rijndael" |
308 | # ../util/shlib_wrap.sh ./$(AESTEST) | 284 | # ../util/shlib_wrap.sh ./$(AESTEST) |
309 | 285 | ||
286 | test_ige: $(IGETEST)$(EXE_EXT) | ||
287 | @echo "Test IGE mode" | ||
288 | ../util/shlib_wrap.sh ./$(IGETEST) | ||
289 | |||
310 | lint: | 290 | lint: |
311 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 291 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
312 | 292 | ||
313 | depend: | 293 | depend: |
314 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC) | 294 | @if [ -z "$(THIS)" ]; then \ |
295 | $(MAKE) -f $(TOP)/Makefile reflect THIS=$@; \ | ||
296 | else \ | ||
297 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(SRC); \ | ||
298 | fi | ||
315 | 299 | ||
316 | dclean: | 300 | dclean: |
317 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 301 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
@@ -326,43 +310,14 @@ $(DLIBSSL): | |||
326 | $(DLIBCRYPTO): | 310 | $(DLIBCRYPTO): |
327 | (cd ..; $(MAKE) DIRS=crypto all) | 311 | (cd ..; $(MAKE) DIRS=crypto all) |
328 | 312 | ||
329 | BUILD_CMD=SHARED_LIBS="$(SHARED_LIBS)"; \ | 313 | BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ |
330 | if [ "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \ | 314 | shlib_target="$(SHLIB_TARGET)"; \ |
331 | SHARED_LIBS=""; \ | ||
332 | fi; \ | 315 | fi; \ |
333 | if [ -z "$$SHARED_LIBS" ]; then \ | 316 | LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \ |
334 | set -x; $${CC:-$(CC)} -o $$target$(EXE_EXT) $(CFLAGS) $$target.o $(PEX_LIBS) $(DLIBSSL) $(LIBKRB5) $(DLIBCRYPTO) $(EX_LIBS) ; \ | 317 | $(MAKE) -f $(TOP)/Makefile.shared -e \ |
335 | else set -x; LD_LIBRARY_PATH=..:$$LD_LIBRARY_PATH \ | 318 | APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \ |
336 | $(CC) -o $$target$(EXE_EXT) $(CFLAGS) $$target.o $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \ | 319 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ |
337 | fi | 320 | link_app.$${shlib_target} |
338 | |||
339 | FIPS_BUILD_CMD=if egrep 'define OPENSSL_FIPS' $(TOP)/include/openssl/opensslconf.h > /dev/null; then \ | ||
340 | FIPSLD_CC=$(CC); CC=$(TOP)/fips-1.0/fipsld; export CC FIPSLD_CC; \ | ||
341 | fi; $(BUILD_CMD) | ||
342 | |||
343 | $(FIPS_AESTEST)$(EXE_EXT): $(FIPS_AESTEST).o $(DLIBCRYPTO) | ||
344 | @target=$(FIPS_AESTEST); $(FIPS_BUILD_CMD) | ||
345 | |||
346 | $(FIPS_HMACTEST)$(EXE_EXT): $(FIPS_HMACTEST).o $(DLIBCRYPTO) | ||
347 | @target=$(FIPS_HMACTEST); $(FIPS_BUILD_CMD) | ||
348 | |||
349 | $(FIPS_RSAVTEST)$(EXE_EXT): $(FIPS_RSAVTEST).o $(DLIBCRYPTO) | ||
350 | @target=$(FIPS_RSAVTEST); $(FIPS_BUILD_CMD) | ||
351 | |||
352 | $(FIPS_RSASTEST)$(EXE_EXT): $(FIPS_RSASTEST).o $(DLIBCRYPTO) | ||
353 | @target=$(FIPS_RSASTEST); $(FIPS_BUILD_CMD) | ||
354 | |||
355 | $(FIPS_RSAGTEST)$(EXE_EXT): $(FIPS_RSAGTEST).o $(DLIBCRYPTO) | ||
356 | @target=$(FIPS_RSAGTEST); $(FIPS_BUILD_CMD) | ||
357 | |||
358 | $(FIPS_DSSVS)$(EXE_EXT): $(FIPS_DSSVS).o $(DLIBCRYPTO) | ||
359 | @target=$(FIPS_DSSVS); $(FIPS_BUILD_CMD) | ||
360 | |||
361 | $(FIPS_RNGVS)$(EXE_EXT): $(FIPS_RNGVS).o $(DLIBCRYPTO) | ||
362 | @target=$(FIPS_RNGVS); $(FIPS_BUILD_CMD) | ||
363 | |||
364 | $(FIPS_TEST_SUITE)$(EXE_EXT): $(FIPS_TEST_SUITE).o $(DLIBCRYPTO) | ||
365 | @target=$(FIPS_TEST_SUITE); $(FIPS_BUILD_CMD) | ||
366 | 321 | ||
367 | $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO) | 322 | $(RSATEST)$(EXE_EXT): $(RSATEST).o $(DLIBCRYPTO) |
368 | @target=$(RSATEST); $(BUILD_CMD) | 323 | @target=$(RSATEST); $(BUILD_CMD) |
@@ -388,8 +343,11 @@ $(SHATEST)$(EXE_EXT): $(SHATEST).o $(DLIBCRYPTO) | |||
388 | $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO) | 343 | $(SHA1TEST)$(EXE_EXT): $(SHA1TEST).o $(DLIBCRYPTO) |
389 | @target=$(SHA1TEST); $(BUILD_CMD) | 344 | @target=$(SHA1TEST); $(BUILD_CMD) |
390 | 345 | ||
391 | $(FIPS_SHATEST)$(EXE_EXT): $(FIPS_SHATEST).o $(DLIBCRYPTO) | 346 | $(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO) |
392 | @target=$(FIPS_SHATEST); $(FIPS_BUILD_CMD) | 347 | @target=$(SHA256TEST); $(BUILD_CMD) |
348 | |||
349 | $(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO) | ||
350 | @target=$(SHA512TEST); $(BUILD_CMD) | ||
393 | 351 | ||
394 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) | 352 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) |
395 | @target=$(RMDTEST); $(BUILD_CMD) | 353 | @target=$(RMDTEST); $(BUILD_CMD) |
@@ -424,29 +382,20 @@ $(RC5TEST)$(EXE_EXT): $(RC5TEST).o $(DLIBCRYPTO) | |||
424 | $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO) | 382 | $(DESTEST)$(EXE_EXT): $(DESTEST).o $(DLIBCRYPTO) |
425 | @target=$(DESTEST); $(BUILD_CMD) | 383 | @target=$(DESTEST); $(BUILD_CMD) |
426 | 384 | ||
427 | $(FIPS_DESTEST)$(EXE_EXT): $(FIPS_DESTEST).o $(DLIBCRYPTO) | ||
428 | @target=$(FIPS_DESTEST); $(FIPS_BUILD_CMD) | ||
429 | |||
430 | $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO) | 385 | $(RANDTEST)$(EXE_EXT): $(RANDTEST).o $(DLIBCRYPTO) |
431 | @target=$(RANDTEST); $(BUILD_CMD) | 386 | @target=$(RANDTEST); $(BUILD_CMD) |
432 | 387 | ||
433 | $(FIPS_RANDTEST)$(EXE_EXT): $(FIPS_RANDTEST).o $(DLIBCRYPTO) | ||
434 | @target=$(FIPS_RANDTEST); $(FIPS_BUILD_CMD) | ||
435 | |||
436 | $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO) | 388 | $(DHTEST)$(EXE_EXT): $(DHTEST).o $(DLIBCRYPTO) |
437 | @target=$(DHTEST); $(BUILD_CMD) | 389 | @target=$(DHTEST); $(BUILD_CMD) |
438 | 390 | ||
439 | $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO) | 391 | $(DSATEST)$(EXE_EXT): $(DSATEST).o $(DLIBCRYPTO) |
440 | @target=$(DSATEST); $(BUILD_CMD) | 392 | @target=$(DSATEST); $(BUILD_CMD) |
441 | 393 | ||
442 | $(FIPS_DSATEST)$(EXE_EXT): $(FIPS_DSATEST).o $(DLIBCRYPTO) | ||
443 | @target=$(FIPS_DSATEST); $(FIPS_BUILD_CMD) | ||
444 | |||
445 | $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO) | 394 | $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO) |
446 | @target=$(METHTEST); $(BUILD_CMD) | 395 | @target=$(METHTEST); $(BUILD_CMD) |
447 | 396 | ||
448 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) | 397 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) |
449 | @target=$(SSLTEST); $(FIPS_BUILD_CMD) | 398 | @target=$(SSLTEST); $(BUILD_CMD) |
450 | 399 | ||
451 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) | 400 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) |
452 | @target=$(ENGINETEST); $(BUILD_CMD) | 401 | @target=$(ENGINETEST); $(BUILD_CMD) |
@@ -454,48 +403,53 @@ $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) | |||
454 | $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO) | 403 | $(EVPTEST)$(EXE_EXT): $(EVPTEST).o $(DLIBCRYPTO) |
455 | @target=$(EVPTEST); $(BUILD_CMD) | 404 | @target=$(EVPTEST); $(BUILD_CMD) |
456 | 405 | ||
406 | $(ECDSATEST)$(EXE_EXT): $(ECDSATEST).o $(DLIBCRYPTO) | ||
407 | @target=$(ECDSATEST); $(BUILD_CMD) | ||
408 | |||
409 | $(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO) | ||
410 | @target=$(ECDHTEST); $(BUILD_CMD) | ||
411 | |||
412 | $(IGETEST)$(EXE_EXT): $(IGETEST).o $(DLIBCRYPTO) | ||
413 | @target=$(IGETEST); $(BUILD_CMD) | ||
414 | |||
457 | #$(AESTEST).o: $(AESTEST).c | 415 | #$(AESTEST).o: $(AESTEST).c |
458 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c | 416 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c |
459 | 417 | ||
460 | #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO) | 418 | #$(AESTEST)$(EXE_EXT): $(AESTEST).o $(DLIBCRYPTO) |
461 | # @target=$(AESTEST); $(BUILD_CMD) | 419 | # if [ "$(SHLIB_TARGET)" = "hpux-shared" -o "$(SHLIB_TARGET)" = "darwin-shared" ] ; then \ |
420 | # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(DLIBCRYPTO) $(EX_LIBS) ; \ | ||
421 | # else \ | ||
422 | # $(CC) -o $(AESTEST)$(EXE_EXT) $(CFLAGS) $(AESTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) ; \ | ||
423 | # fi | ||
462 | 424 | ||
463 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) | 425 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) |
464 | @target=dummytest; $(BUILD_CMD) | 426 | @target=dummytest$; $(BUILD_CMD) |
465 | 427 | ||
466 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 428 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
467 | 429 | ||
468 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h | 430 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h |
469 | bftest.o: ../include/openssl/opensslconf.h bftest.c | 431 | bftest.o: ../include/openssl/opensslconf.h bftest.c |
470 | bntest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 432 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
471 | bntest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
472 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 433 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
473 | bntest.o: ../include/openssl/cast.h ../include/openssl/crypto.h | 434 | bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
474 | bntest.o: ../include/openssl/des.h ../include/openssl/des_old.h | 435 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
475 | bntest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 436 | bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
476 | bntest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 437 | bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
477 | bntest.o: ../include/openssl/evp.h ../include/openssl/idea.h | 438 | bntest.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
478 | bntest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | 439 | bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
479 | bntest.o: ../include/openssl/md4.h ../include/openssl/md5.h | 440 | bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
480 | bntest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 441 | bntest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
481 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 442 | bntest.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
482 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 443 | bntest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
483 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 444 | bntest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
484 | bntest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 445 | bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bntest.c |
485 | bntest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
486 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
487 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
488 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
489 | bntest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
490 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | ||
491 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h | 446 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h |
492 | casttest.o: ../include/openssl/opensslconf.h casttest.c | 447 | casttest.o: ../include/openssl/opensslconf.h casttest.c |
493 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 448 | destest.o: ../include/openssl/des.h ../include/openssl/des_old.h |
494 | destest.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h | 449 | destest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
495 | destest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 450 | destest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
496 | destest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 451 | destest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
497 | destest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 452 | destest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h destest.c |
498 | destest.o: ../include/openssl/ui_compat.h destest.c | ||
499 | dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h | 453 | dhtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h |
500 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 454 | dhtest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
501 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 455 | dhtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
@@ -511,47 +465,52 @@ dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
511 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 465 | dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
512 | dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 466 | dsatest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
513 | dsatest.o: ../include/openssl/symhacks.h dsatest.c | 467 | dsatest.o: ../include/openssl/symhacks.h dsatest.c |
468 | ecdhtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
469 | ecdhtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
470 | ecdhtest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
471 | ecdhtest.o: ../include/openssl/ecdh.h ../include/openssl/err.h | ||
472 | ecdhtest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
473 | ecdhtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
474 | ecdhtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
475 | ecdhtest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
476 | ecdhtest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
477 | ecdhtest.o: ../include/openssl/symhacks.h ecdhtest.c | ||
478 | ecdsatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
479 | ecdsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
480 | ecdsatest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
481 | ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | ||
482 | ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
483 | ecdsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
484 | ecdsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
485 | ecdsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
486 | ecdsatest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | ||
487 | ecdsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
488 | ecdsatest.o: ecdsatest.c | ||
514 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 489 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
515 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 490 | ectest.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
516 | ectest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
517 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | 491 | ectest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
518 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h | 492 | ectest.o: ../include/openssl/engine.h ../include/openssl/err.h |
519 | ectest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 493 | ectest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
494 | ectest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
520 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 495 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
521 | ectest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 496 | ectest.o: ../include/openssl/rand.h ../include/openssl/safestack.h |
522 | ectest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 497 | ectest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h ectest.c |
523 | ectest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h ectest.c | 498 | enginetest.o: ../include/openssl/bio.h ../include/openssl/buffer.h |
524 | enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 499 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
525 | enginetest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
526 | enginetest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | ||
527 | enginetest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
528 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h | 500 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h |
529 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h | 501 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/opensslconf.h |
530 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 502 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
531 | enginetest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
532 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 503 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
533 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 504 | enginetest.o: ../include/openssl/symhacks.h enginetest.c |
534 | enginetest.o: enginetest.c | 505 | evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
535 | evp_test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
536 | evp_test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
537 | evp_test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
538 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 506 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
539 | evp_test.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
540 | evp_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
541 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 507 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h |
542 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h | 508 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h |
543 | evp_test.o: ../include/openssl/idea.h ../include/openssl/lhash.h | 509 | evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
544 | evp_test.o: ../include/openssl/md2.h ../include/openssl/md4.h | 510 | evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
545 | evp_test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 511 | evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
546 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 512 | evp_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
547 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 513 | evp_test.o: ../include/openssl/symhacks.h evp_test.c |
548 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
549 | evp_test.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
550 | evp_test.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
551 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
552 | evp_test.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
553 | evp_test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
554 | evp_test.o: ../include/openssl/ui_compat.h evp_test.c | ||
555 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h | 514 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h |
556 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 515 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
557 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | 516 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h |
@@ -559,314 +518,65 @@ exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
559 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 518 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
560 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 519 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
561 | exptest.o: ../include/openssl/symhacks.h exptest.c | 520 | exptest.o: ../include/openssl/symhacks.h exptest.c |
562 | fips_aesavs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 521 | hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
563 | fips_aesavs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 522 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
564 | fips_aesavs.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
565 | fips_aesavs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
566 | fips_aesavs.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
567 | fips_aesavs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
568 | fips_aesavs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
569 | fips_aesavs.o: ../include/openssl/fips.h ../include/openssl/idea.h | ||
570 | fips_aesavs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
571 | fips_aesavs.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
572 | fips_aesavs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
573 | fips_aesavs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
574 | fips_aesavs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
575 | fips_aesavs.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
576 | fips_aesavs.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
577 | fips_aesavs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
578 | fips_aesavs.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
579 | fips_aesavs.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
580 | fips_aesavs.o: ../include/openssl/ui_compat.h fips_aesavs.c | ||
581 | fips_desmovs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
582 | fips_desmovs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
583 | fips_desmovs.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
584 | fips_desmovs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
585 | fips_desmovs.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
586 | fips_desmovs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
587 | fips_desmovs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
588 | fips_desmovs.o: ../include/openssl/fips.h ../include/openssl/idea.h | ||
589 | fips_desmovs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
590 | fips_desmovs.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
591 | fips_desmovs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
592 | fips_desmovs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
593 | fips_desmovs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
594 | fips_desmovs.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
595 | fips_desmovs.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
596 | fips_desmovs.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
597 | fips_desmovs.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
598 | fips_desmovs.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
599 | fips_desmovs.o: ../include/openssl/ui_compat.h fips_desmovs.c | ||
600 | fips_dsatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | ||
601 | fips_dsatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
602 | fips_dsatest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
603 | fips_dsatest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
604 | fips_dsatest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
605 | fips_dsatest.o: ../include/openssl/err.h ../include/openssl/fips.h | ||
606 | fips_dsatest.o: ../include/openssl/fips_rand.h ../include/openssl/lhash.h | ||
607 | fips_dsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
608 | fips_dsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
609 | fips_dsatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
610 | fips_dsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
611 | fips_dsatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
612 | fips_dsatest.o: fips_dsatest.c | ||
613 | fips_dssvs.o: ../include/openssl/opensslconf.h fips_dssvs.c | ||
614 | fips_hmactest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
615 | fips_hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
616 | fips_hmactest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
617 | fips_hmactest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
618 | fips_hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
619 | fips_hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
620 | fips_hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
621 | fips_hmactest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
622 | fips_hmactest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
623 | fips_hmactest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
624 | fips_hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
625 | fips_hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
626 | fips_hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
627 | fips_hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
628 | fips_hmactest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
629 | fips_hmactest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
630 | fips_hmactest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
631 | fips_hmactest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
632 | fips_hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
633 | fips_hmactest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
634 | fips_hmactest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
635 | fips_hmactest.o: ../include/openssl/x509v3.h fips_hmactest.c | ||
636 | fips_randtest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/crypto.h | ||
637 | fips_randtest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
638 | fips_randtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
639 | fips_randtest.o: ../include/openssl/fips_rand.h ../include/openssl/lhash.h | ||
640 | fips_randtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
641 | fips_randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
642 | fips_randtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
643 | fips_randtest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
644 | fips_randtest.o: ../include/openssl/ui_compat.h fips_randtest.c | ||
645 | fips_rngvs.o: ../include/openssl/opensslconf.h fips_rngvs.c | ||
646 | fips_rsagtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
647 | fips_rsagtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
648 | fips_rsagtest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
649 | fips_rsagtest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
650 | fips_rsagtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
651 | fips_rsagtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
652 | fips_rsagtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
653 | fips_rsagtest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
654 | fips_rsagtest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
655 | fips_rsagtest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
656 | fips_rsagtest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
657 | fips_rsagtest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
658 | fips_rsagtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
659 | fips_rsagtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
660 | fips_rsagtest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
661 | fips_rsagtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
662 | fips_rsagtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
663 | fips_rsagtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
664 | fips_rsagtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
665 | fips_rsagtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
666 | fips_rsagtest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
667 | fips_rsagtest.o: ../include/openssl/x509v3.h fips_rsagtest.c | ||
668 | fips_rsastest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
669 | fips_rsastest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
670 | fips_rsastest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
671 | fips_rsastest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
672 | fips_rsastest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
673 | fips_rsastest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
674 | fips_rsastest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
675 | fips_rsastest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
676 | fips_rsastest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
677 | fips_rsastest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
678 | fips_rsastest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
679 | fips_rsastest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
680 | fips_rsastest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
681 | fips_rsastest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
682 | fips_rsastest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
683 | fips_rsastest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
684 | fips_rsastest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
685 | fips_rsastest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
686 | fips_rsastest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
687 | fips_rsastest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
688 | fips_rsastest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
689 | fips_rsastest.o: ../include/openssl/x509v3.h fips_rsastest.c | ||
690 | fips_rsavtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
691 | fips_rsavtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
692 | fips_rsavtest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
693 | fips_rsavtest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
694 | fips_rsavtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
695 | fips_rsavtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
696 | fips_rsavtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
697 | fips_rsavtest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
698 | fips_rsavtest.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
699 | fips_rsavtest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
700 | fips_rsavtest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
701 | fips_rsavtest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
702 | fips_rsavtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
703 | fips_rsavtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
704 | fips_rsavtest.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h | ||
705 | fips_rsavtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
706 | fips_rsavtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
707 | fips_rsavtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
708 | fips_rsavtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
709 | fips_rsavtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
710 | fips_rsavtest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
711 | fips_rsavtest.o: ../include/openssl/x509v3.h fips_rsavtest.c | ||
712 | fips_shatest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
713 | fips_shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
714 | fips_shatest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | ||
715 | fips_shatest.o: ../include/openssl/cast.h ../include/openssl/conf.h | ||
716 | fips_shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
717 | fips_shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
718 | fips_shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
719 | fips_shatest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
720 | fips_shatest.o: ../include/openssl/idea.h ../include/openssl/lhash.h | ||
721 | fips_shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
722 | fips_shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
723 | fips_shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
724 | fips_shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
725 | fips_shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
726 | fips_shatest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
727 | fips_shatest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
728 | fips_shatest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
729 | fips_shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
730 | fips_shatest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
731 | fips_shatest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
732 | fips_shatest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | ||
733 | fips_shatest.o: fips_shatest.c | ||
734 | fips_test_suite.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
735 | fips_test_suite.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
736 | fips_test_suite.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
737 | fips_test_suite.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
738 | fips_test_suite.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
739 | fips_test_suite.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
740 | fips_test_suite.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
741 | fips_test_suite.o: ../include/openssl/fips.h ../include/openssl/fips_sha.h | ||
742 | fips_test_suite.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
743 | fips_test_suite.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
744 | fips_test_suite.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
745 | fips_test_suite.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
746 | fips_test_suite.o: ../include/openssl/objects.h | ||
747 | fips_test_suite.o: ../include/openssl/opensslconf.h | ||
748 | fips_test_suite.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
749 | fips_test_suite.o: ../include/openssl/rand.h ../include/openssl/rc2.h | ||
750 | fips_test_suite.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
751 | fips_test_suite.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
752 | fips_test_suite.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
753 | fips_test_suite.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
754 | fips_test_suite.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
755 | fips_test_suite.o: fips_test_suite.c | ||
756 | hmactest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
757 | hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
758 | hmactest.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
759 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
760 | hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
761 | hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
762 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h | 523 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
763 | hmactest.o: ../include/openssl/idea.h ../include/openssl/md2.h | 524 | hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h |
764 | hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
765 | hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
766 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 525 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
767 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 526 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
768 | hmactest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | 527 | hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
769 | hmactest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | 528 | hmactest.o: ../include/openssl/symhacks.h hmactest.c |
770 | hmactest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
771 | hmactest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
772 | hmactest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
773 | hmactest.o: ../include/openssl/ui_compat.h hmactest.c | ||
774 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h | 529 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h |
775 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c | 530 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c |
776 | md2test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 531 | igetest.o: ../include/openssl/aes.h ../include/openssl/e_os2.h |
777 | md2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 532 | igetest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h |
778 | md2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | 533 | igetest.o: ../include/openssl/rand.h igetest.c |
779 | md2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | 534 | md2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
780 | md2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 535 | md2test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
781 | md2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 536 | md2test.o: ../include/openssl/evp.h ../include/openssl/md2.h |
782 | md2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
783 | md2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
784 | md2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
785 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 537 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
786 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 538 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
787 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 539 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
788 | md2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 540 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md2test.c |
789 | md2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 541 | md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
790 | md2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 542 | md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
791 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 543 | md4test.o: ../include/openssl/evp.h ../include/openssl/md4.h |
792 | md2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md2test.c | ||
793 | md4test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
794 | md4test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
795 | md4test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
796 | md4test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
797 | md4test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
798 | md4test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
799 | md4test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
800 | md4test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
801 | md4test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
802 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 544 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
803 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 545 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
804 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 546 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
805 | md4test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 547 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md4test.c |
806 | md4test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 548 | md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
807 | md4test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 549 | md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
808 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 550 | md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h |
809 | md4test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md4test.c | ||
810 | md5test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
811 | md5test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
812 | md5test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
813 | md5test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
814 | md5test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
815 | md5test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
816 | md5test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
817 | md5test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
818 | md5test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
819 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 551 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
820 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 552 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
821 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | 553 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
822 | md5test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 554 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c |
823 | md5test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 555 | mdc2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
824 | md5test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 556 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
825 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 557 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
826 | md5test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md5test.c | 558 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
827 | mdc2test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 559 | mdc2test.o: ../include/openssl/symhacks.h mdc2test.c |
828 | mdc2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
829 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
830 | mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
831 | mdc2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
832 | mdc2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
833 | mdc2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
834 | mdc2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
835 | mdc2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
836 | mdc2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
837 | mdc2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
838 | mdc2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
839 | mdc2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
840 | mdc2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
841 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
842 | mdc2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
843 | mdc2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h mdc2test.c | ||
844 | randtest.o: ../e_os.h ../include/openssl/e_os2.h | 560 | randtest.o: ../e_os.h ../include/openssl/e_os2.h |
845 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h | 561 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h |
846 | randtest.o: ../include/openssl/rand.h randtest.c | 562 | randtest.o: ../include/openssl/rand.h randtest.c |
847 | rc2test.o: ../e_os.h ../include/openssl/e_os2.h | 563 | rc2test.o: ../e_os.h ../include/openssl/e_os2.h |
848 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c | 564 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c |
849 | rc4test.o: ../e_os.h ../include/openssl/e_os2.h | 565 | rc4test.o: ../e_os.h ../include/openssl/e_os2.h |
850 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c | 566 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h |
851 | rc5test.o: ../e_os.h ../include/openssl/e_os2.h | 567 | rc4test.o: ../include/openssl/sha.h rc4test.c |
852 | rc5test.o: ../include/openssl/opensslconf.h ../include/openssl/rc5.h rc5test.c | 568 | rc5test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
853 | rmdtest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 569 | rc5test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
854 | rmdtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 570 | rc5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
855 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/cast.h | 571 | rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
856 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 572 | rc5test.o: ../include/openssl/symhacks.h rc5test.c |
857 | rmdtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 573 | rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
858 | rmdtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 574 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
859 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/idea.h | 575 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
860 | rmdtest.o: ../include/openssl/md2.h ../include/openssl/md4.h | 576 | rmdtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
861 | rmdtest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 577 | rmdtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
862 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 578 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/safestack.h |
863 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 579 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h rmdtest.c |
864 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
865 | rmdtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
866 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
867 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
868 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
869 | rmdtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h rmdtest.c | ||
870 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 580 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
871 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 581 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
872 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 582 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
@@ -875,64 +585,39 @@ rsa_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | |||
875 | rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 585 | rsa_test.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
876 | rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 586 | rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
877 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c | 587 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c |
878 | sha1test.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 588 | sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
879 | sha1test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 589 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
880 | sha1test.o: ../include/openssl/bn.h ../include/openssl/cast.h | 590 | sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
881 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/des.h | 591 | sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
882 | sha1test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | 592 | sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
883 | sha1test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
884 | sha1test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
885 | sha1test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
886 | sha1test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
887 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
888 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
889 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
890 | sha1test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
891 | sha1test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
892 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 593 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
893 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 594 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c |
894 | sha1test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h sha1test.c | 595 | shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
895 | shatest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | 596 | shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
896 | shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | 597 | shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
897 | shatest.o: ../include/openssl/bn.h ../include/openssl/cast.h | 598 | shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
898 | shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 599 | shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
899 | shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
900 | shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
901 | shatest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
902 | shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
903 | shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
904 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
905 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
906 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
907 | shatest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
908 | shatest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
909 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 600 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
910 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 601 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c |
911 | shatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h shatest.c | 602 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
912 | ssltest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
913 | ssltest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
914 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 603 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
915 | ssltest.o: ../include/openssl/cast.h ../include/openssl/comp.h | 604 | ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h |
916 | ssltest.o: ../include/openssl/conf.h ../include/openssl/crypto.h | 605 | ssltest.o: ../include/openssl/crypto.h ../include/openssl/dh.h |
917 | ssltest.o: ../include/openssl/des.h ../include/openssl/des_old.h | 606 | ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h |
918 | ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 607 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
919 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 608 | ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
920 | ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h | 609 | ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h |
921 | ssltest.o: ../include/openssl/fips.h ../include/openssl/idea.h | 610 | ssltest.o: ../include/openssl/evp.h ../include/openssl/kssl.h |
922 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 611 | ssltest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
923 | ssltest.o: ../include/openssl/md2.h ../include/openssl/md4.h | 612 | ssltest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
924 | ssltest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | 613 | ssltest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
925 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 614 | ssltest.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
926 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 615 | ssltest.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h |
927 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 616 | ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h |
928 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 617 | ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
929 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rc2.h | 618 | ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
930 | ssltest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | 619 | ssltest.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
931 | ssltest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | 620 | ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
932 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 621 | ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
933 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 622 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
934 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 623 | ssltest.o: ../include/openssl/x509v3.h ssltest.c |
935 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
936 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
937 | ssltest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
938 | ssltest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h ssltest.c | ||
diff --git a/src/lib/libssl/test/evptests.txt b/src/lib/libssl/test/evptests.txt index dfe91a5bc0..beb12144b6 100644 --- a/src/lib/libssl/test/evptests.txt +++ b/src/lib/libssl/test/evptests.txt | |||
@@ -92,102 +92,7 @@ AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000 | |||
92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D | 92 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:F58C4C04D6E5F1BA779EABFB5F7BFBD6:AE2D8A571E03AC9C9EB76FAC45AF8E51:9CFC4E967EDB808D679F777BC6702C7D |
93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 | 93 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:9CFC4E967EDB808D679F777BC6702C7D:30C81C46A35CE411E5FBC1191A0A52EF:39F23369A9D9BACFA530E26304231461 |
94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B | 94 | AES-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:39F23369A9D9BACFA530E26304231461:F69F2445DF4F9B17AD2B417BE66C3710:B2EB05E2C39BE9FCDA6C19078C6A9D1B |
95 | 95 | # We don't support CFB{1,8}-AESxxx.{En,De}crypt | |
96 | # CFB1-AES128.Encrypt | ||
97 | |||
98 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:1 | ||
99 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:1 | ||
100 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:1 | ||
101 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:1 | ||
102 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:1 | ||
103 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:1 | ||
104 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:1 | ||
105 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:1 | ||
106 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:1 | ||
107 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:1 | ||
108 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:1 | ||
109 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:1 | ||
110 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:1 | ||
111 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:1 | ||
112 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:1 | ||
113 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:1 | ||
114 | # all of the above packed into one... | ||
115 | # in: 0110 1011 1100 0001 = 6bc1 | ||
116 | # out: 0110 1000 1011 0011 = 68b3 | ||
117 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:1 | ||
118 | |||
119 | # CFB1-AES128.Decrypt | ||
120 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:00:00:0 | ||
121 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00020406080a0c0e10121416181a1c1e:80:80:0 | ||
122 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0004080c1014181c2024282c3034383d:80:80:0 | ||
123 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0008101820283038404850586068707b:00:00:0 | ||
124 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:00102030405060708090a0b0c0d0e0f6:80:80:0 | ||
125 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0020406080a0c0e10121416181a1c1ed:00:00:0 | ||
126 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:004080c1014181c2024282c3034383da:80:00:0 | ||
127 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:008101820283038404850586068707b4:80:00:0 | ||
128 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f68:80:80:0 | ||
129 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:020406080a0c0e10121416181a1c1ed1:80:00:0 | ||
130 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:04080c1014181c2024282c3034383da2:00:80:0 | ||
131 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:08101820283038404850586068707b45:00:80:0 | ||
132 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:102030405060708090a0b0c0d0e0f68b:00:00:0 | ||
133 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:20406080a0c0e10121416181a1c1ed16:00:00:0 | ||
134 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:4080c1014181c2024282c3034383da2c:00:80:0 | ||
135 | AES-128-CFB1:2b7e151628aed2a6abf7158809cf4f3c:8101820283038404850586068707b459:80:80:0 | ||
136 | # all of the above packed into one... | ||
137 | # in: 0110 1000 1011 0011 = 68b3 | ||
138 | # out: 0110 1011 1100 0001 = 6bc1 | ||
139 | AES-128-CFB1*8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1:68b3:0 | ||
140 | |||
141 | # TODO: CFB1-AES192 and 256 | ||
142 | |||
143 | # CFB8-AES128.Encrypt | ||
144 | |||
145 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:1 | ||
146 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:1 | ||
147 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:1 | ||
148 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:1 | ||
149 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:1 | ||
150 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:1 | ||
151 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:1 | ||
152 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:1 | ||
153 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:1 | ||
154 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:1 | ||
155 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:1 | ||
156 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:1 | ||
157 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:1 | ||
158 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:1 | ||
159 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:1 | ||
160 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:1 | ||
161 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:1 | ||
162 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:1 | ||
163 | # all of the above packed into one | ||
164 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:1 | ||
165 | |||
166 | # CFB8-AES128.Decrypt | ||
167 | |||
168 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6b:3b:0 | ||
169 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0102030405060708090a0b0c0d0e0f3b:c1:79:0 | ||
170 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:02030405060708090a0b0c0d0e0f3b79:be:42:0 | ||
171 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:030405060708090a0b0c0d0e0f3b7942:e2:4c:0 | ||
172 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0405060708090a0b0c0d0e0f3b79424c:2e:9c:0 | ||
173 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:05060708090a0b0c0d0e0f3b79424c9c:40:0d:0 | ||
174 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:060708090a0b0c0d0e0f3b79424c9c0d:9f:d4:0 | ||
175 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0708090a0b0c0d0e0f3b79424c9c0dd4:96:36:0 | ||
176 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:08090a0b0c0d0e0f3b79424c9c0dd436:e9:ba:0 | ||
177 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:090a0b0c0d0e0f3b79424c9c0dd436ba:3d:ce:0 | ||
178 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0a0b0c0d0e0f3b79424c9c0dd436bace:7e:9e:0 | ||
179 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0b0c0d0e0f3b79424c9c0dd436bace9e:11:0e:0 | ||
180 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0c0d0e0f3b79424c9c0dd436bace9e0e:73:d4:0 | ||
181 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0d0e0f3b79424c9c0dd436bace9e0ed4:93:58:0 | ||
182 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0e0f3b79424c9c0dd436bace9e0ed458:17:6a:0 | ||
183 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:0f3b79424c9c0dd436bace9e0ed4586a:2a:4f:0 | ||
184 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:3b79424c9c0dd436bace9e0ed4586a4f:ae:32:0 | ||
185 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:79424c9c0dd436bace9e0ed4586a4f32:2d:b9:0 | ||
186 | # all of the above packed into one | ||
187 | AES-128-CFB8:2b7e151628aed2a6abf7158809cf4f3c:000102030405060708090a0b0c0d0e0f:6bc1bee22e409f96e93d7e117393172aae2d:3b79424c9c0dd436bace9e0ed4586a4f32b9:0 | ||
188 | |||
189 | # TODO: 192 and 256 bit keys | ||
190 | |||
191 | # For all CFB128 encrypts and decrypts, the transformed sequence is | 96 | # For all CFB128 encrypts and decrypts, the transformed sequence is |
192 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec | 97 | # AES-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec |
193 | # CFB128-AES128.Encrypt | 98 | # CFB128-AES128.Encrypt |
@@ -269,16 +174,6 @@ DESX-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363 | |||
269 | # DES EDE3 CBC tests (from destest) | 174 | # DES EDE3 CBC tests (from destest) |
270 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 | 175 | DES-EDE3-CBC:0123456789abcdeff1e0d3c2b5a49786fedcba9876543210:fedcba9876543210:37363534333231204E6F77206973207468652074696D6520666F722000000000:3FE301C962AC01D02213763C1CBD4CDC799657C064ECF5D41C673812CFDE9675 |
271 | 176 | ||
272 | # DES CFB1 from FIPS 81 | ||
273 | # plaintext: 0100 1110 0110 1111 0111 0111 = 4e6f77 | ||
274 | # ciphertext: 1100 1101 0001 1110 1100 1001 = cd1ec9 | ||
275 | |||
276 | DES-CFB1*8:0123456789abcdef:1234567890abcdef:4e6f77:cd1ec9 | ||
277 | |||
278 | # DES CFB8 from FIPS 81 | ||
279 | |||
280 | DES-CFB8:0123456789abcdef:1234567890abcdef:4e6f7720697320746865:f31fda07011462ee187f | ||
281 | |||
282 | # RC4 tests (from rc4test) | 177 | # RC4 tests (from rc4test) |
283 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 | 178 | RC4:0123456789abcdef0123456789abcdef::0123456789abcdef:75b7878099e0c596 |
284 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 | 179 | RC4:0123456789abcdef0123456789abcdef::0000000000000000:7494c2e7104b0879 |
@@ -286,3 +181,141 @@ RC4:00000000000000000000000000000000::0000000000000000:de188941a3375d3a | |||
286 | RC4:ef012345ef012345ef012345ef012345::0000000000000000000000000000000000000000:d6a141a7ec3c38dfbd615a1162e1c7ba36b67858 | 181 | RC4:ef012345ef012345ef012345ef012345::0000000000000000000000000000000000000000:d6a141a7ec3c38dfbd615a1162e1c7ba36b67858 |
287 | RC4:0123456789abcdef0123456789abcdef::123456789ABCDEF0123456789ABCDEF0123456789ABCDEF012345678:66a0949f8af7d6891f7f832ba833c00c892ebe30143ce28740011ecf | 182 | RC4:0123456789abcdef0123456789abcdef::123456789ABCDEF0123456789ABCDEF0123456789ABCDEF012345678:66a0949f8af7d6891f7f832ba833c00c892ebe30143ce28740011ecf |
288 | RC4:ef012345ef012345ef012345ef012345::00000000000000000000:d6a141a7ec3c38dfbd61 | 183 | RC4:ef012345ef012345ef012345ef012345::00000000000000000000:d6a141a7ec3c38dfbd61 |
184 | |||
185 | |||
186 | # Camellia tests from RFC3713 | ||
187 | # For all ECB encrypts and decrypts, the transformed sequence is | ||
188 | # CAMELLIA-bits-ECB:key::plaintext:ciphertext:encdec | ||
189 | CAMELLIA-128-ECB:0123456789abcdeffedcba9876543210::0123456789abcdeffedcba9876543210:67673138549669730857065648eabe43 | ||
190 | CAMELLIA-192-ECB:0123456789abcdeffedcba98765432100011223344556677::0123456789abcdeffedcba9876543210:b4993401b3e996f84ee5cee7d79b09b9 | ||
191 | CAMELLIA-256-ECB:0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff::0123456789abcdeffedcba9876543210:9acc237dff16d76c20ef7c919e3a7509 | ||
192 | |||
193 | # ECB-CAMELLIA128.Encrypt | ||
194 | CAMELLIA-128-ECB:000102030405060708090A0B0C0D0E0F::00112233445566778899AABBCCDDEEFF:77CF412067AF8270613529149919546F:1 | ||
195 | CAMELLIA-192-ECB:000102030405060708090A0B0C0D0E0F1011121314151617::00112233445566778899AABBCCDDEEFF:B22F3C36B72D31329EEE8ADDC2906C68:1 | ||
196 | CAMELLIA-256-ECB:000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F::00112233445566778899AABBCCDDEEFF:2EDF1F3418D53B88841FC8985FB1ECF2:1 | ||
197 | |||
198 | # ECB-CAMELLIA128.Encrypt and ECB-CAMELLIA128.Decrypt | ||
199 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::6BC1BEE22E409F96E93D7E117393172A:432FC5DCD628115B7C388D770B270C96 | ||
200 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::AE2D8A571E03AC9C9EB76FAC45AF8E51:0BE1F14023782A22E8384C5ABB7FAB2B | ||
201 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::30C81C46A35CE411E5FBC1191A0A52EF:A0A1ABCD1893AB6FE0FE5B65DF5F8636 | ||
202 | CAMELLIA-128-ECB:2B7E151628AED2A6ABF7158809CF4F3C::F69F2445DF4F9B17AD2B417BE66C3710:E61925E0D5DFAA9BB29F815B3076E51A | ||
203 | |||
204 | # ECB-CAMELLIA192.Encrypt and ECB-CAMELLIA192.Decrypt | ||
205 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::6BC1BEE22E409F96E93D7E117393172A:CCCC6C4E138B45848514D48D0D3439D3 | ||
206 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::AE2D8A571E03AC9C9EB76FAC45AF8E51:5713C62C14B2EC0F8393B6AFD6F5785A | ||
207 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::30C81C46A35CE411E5FBC1191A0A52EF:B40ED2B60EB54D09D030CF511FEEF366 | ||
208 | CAMELLIA-192-ECB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B::F69F2445DF4F9B17AD2B417BE66C3710:909DBD95799096748CB27357E73E1D26 | ||
209 | |||
210 | # ECB-CAMELLIA256.Encrypt and ECB-CAMELLIA256.Decrypt | ||
211 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::6BC1BEE22E409F96E93D7E117393172A:BEFD219B112FA00098919CD101C9CCFA | ||
212 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::AE2D8A571E03AC9C9EB76FAC45AF8E51:C91D3A8F1AEA08A9386CF4B66C0169EA | ||
213 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::30C81C46A35CE411E5FBC1191A0A52EF:A623D711DC5F25A51BB8A80D56397D28 | ||
214 | CAMELLIA-256-ECB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4::F69F2445DF4F9B17AD2B417BE66C3710:7960109FB6DC42947FCFE59EA3C5EB6B | ||
215 | |||
216 | # For all CBC encrypts and decrypts, the transformed sequence is | ||
217 | # CAMELLIA-bits-CBC:key:IV/ciphertext':plaintext:ciphertext:encdec | ||
218 | # CBC-CAMELLIA128.Encrypt and CBC-CAMELLIA128.Decrypt | ||
219 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:1607CF494B36BBF00DAEB0B503C831AB | ||
220 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:1607CF494B36BBF00DAEB0B503C831AB:AE2D8A571E03AC9C9EB76FAC45AF8E51:A2F2CF671629EF7840C5A5DFB5074887 | ||
221 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:A2F2CF671629EF7840C5A5DFB5074887:30C81C46A35CE411E5FBC1191A0A52EF:0F06165008CF8B8B5A63586362543E54 | ||
222 | CAMELLIA-128-CBC:2B7E151628AED2A6ABF7158809CF4F3C:36A84CDAFD5F9A85ADA0F0A993D6D577:F69F2445DF4F9B17AD2B417BE66C3710:74C64268CDB8B8FAF5B34E8AF3732980 | ||
223 | |||
224 | # CBC-CAMELLIA192.Encrypt and CBC-CAMELLIA192.Decrypt | ||
225 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:2A4830AB5AC4A1A2405955FD2195CF93 | ||
226 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:2A4830AB5AC4A1A2405955FD2195CF93:AE2D8A571E03AC9C9EB76FAC45AF8E51:5D5A869BD14CE54264F892A6DD2EC3D5 | ||
227 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:5D5A869BD14CE54264F892A6DD2EC3D5:30C81C46A35CE411E5FBC1191A0A52EF:37D359C3349836D884E310ADDF68C449 | ||
228 | CAMELLIA-192-CBC:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:37D359C3349836D884E310ADDF68C449:F69F2445DF4F9B17AD2B417BE66C3710:01FAAA930B4AB9916E9668E1428C6B08 | ||
229 | |||
230 | # CBC-CAMELLIA256.Encrypt and CBC-CAMELLIA256.Decrypt | ||
231 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:E6CFA35FC02B134A4D2C0B6737AC3EDA | ||
232 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E6CFA35FC02B134A4D2C0B6737AC3EDA:AE2D8A571E03AC9C9EB76FAC45AF8E51:36CBEB73BD504B4070B1B7DE2B21EB50 | ||
233 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:36CBEB73BD504B4070B1B7DE2B21EB50:30C81C46A35CE411E5FBC1191A0A52EF:E31A6055297D96CA3330CDF1B1860A83 | ||
234 | CAMELLIA-256-CBC:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E31A6055297D96CA3330CDF1B1860A83:F69F2445DF4F9B17AD2B417BE66C3710:5D563F6D1CCCF236051C0C5C1C58F28F | ||
235 | |||
236 | # We don't support CFB{1,8}-CAMELLIAxxx.{En,De}crypt | ||
237 | # For all CFB128 encrypts and decrypts, the transformed sequence is | ||
238 | # CAMELLIA-bits-CFB:key:IV/ciphertext':plaintext:ciphertext:encdec | ||
239 | # CFB128-CAMELLIA128.Encrypt | ||
240 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:1 | ||
241 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:14F7646187817EB586599146B82BD719:AE2D8A571E03AC9C9EB76FAC45AF8E51:A53D28BB82DF741103EA4F921A44880B:1 | ||
242 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:A53D28BB82DF741103EA4F921A44880B:30C81C46A35CE411E5FBC1191A0A52EF:9C2157A664626D1DEF9EA420FDE69B96:1 | ||
243 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:9C2157A664626D1DEF9EA420FDE69B96:F69F2445DF4F9B17AD2B417BE66C3710:742A25F0542340C7BAEF24CA8482BB09:1 | ||
244 | |||
245 | # CFB128-CAMELLIA128.Decrypt | ||
246 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:0 | ||
247 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:14F7646187817EB586599146B82BD719:AE2D8A571E03AC9C9EB76FAC45AF8E51:A53D28BB82DF741103EA4F921A44880B:0 | ||
248 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:A53D28BB82DF741103EA4F921A44880B:30C81C46A35CE411E5FBC1191A0A52EF:9C2157A664626D1DEF9EA420FDE69B96:0 | ||
249 | CAMELLIA-128-CFB:2B7E151628AED2A6ABF7158809CF4F3C:9C2157A664626D1DEF9EA420FDE69B96:F69F2445DF4F9B17AD2B417BE66C3710:742A25F0542340C7BAEF24CA8482BB09:0 | ||
250 | |||
251 | # CFB128-CAMELLIA192.Encrypt | ||
252 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:1 | ||
253 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:C832BB9780677DAA82D9B6860DCD565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:86F8491627906D780C7A6D46EA331F98:1 | ||
254 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:86F8491627906D780C7A6D46EA331F98:30C81C46A35CE411E5FBC1191A0A52EF:69511CCE594CF710CB98BB63D7221F01:1 | ||
255 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:69511CCE594CF710CB98BB63D7221F01:F69F2445DF4F9B17AD2B417BE66C3710:D5B5378A3ABED55803F25565D8907B84:1 | ||
256 | |||
257 | # CFB128-CAMELLIA192.Decrypt | ||
258 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:0 | ||
259 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:C832BB9780677DAA82D9B6860DCD565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:86F8491627906D780C7A6D46EA331F98:0 | ||
260 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:86F8491627906D780C7A6D46EA331F98:30C81C46A35CE411E5FBC1191A0A52EF:69511CCE594CF710CB98BB63D7221F01:0 | ||
261 | CAMELLIA-192-CFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:69511CCE594CF710CB98BB63D7221F01:F69F2445DF4F9B17AD2B417BE66C3710:D5B5378A3ABED55803F25565D8907B84:0 | ||
262 | |||
263 | # CFB128-CAMELLIA256.Encrypt | ||
264 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:1 | ||
265 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:CF6107BB0CEA7D7FB1BD31F5E7B06C93:AE2D8A571E03AC9C9EB76FAC45AF8E51:89BEDB4CCDD864EA11BA4CBE849B5E2B:1 | ||
266 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:89BEDB4CCDD864EA11BA4CBE849B5E2B:30C81C46A35CE411E5FBC1191A0A52EF:555FC3F34BDD2D54C62D9E3BF338C1C4:1 | ||
267 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:555FC3F34BDD2D54C62D9E3BF338C1C4:F69F2445DF4F9B17AD2B417BE66C3710:5953ADCE14DB8C7F39F1BD39F359BFFA:1 | ||
268 | |||
269 | # CFB128-CAMELLIA256.Decrypt | ||
270 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:0 | ||
271 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:CF6107BB0CEA7D7FB1BD31F5E7B06C93:AE2D8A571E03AC9C9EB76FAC45AF8E51:89BEDB4CCDD864EA11BA4CBE849B5E2B:0 | ||
272 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:89BEDB4CCDD864EA11BA4CBE849B5E2B:30C81C46A35CE411E5FBC1191A0A52EF:555FC3F34BDD2D54C62D9E3BF338C1C4:0 | ||
273 | CAMELLIA-256-CFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:555FC3F34BDD2D54C62D9E3BF338C1C4:F69F2445DF4F9B17AD2B417BE66C3710:5953ADCE14DB8C7F39F1BD39F359BFFA:0 | ||
274 | |||
275 | # For all OFB encrypts and decrypts, the transformed sequence is | ||
276 | # CAMELLIA-bits-OFB:key:IV/output':plaintext:ciphertext:encdec | ||
277 | # OFB-CAMELLIA128.Encrypt | ||
278 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:1 | ||
279 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:50FE67CC996D32B6DA0937E99BAFEC60:AE2D8A571E03AC9C9EB76FAC45AF8E51:25623DB569CA51E01482649977E28D84:1 | ||
280 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:D9A4DADA0892239F6B8B3D7680E15674:30C81C46A35CE411E5FBC1191A0A52EF:C776634A60729DC657D12B9FCA801E98:1 | ||
281 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:A78819583F0308E7A6BF36B1386ABF23:F69F2445DF4F9B17AD2B417BE66C3710:D776379BE0E50825E681DA1A4C980E8E:1 | ||
282 | |||
283 | # OFB-CAMELLIA128.Decrypt | ||
284 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:14F7646187817EB586599146B82BD719:0 | ||
285 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:50FE67CC996D32B6DA0937E99BAFEC60:AE2D8A571E03AC9C9EB76FAC45AF8E51:25623DB569CA51E01482649977E28D84:0 | ||
286 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:D9A4DADA0892239F6B8B3D7680E15674:30C81C46A35CE411E5FBC1191A0A52EF:C776634A60729DC657D12B9FCA801E98:0 | ||
287 | CAMELLIA-128-OFB:2B7E151628AED2A6ABF7158809CF4F3C:A78819583F0308E7A6BF36B1386ABF23:F69F2445DF4F9B17AD2B417BE66C3710:D776379BE0E50825E681DA1A4C980E8E:0 | ||
288 | |||
289 | # OFB-CAMELLIA192.Encrypt | ||
290 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:1 | ||
291 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:A609B38DF3B1133DDDFF2718BA09565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:8ECEB7D0350D72C7F78562AEBDF99339:1 | ||
292 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:52EF01DA52602FE0975F78AC84BF8A50:30C81C46A35CE411E5FBC1191A0A52EF:BDD62DBBB9700846C53B507F544696F0:1 | ||
293 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:BD5286AC63AABD7EB067AC54B553F71D:F69F2445DF4F9B17AD2B417BE66C3710:E28014E046B802F385C4C2E13EAD4A72:1 | ||
294 | |||
295 | # OFB-CAMELLIA192.Decrypt | ||
296 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:C832BB9780677DAA82D9B6860DCD565E:0 | ||
297 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:A609B38DF3B1133DDDFF2718BA09565E:AE2D8A571E03AC9C9EB76FAC45AF8E51:8ECEB7D0350D72C7F78562AEBDF99339:0 | ||
298 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:52EF01DA52602FE0975F78AC84BF8A50:30C81C46A35CE411E5FBC1191A0A52EF:BDD62DBBB9700846C53B507F544696F0:0 | ||
299 | CAMELLIA-192-OFB:8E73B0F7DA0E6452C810F32B809079E562F8EAD2522C6B7B:BD5286AC63AABD7EB067AC54B553F71D:F69F2445DF4F9B17AD2B417BE66C3710:E28014E046B802F385C4C2E13EAD4A72:0 | ||
300 | |||
301 | # OFB-CAMELLIA256.Encrypt | ||
302 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:1 | ||
303 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:B7BF3A5DF43989DD97F0FA97EBCE2F4A:AE2D8A571E03AC9C9EB76FAC45AF8E51:127AD97E8E3994E4820027D7BA109368:1 | ||
304 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E1C656305ED1A7A6563805746FE03EDC:30C81C46A35CE411E5FBC1191A0A52EF:6BFF6265A6A6B7A535BC65A80B17214E:1 | ||
305 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:41635BE625B48AFC1666DD42A09D96E7:F69F2445DF4F9B17AD2B417BE66C3710:0A4A0404E26AA78A27CB271E8BF3CF20:1 | ||
306 | |||
307 | # OFB-CAMELLIA256.Decrypt | ||
308 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:000102030405060708090A0B0C0D0E0F:6BC1BEE22E409F96E93D7E117393172A:CF6107BB0CEA7D7FB1BD31F5E7B06C93:0 | ||
309 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:B7BF3A5DF43989DD97F0FA97EBCE2F4A:AE2D8A571E03AC9C9EB76FAC45AF8E51:127AD97E8E3994E4820027D7BA109368:0 | ||
310 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:E1C656305ED1A7A6563805746FE03EDC:30C81C46A35CE411E5FBC1191A0A52EF:6BFF6265A6A6B7A535BC65A80B17214E:0 | ||
311 | CAMELLIA-256-OFB:603DEB1015CA71BE2B73AEF0857D77811F352C073B6108D72D9810A30914DFF4:41635BE625B48AFC1666DD42A09D96E7:F69F2445DF4F9B17AD2B417BE66C3710:0A4A0404E26AA78A27CB271E8BF3CF20:0 | ||
312 | |||
313 | # SEED test vectors from RFC4269 | ||
314 | SEED-ECB:00000000000000000000000000000000::000102030405060708090A0B0C0D0E0F:5EBAC6E0054E166819AFF1CC6D346CDB:0 | ||
315 | SEED-ECB:000102030405060708090A0B0C0D0E0F::00000000000000000000000000000000:C11F22F20140505084483597E4370F43:0 | ||
316 | SEED-ECB:4706480851E61BE85D74BFB3FD956185::83A2F8A288641FB9A4E9A5CC2F131C7D:EE54D13EBCAE706D226BC3142CD40D4A:0 | ||
317 | SEED-ECB:28DBC3BC49FFD87DCFA509B11D422BE7::B41E6BE2EBA84A148E2EED84593C5EC7:9B9B7BFCD1813CB95D0B3618F40F5122:0 | ||
318 | SEED-ECB:00000000000000000000000000000000::000102030405060708090A0B0C0D0E0F:5EBAC6E0054E166819AFF1CC6D346CDB:1 | ||
319 | SEED-ECB:000102030405060708090A0B0C0D0E0F::00000000000000000000000000000000:C11F22F20140505084483597E4370F43:1 | ||
320 | SEED-ECB:4706480851E61BE85D74BFB3FD956185::83A2F8A288641FB9A4E9A5CC2F131C7D:EE54D13EBCAE706D226BC3142CD40D4A:1 | ||
321 | SEED-ECB:28DBC3BC49FFD87DCFA509B11D422BE7::B41E6BE2EBA84A148E2EED84593C5EC7:9B9B7BFCD1813CB95D0B3618F40F5122:1 | ||