diff options
| author | markus <> | 2002-09-10 16:31:57 +0000 |
|---|---|---|
| committer | markus <> | 2002-09-10 16:31:57 +0000 |
| commit | 7d038e9d4d83e7c7120e78418e108df70b9025d6 (patch) | |
| tree | baf775b286ff801a89f746b1938a3c700bba6822 /src | |
| parent | 3bd21dd4c3a3e3106321a5f6b3641ab9f18a6e3b (diff) | |
| download | openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.gz openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.tar.bz2 openbsd-7d038e9d4d83e7c7120e78418e108df70b9025d6.zip | |
merge openssl-0.9.7-beta3, tested on vax by miod@
Diffstat (limited to 'src')
354 files changed, 9951 insertions, 4344 deletions
diff --git a/src/lib/libcrypto/Makefile.ssl b/src/lib/libcrypto/Makefile.ssl index 0f036167f0..2489b614c6 100644 --- a/src/lib/libcrypto/Makefile.ssl +++ b/src/lib/libcrypto/Makefile.ssl | |||
| @@ -136,12 +136,12 @@ lint: | |||
| 136 | 136 | ||
| 137 | depend: | 137 | depend: |
| 138 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist | 138 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist |
| 139 | $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) | 139 | $(MAKEDEPEND) $(CFLAG) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi |
| 141 | @for i in $(SDIRS) ;\ | 141 | @for i in $(SDIRS) ;\ |
| 142 | do \ | 142 | do \ |
| 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ | 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ |
| 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \ | 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' PERL='${PERL}' depend ); \ |
| 145 | done; | 145 | done; |
| 146 | 146 | ||
| 147 | clean: | 147 | clean: |
| @@ -180,7 +180,7 @@ cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h | |||
| 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c | 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c |
| 183 | ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c | 183 | ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c |
| 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
| 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h | 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h |
diff --git a/src/lib/libcrypto/aes/Makefile.ssl b/src/lib/libcrypto/aes/Makefile.ssl index aa16bbee2a..9358802a2e 100644 --- a/src/lib/libcrypto/aes/Makefile.ssl +++ b/src/lib/libcrypto/aes/Makefile.ssl | |||
| @@ -75,7 +75,7 @@ lint: | |||
| 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 76 | 76 | ||
| 77 | depend: | 77 | depend: |
| 78 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 78 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 79 | 79 | ||
| 80 | dclean: | 80 | dclean: |
| 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/aes/aes_locl.h b/src/lib/libcrypto/aes/aes_locl.h index 541d1d6e84..18fc2d0747 100644 --- a/src/lib/libcrypto/aes/aes_locl.h +++ b/src/lib/libcrypto/aes/aes_locl.h | |||
| @@ -60,10 +60,7 @@ | |||
| 60 | 60 | ||
| 61 | #include <stdio.h> | 61 | #include <stdio.h> |
| 62 | #include <stdlib.h> | 62 | #include <stdlib.h> |
| 63 | |||
| 64 | #if defined(__STDC__) || defined(OPENSSL_SYS_VMS) || defined(M_XENIX) || defined(OPENSSL_SYS_MSDOS) | ||
| 65 | #include <string.h> | 63 | #include <string.h> |
| 66 | #endif | ||
| 67 | 64 | ||
| 68 | #ifdef _MSC_VER | 65 | #ifdef _MSC_VER |
| 69 | # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) | 66 | # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) |
diff --git a/src/lib/libcrypto/asn1/Makefile.ssl b/src/lib/libcrypto/asn1/Makefile.ssl index 71397df5c8..b5a186c904 100644 --- a/src/lib/libcrypto/asn1/Makefile.ssl +++ b/src/lib/libcrypto/asn1/Makefile.ssl | |||
| @@ -98,7 +98,7 @@ lint: | |||
| 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 99 | 99 | ||
| 100 | depend: | 100 | depend: |
| 101 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 101 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 102 | 102 | ||
| 103 | dclean: | 103 | dclean: |
| 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -144,18 +144,26 @@ a_d2i_fp.o: ../../include/openssl/opensslconf.h | |||
| 144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | 146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c |
| 147 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h | 147 | a_digest.o: ../../e_os.h ../../include/openssl/aes.h |
| 148 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 148 | a_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 149 | a_digest.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 150 | a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 150 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 151 | a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 151 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 152 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 152 | a_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 153 | a_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 154 | a_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 155 | a_digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 156 | a_digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 157 | a_digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 153 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 158 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 154 | a_digest.o: ../../include/openssl/opensslconf.h | 159 | a_digest.o: ../../include/openssl/opensslconf.h |
| 155 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 160 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 156 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 161 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 162 | a_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 163 | a_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 157 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 164 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 158 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 165 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 166 | a_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 159 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 167 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 160 | a_digest.o: ../cryptlib.h a_digest.c | 168 | a_digest.o: ../cryptlib.h a_digest.c |
| 161 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 169 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| @@ -257,30 +265,46 @@ a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 257 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 265 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 258 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 266 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 259 | a_set.o: ../cryptlib.h a_set.c | 267 | a_set.o: ../cryptlib.h a_set.c |
| 260 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 268 | a_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 269 | a_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 261 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 270 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 262 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 271 | a_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 263 | a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 272 | a_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 264 | a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 273 | a_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 265 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 274 | a_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 275 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 276 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 277 | a_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 278 | a_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 266 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 279 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 267 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 280 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 268 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 281 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 282 | a_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 283 | a_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 269 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 284 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 270 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 285 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 286 | a_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 271 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 287 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 272 | a_sign.o: ../cryptlib.h a_sign.c | 288 | a_sign.o: ../cryptlib.h a_sign.c |
| 273 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 289 | a_strex.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 290 | a_strex.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 274 | a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 291 | a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 275 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 292 | a_strex.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 276 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 293 | a_strex.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 277 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 294 | a_strex.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 295 | a_strex.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 296 | a_strex.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 297 | a_strex.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 298 | a_strex.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 278 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 299 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 279 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 300 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 280 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 301 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 302 | a_strex.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 303 | a_strex.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 281 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 304 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 282 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 305 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 283 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 306 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 307 | a_strex.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 284 | a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h | 308 | a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h |
| 285 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | 309 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h |
| 286 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 310 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| @@ -325,18 +349,26 @@ a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 325 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 349 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 326 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 350 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 327 | a_utf8.o: ../cryptlib.h a_utf8.c | 351 | a_utf8.o: ../cryptlib.h a_utf8.c |
| 328 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h | 352 | a_verify.o: ../../e_os.h ../../include/openssl/aes.h |
| 329 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 353 | a_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 330 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 354 | a_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 331 | a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 355 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 332 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 356 | a_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 333 | a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 357 | a_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 358 | a_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 359 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 360 | a_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 361 | a_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 362 | a_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 334 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 363 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 335 | a_verify.o: ../../include/openssl/opensslconf.h | 364 | a_verify.o: ../../include/openssl/opensslconf.h |
| 336 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 365 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 337 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 366 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 367 | a_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 368 | a_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 338 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 369 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 339 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 370 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 371 | a_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 340 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 372 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 341 | a_verify.o: ../cryptlib.h a_verify.c | 373 | a_verify.o: ../cryptlib.h a_verify.c |
| 342 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 374 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| @@ -347,10 +379,11 @@ asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 347 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 379 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 348 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | 380 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c |
| 349 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 381 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
| 350 | asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 382 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 351 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 383 | asn1_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 352 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 384 | asn1_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 353 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 385 | asn1_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 386 | asn1_lib.o: ../../include/openssl/opensslconf.h | ||
| 354 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 387 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 355 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 388 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 356 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | 389 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c |
| @@ -363,19 +396,27 @@ asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | |||
| 363 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 396 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 364 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 397 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 365 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | 398 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c |
| 366 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | 399 | asn_moid.o: ../../e_os.h ../../include/openssl/aes.h |
| 367 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 400 | asn_moid.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 368 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 401 | asn_moid.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 369 | asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 402 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 370 | asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 403 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 371 | asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 404 | asn_moid.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 372 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 405 | asn_moid.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 406 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 407 | asn_moid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 408 | asn_moid.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 409 | asn_moid.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 410 | asn_moid.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 373 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 411 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 374 | asn_moid.o: ../../include/openssl/opensslconf.h | 412 | asn_moid.o: ../../include/openssl/opensslconf.h |
| 375 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 413 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 376 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 414 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 415 | asn_moid.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 416 | asn_moid.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 377 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 417 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 378 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 418 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 419 | asn_moid.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 379 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 420 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 380 | asn_moid.o: ../cryptlib.h asn_moid.c | 421 | asn_moid.o: ../cryptlib.h asn_moid.c |
| 381 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | 422 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -386,28 +427,44 @@ asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 386 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 427 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 387 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 428 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 388 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | 429 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c |
| 389 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 430 | d2i_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 431 | d2i_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 390 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 432 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 391 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 433 | d2i_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 392 | d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 434 | d2i_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 393 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 435 | d2i_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 394 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 436 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 437 | d2i_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 438 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 439 | d2i_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 440 | d2i_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 395 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 441 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 396 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 442 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 443 | d2i_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 444 | d2i_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 397 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 445 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 398 | d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 446 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 399 | d2i_pr.o: ../cryptlib.h d2i_pr.c | 447 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 400 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 448 | d2i_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pr.c |
| 449 | d2i_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 450 | d2i_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 401 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 451 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 402 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 452 | d2i_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 403 | d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 453 | d2i_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 404 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 454 | d2i_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 405 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 455 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 456 | d2i_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 457 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 458 | d2i_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 459 | d2i_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 406 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 460 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 407 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 461 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 462 | d2i_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 463 | d2i_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 408 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 464 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 409 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 465 | d2i_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 410 | d2i_pu.o: ../cryptlib.h d2i_pu.c | 466 | d2i_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 467 | d2i_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pu.c | ||
| 411 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 468 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
| 412 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 469 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 413 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 470 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| @@ -441,122 +498,194 @@ f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 441 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 498 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 442 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 499 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 443 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | 500 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c |
| 444 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 501 | i2d_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 502 | i2d_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 445 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 503 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 446 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 504 | i2d_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 447 | i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 505 | i2d_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 448 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 506 | i2d_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 449 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 507 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 508 | i2d_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 509 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 510 | i2d_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 511 | i2d_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 450 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 512 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 451 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 513 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 514 | i2d_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 515 | i2d_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 452 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 516 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 453 | i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 517 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 454 | i2d_pr.o: ../cryptlib.h i2d_pr.c | 518 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 455 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 519 | i2d_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pr.c |
| 520 | i2d_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 521 | i2d_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 456 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 522 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 457 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 523 | i2d_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 458 | i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 524 | i2d_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 459 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 525 | i2d_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 460 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 526 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 527 | i2d_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 528 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 529 | i2d_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 530 | i2d_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 461 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 531 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 462 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 532 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 533 | i2d_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 534 | i2d_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 463 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 535 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 464 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 536 | i2d_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 465 | i2d_pu.o: ../cryptlib.h i2d_pu.c | 537 | i2d_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 466 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 538 | i2d_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pu.c |
| 539 | n_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 467 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | 540 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h |
| 468 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 541 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 469 | n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 542 | n_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 543 | n_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 544 | n_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 470 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 545 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 471 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 546 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 472 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 547 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 473 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 548 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 474 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 549 | n_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 475 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 550 | n_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 476 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 551 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 477 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 552 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 478 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 553 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 479 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c | 554 | n_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 480 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 555 | n_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 481 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 556 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 482 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 557 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 483 | nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 558 | n_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 484 | nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 559 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 485 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 560 | n_pkey.o: ../cryptlib.h n_pkey.c |
| 561 | nsseq.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 562 | nsseq.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 563 | nsseq.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 564 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 565 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 566 | nsseq.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 567 | nsseq.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 568 | nsseq.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 569 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 570 | nsseq.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 571 | nsseq.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 486 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 572 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 487 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 573 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 488 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 574 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 575 | nsseq.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 576 | nsseq.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 489 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 577 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 490 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 578 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 579 | nsseq.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 491 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | 580 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c |
| 492 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | 581 | p5_pbe.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 493 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 582 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 494 | p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 583 | p5_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 495 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 584 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 585 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 586 | p5_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 496 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 587 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 497 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 588 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 498 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 589 | p5_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 499 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 590 | p5_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 500 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 591 | p5_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 501 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 592 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 502 | p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 593 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 503 | p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 594 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 504 | p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 595 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 505 | p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c | 596 | p5_pbe.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 506 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | 597 | p5_pbe.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 507 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 598 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 599 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 600 | p5_pbe.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 601 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 602 | p5_pbe.o: ../cryptlib.h p5_pbe.c | ||
| 603 | p5_pbev2.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 604 | p5_pbev2.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 605 | p5_pbev2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 508 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 606 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 509 | p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 607 | p5_pbev2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 510 | p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 608 | p5_pbev2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 511 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 609 | p5_pbev2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 512 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 610 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 611 | p5_pbev2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 612 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 613 | p5_pbev2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 614 | p5_pbev2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 513 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 615 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 514 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 616 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 515 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 617 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 618 | p5_pbev2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 619 | p5_pbev2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 516 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 620 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 517 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 621 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 518 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 622 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 623 | p5_pbev2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 519 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | 624 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c |
| 520 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 625 | p8_pkey.o: ../../e_os.h ../../include/openssl/aes.h |
| 521 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 626 | p8_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 627 | p8_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 522 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 628 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 523 | p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 629 | p8_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 524 | p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 630 | p8_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 525 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 631 | p8_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 526 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 632 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 633 | p8_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 634 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 635 | p8_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 636 | p8_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 527 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 637 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 528 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 638 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 529 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 639 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 640 | p8_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 641 | p8_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 530 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 642 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 531 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 643 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 644 | p8_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 532 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 645 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 533 | p8_pkey.o: ../cryptlib.h p8_pkey.c | 646 | p8_pkey.o: ../cryptlib.h p8_pkey.c |
| 534 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | 647 | t_bitst.o: ../../e_os.h ../../include/openssl/aes.h |
| 535 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 648 | t_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 536 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 649 | t_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 537 | t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 650 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 538 | t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 651 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 539 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 652 | t_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 540 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 653 | t_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 654 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 655 | t_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 656 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 657 | t_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 658 | t_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 541 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 659 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 542 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 660 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 543 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 661 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 662 | t_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 663 | t_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 544 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 664 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 545 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 665 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 666 | t_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 546 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 667 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 547 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | 668 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c |
| 548 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 669 | t_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 670 | t_crl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 549 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 671 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 550 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 672 | t_crl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 551 | t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 673 | t_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 552 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 674 | t_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 553 | t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 675 | t_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 676 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 677 | t_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 678 | t_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 679 | t_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 554 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 680 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 555 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 681 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 556 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 682 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 683 | t_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 684 | t_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 557 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 685 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 558 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 686 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 559 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 687 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 688 | t_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 560 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 689 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 561 | t_crl.o: ../cryptlib.h t_crl.c | 690 | t_crl.o: ../cryptlib.h t_crl.c |
| 562 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 691 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| @@ -568,59 +697,91 @@ t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 568 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | 697 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h |
| 569 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 698 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 570 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | 699 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c |
| 571 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 700 | t_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 701 | t_req.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 572 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 702 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 573 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 703 | t_req.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 574 | t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 704 | t_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 575 | t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 705 | t_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 576 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 706 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 707 | t_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 708 | t_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 709 | t_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 710 | t_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 577 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 711 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 578 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 712 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 579 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 713 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 714 | t_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 715 | t_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 580 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 716 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 581 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 717 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 582 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 718 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 719 | t_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 583 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 720 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 584 | t_req.o: ../cryptlib.h t_req.c | 721 | t_req.o: ../cryptlib.h t_req.c |
| 585 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 722 | t_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 723 | t_spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 586 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 724 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 587 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 725 | t_spki.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 588 | t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 726 | t_spki.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 589 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 727 | t_spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 590 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 728 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 729 | t_spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 730 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 731 | t_spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 732 | t_spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 591 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 733 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 592 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 734 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 593 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 735 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 736 | t_spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 737 | t_spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 594 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 738 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 595 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 739 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 740 | t_spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 596 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 741 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 597 | t_spki.o: ../cryptlib.h t_spki.c | 742 | t_spki.o: ../cryptlib.h t_spki.c |
| 598 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 743 | t_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 744 | t_x509.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 599 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 745 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 600 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 746 | t_x509.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 601 | t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 747 | t_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 602 | t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 748 | t_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 603 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 749 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 750 | t_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 751 | t_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 752 | t_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 753 | t_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 604 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 754 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 605 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 755 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 606 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 756 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 757 | t_x509.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 758 | t_x509.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 607 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 759 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 608 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 760 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 609 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 761 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 762 | t_x509.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 610 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 763 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 611 | t_x509.o: ../cryptlib.h t_x509.c | 764 | t_x509.o: ../cryptlib.h t_x509.c |
| 612 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | 765 | t_x509a.o: ../../e_os.h ../../include/openssl/aes.h |
| 613 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 766 | t_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 614 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 767 | t_x509a.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 615 | t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 768 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 616 | t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 769 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 617 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 770 | t_x509a.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 771 | t_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 772 | t_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 773 | t_x509a.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 774 | t_x509a.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 775 | t_x509a.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 618 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 776 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 619 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 777 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 620 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 778 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 779 | t_x509a.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 780 | t_x509a.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 621 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 781 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 622 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 782 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 623 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 783 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 784 | t_x509a.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 624 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | 785 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c |
| 625 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 786 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 626 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 787 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| @@ -672,31 +833,47 @@ tasn_utl.o: ../../include/openssl/opensslconf.h | |||
| 672 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 833 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 673 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 834 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 674 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | 835 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c |
| 675 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 836 | x_algor.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 676 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 837 | x_algor.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 677 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 838 | x_algor.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 678 | x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 839 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 679 | x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 840 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 680 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 841 | x_algor.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 842 | x_algor.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 843 | x_algor.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 844 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 845 | x_algor.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 846 | x_algor.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 681 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 847 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 682 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 848 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 683 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 849 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 850 | x_algor.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 851 | x_algor.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 684 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 852 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 685 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 853 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 854 | x_algor.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 686 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 855 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 687 | x_algor.o: x_algor.c | 856 | x_algor.o: x_algor.c |
| 688 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | 857 | x_attrib.o: ../../e_os.h ../../include/openssl/aes.h |
| 689 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 858 | x_attrib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 859 | x_attrib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 690 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 860 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 691 | x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 861 | x_attrib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 692 | x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 862 | x_attrib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 693 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 863 | x_attrib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 694 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 864 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 865 | x_attrib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 866 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 867 | x_attrib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 868 | x_attrib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 695 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 869 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 696 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 870 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 697 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 871 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 872 | x_attrib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 873 | x_attrib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 698 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 874 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 699 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 875 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 876 | x_attrib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 700 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 877 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 701 | x_attrib.o: ../cryptlib.h x_attrib.c | 878 | x_attrib.o: ../cryptlib.h x_attrib.c |
| 702 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | 879 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -708,44 +885,67 @@ x_bignum.o: ../../include/openssl/opensslconf.h | |||
| 708 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 885 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 709 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 886 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 710 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | 887 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c |
| 711 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | 888 | x_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 712 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 889 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 713 | x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 890 | x_crl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 714 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 891 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 892 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 893 | x_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 715 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 894 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 716 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 895 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 717 | x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 896 | x_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 718 | x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 897 | x_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 719 | x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 898 | x_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 720 | x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 899 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 721 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 900 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 722 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 901 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 723 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 902 | x_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 724 | x_crl.o: ../cryptlib.h x_crl.c | 903 | x_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 725 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 904 | x_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 726 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 905 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 727 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 906 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 728 | x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 907 | x_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 729 | x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 908 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c |
| 730 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 909 | x_exten.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 910 | x_exten.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 911 | x_exten.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 912 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 913 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 914 | x_exten.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 915 | x_exten.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 916 | x_exten.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 917 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 918 | x_exten.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 919 | x_exten.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 731 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 920 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 732 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 921 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 733 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 922 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 923 | x_exten.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 924 | x_exten.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 734 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 925 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 735 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 926 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 927 | x_exten.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 736 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 928 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 737 | x_exten.o: x_exten.c | 929 | x_exten.o: x_exten.c |
| 738 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 930 | x_info.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 931 | x_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 739 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 932 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 740 | x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 933 | x_info.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 741 | x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 934 | x_info.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 742 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 935 | x_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 743 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 936 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 937 | x_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 938 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 939 | x_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 940 | x_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 744 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 941 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 745 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 942 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 746 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 943 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 944 | x_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 945 | x_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 747 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 946 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 748 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 947 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 948 | x_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 749 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 949 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 750 | x_info.o: ../cryptlib.h x_info.c | 950 | x_info.o: ../cryptlib.h x_info.c |
| 751 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | 951 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -757,130 +957,195 @@ x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 757 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 957 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 758 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 958 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 759 | x_long.o: ../cryptlib.h x_long.c | 959 | x_long.o: ../cryptlib.h x_long.c |
| 760 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h | 960 | x_name.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 761 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 961 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 762 | x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 962 | x_name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 763 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 963 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 964 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 965 | x_name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 764 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 966 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 765 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 967 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 766 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 968 | x_name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 767 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 969 | x_name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 768 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 970 | x_name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 769 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 971 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 770 | x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 972 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 771 | x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 973 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 772 | x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 974 | x_name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 773 | x_name.o: ../cryptlib.h x_name.c | 975 | x_name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 774 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 976 | x_name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 977 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 978 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 979 | x_name.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 980 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c | ||
| 981 | x_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 775 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 982 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 776 | x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 983 | x_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 777 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 984 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 985 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 986 | x_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 778 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 987 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 779 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 988 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 780 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 989 | x_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 781 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 990 | x_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 782 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 991 | x_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 783 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 992 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 784 | x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 993 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 785 | x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 994 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 786 | x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 995 | x_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 787 | x_pkey.o: ../cryptlib.h x_pkey.c | 996 | x_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 788 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | 997 | x_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 789 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 998 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 999 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1000 | x_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1001 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | ||
| 1002 | x_pubkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1003 | x_pubkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1004 | x_pubkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 790 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1005 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 791 | x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1006 | x_pubkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 792 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1007 | x_pubkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 793 | x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1008 | x_pubkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 794 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1009 | x_pubkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1010 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1011 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1012 | x_pubkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1013 | x_pubkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 795 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1014 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 796 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1015 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 797 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1016 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1017 | x_pubkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1018 | x_pubkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 798 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1019 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 799 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1020 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1021 | x_pubkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 800 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1022 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 801 | x_pubkey.o: ../cryptlib.h x_pubkey.c | 1023 | x_pubkey.o: ../cryptlib.h x_pubkey.c |
| 802 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | 1024 | x_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 803 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1025 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 804 | x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1026 | x_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 805 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1027 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1028 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1029 | x_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 806 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1030 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 807 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1031 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 808 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1032 | x_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 809 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1033 | x_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 810 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1034 | x_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 811 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1035 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 812 | x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1036 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 813 | x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1037 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 814 | x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1038 | x_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 815 | x_req.o: ../cryptlib.h x_req.c | 1039 | x_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 816 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | 1040 | x_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1041 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1042 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1043 | x_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1044 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | ||
| 1045 | x_sig.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 817 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1046 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 818 | x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1047 | x_sig.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 819 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1048 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1049 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1050 | x_sig.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 820 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1051 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 821 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1052 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 822 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1053 | x_sig.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 823 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1054 | x_sig.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 824 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1055 | x_sig.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 825 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1056 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 826 | x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1057 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 827 | x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1058 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 828 | x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1059 | x_sig.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 829 | x_sig.o: ../cryptlib.h x_sig.c | 1060 | x_sig.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 830 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | 1061 | x_sig.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1062 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1063 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1064 | x_sig.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1065 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | ||
| 1066 | x_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 831 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1067 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 832 | x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1068 | x_spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 833 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1069 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1070 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1071 | x_spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 834 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1072 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 835 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1073 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 836 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1074 | x_spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 837 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1075 | x_spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 838 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1076 | x_spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 839 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1077 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 840 | x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1078 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 841 | x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1079 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 842 | x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1080 | x_spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 843 | x_spki.o: ../cryptlib.h x_spki.c | 1081 | x_spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 844 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | 1082 | x_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1083 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1084 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1085 | x_spki.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1086 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | ||
| 1087 | x_val.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 845 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1088 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 846 | x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1089 | x_val.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 847 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1090 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1091 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1092 | x_val.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 848 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1093 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 849 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1094 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 850 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1095 | x_val.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 851 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1096 | x_val.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 852 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1097 | x_val.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 853 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1098 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 854 | x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1099 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 855 | x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1100 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 856 | x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1101 | x_val.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 857 | x_val.o: ../cryptlib.h x_val.c | 1102 | x_val.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 858 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | 1103 | x_val.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1104 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1105 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1106 | x_val.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1107 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | ||
| 1108 | x_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 859 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1109 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 860 | x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1110 | x_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 1111 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 861 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 1112 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 1113 | x_x509.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 862 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 1114 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 863 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 1115 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 864 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 1116 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 865 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 1117 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 866 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 1118 | x_x509.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 867 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 1119 | x_x509.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 868 | x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 1120 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 869 | x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 1121 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 870 | x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 1122 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 871 | x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 1123 | x_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 872 | x_x509.o: ../cryptlib.h x_x509.c | 1124 | x_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 873 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | 1125 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 874 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1126 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1127 | x_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1128 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1129 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | ||
| 1130 | x_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1131 | x_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1132 | x_x509a.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 875 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1133 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 876 | x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1134 | x_x509a.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 877 | x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1135 | x_x509a.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 878 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1136 | x_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 879 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1137 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1138 | x_x509a.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1139 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1140 | x_x509a.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1141 | x_x509a.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 880 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1142 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 881 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1143 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 882 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1144 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1145 | x_x509a.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1146 | x_x509a.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 883 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1147 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 884 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1148 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1149 | x_x509a.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 885 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1150 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 886 | x_x509a.o: ../cryptlib.h x_x509a.c | 1151 | x_x509a.o: ../cryptlib.h x_x509a.c |
diff --git a/src/lib/libcrypto/asn1/a_strex.c b/src/lib/libcrypto/asn1/a_strex.c index 128aa7e772..8dab29dca1 100644 --- a/src/lib/libcrypto/asn1/a_strex.c +++ b/src/lib/libcrypto/asn1/a_strex.c | |||
| @@ -77,8 +77,8 @@ | |||
| 77 | /* Three IO functions for sending data to memory, a BIO and | 77 | /* Three IO functions for sending data to memory, a BIO and |
| 78 | * and a FILE pointer. | 78 | * and a FILE pointer. |
| 79 | */ | 79 | */ |
| 80 | 80 | #if 0 /* never used */ | |
| 81 | int send_mem_chars(void *arg, const void *buf, int len) | 81 | static int send_mem_chars(void *arg, const void *buf, int len) |
| 82 | { | 82 | { |
| 83 | unsigned char **out = arg; | 83 | unsigned char **out = arg; |
| 84 | if(!out) return 1; | 84 | if(!out) return 1; |
| @@ -86,15 +86,16 @@ int send_mem_chars(void *arg, const void *buf, int len) | |||
| 86 | *out += len; | 86 | *out += len; |
| 87 | return 1; | 87 | return 1; |
| 88 | } | 88 | } |
| 89 | #endif | ||
| 89 | 90 | ||
| 90 | int send_bio_chars(void *arg, const void *buf, int len) | 91 | static int send_bio_chars(void *arg, const void *buf, int len) |
| 91 | { | 92 | { |
| 92 | if(!arg) return 1; | 93 | if(!arg) return 1; |
| 93 | if(BIO_write(arg, buf, len) != len) return 0; | 94 | if(BIO_write(arg, buf, len) != len) return 0; |
| 94 | return 1; | 95 | return 1; |
| 95 | } | 96 | } |
| 96 | 97 | ||
| 97 | int send_fp_chars(void *arg, const void *buf, int len) | 98 | static int send_fp_chars(void *arg, const void *buf, int len) |
| 98 | { | 99 | { |
| 99 | if(!arg) return 1; | 100 | if(!arg) return 1; |
| 100 | if(fwrite(buf, 1, len, arg) != (unsigned int)len) return 0; | 101 | if(fwrite(buf, 1, len, arg) != (unsigned int)len) return 0; |
| @@ -240,7 +241,7 @@ static int do_hex_dump(char_io *io_ch, void *arg, unsigned char *buf, int buflen | |||
| 240 | * #01234 format. | 241 | * #01234 format. |
| 241 | */ | 242 | */ |
| 242 | 243 | ||
| 243 | int do_dump(unsigned long lflags, char_io *io_ch, void *arg, ASN1_STRING *str) | 244 | static int do_dump(unsigned long lflags, char_io *io_ch, void *arg, ASN1_STRING *str) |
| 244 | { | 245 | { |
| 245 | /* Placing the ASN1_STRING in a temp ASN1_TYPE allows | 246 | /* Placing the ASN1_STRING in a temp ASN1_TYPE allows |
| 246 | * the DER encoding to readily obtained | 247 | * the DER encoding to readily obtained |
diff --git a/src/lib/libcrypto/asn1/a_utctm.c b/src/lib/libcrypto/asn1/a_utctm.c index ed2d827db2..dbb4a42c9d 100644 --- a/src/lib/libcrypto/asn1/a_utctm.c +++ b/src/lib/libcrypto/asn1/a_utctm.c | |||
| @@ -222,6 +222,7 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t) | |||
| 222 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | 222 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) |
| 223 | { | 223 | { |
| 224 | struct tm *tm; | 224 | struct tm *tm; |
| 225 | struct tm data; | ||
| 225 | int offset; | 226 | int offset; |
| 226 | int year; | 227 | int year; |
| 227 | 228 | ||
| @@ -238,7 +239,7 @@ int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | |||
| 238 | 239 | ||
| 239 | t -= offset*60; /* FIXME: may overflow in extreme cases */ | 240 | t -= offset*60; /* FIXME: may overflow in extreme cases */ |
| 240 | 241 | ||
| 241 | { struct tm data; tm = OPENSSL_gmtime(&t, &data); } | 242 | tm = OPENSSL_gmtime(&t, &data); |
| 242 | 243 | ||
| 243 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 | 244 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 |
| 244 | year = g2(s->data); | 245 | year = g2(s->data); |
diff --git a/src/lib/libcrypto/asn1/asn1.h b/src/lib/libcrypto/asn1/asn1.h index 0d1713f8dd..dbb30f4f22 100644 --- a/src/lib/libcrypto/asn1/asn1.h +++ b/src/lib/libcrypto/asn1/asn1.h | |||
| @@ -773,6 +773,7 @@ int ASN1_OCTET_STRING_cmp(ASN1_OCTET_STRING *a, ASN1_OCTET_STRING *b); | |||
| 773 | int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, unsigned char *data, int len); | 773 | int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, unsigned char *data, int len); |
| 774 | 774 | ||
| 775 | DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING) | 775 | DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING) |
| 776 | DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING) | ||
| 776 | DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING) | 777 | DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING) |
| 777 | DECLARE_ASN1_FUNCTIONS(ASN1_NULL) | 778 | DECLARE_ASN1_FUNCTIONS(ASN1_NULL) |
| 778 | DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING) | 779 | DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING) |
diff --git a/src/lib/libcrypto/asn1/asn1_lib.c b/src/lib/libcrypto/asn1/asn1_lib.c index f210be9559..0638870ab7 100644 --- a/src/lib/libcrypto/asn1/asn1_lib.c +++ b/src/lib/libcrypto/asn1/asn1_lib.c | |||
| @@ -60,6 +60,7 @@ | |||
| 60 | #include <limits.h> | 60 | #include <limits.h> |
| 61 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
| 62 | #include <openssl/asn1.h> | 62 | #include <openssl/asn1.h> |
| 63 | #include <openssl/asn1_mac.h> | ||
| 63 | 64 | ||
| 64 | static int asn1_get_length(unsigned char **pp,int *inf,long *rl,int max); | 65 | static int asn1_get_length(unsigned char **pp,int *inf,long *rl,int max); |
| 65 | static void asn1_put_length(unsigned char **pp, int length); | 66 | static void asn1_put_length(unsigned char **pp, int length); |
diff --git a/src/lib/libcrypto/asn1/n_pkey.c b/src/lib/libcrypto/asn1/n_pkey.c index 49f80fffd2..9146ee02c9 100644 --- a/src/lib/libcrypto/asn1/n_pkey.c +++ b/src/lib/libcrypto/asn1/n_pkey.c | |||
| @@ -92,6 +92,8 @@ ASN1_BROKEN_SEQUENCE(NETSCAPE_ENCRYPTED_PKEY) = { | |||
| 92 | ASN1_SIMPLE(NETSCAPE_ENCRYPTED_PKEY, enckey, X509_SIG) | 92 | ASN1_SIMPLE(NETSCAPE_ENCRYPTED_PKEY, enckey, X509_SIG) |
| 93 | } ASN1_BROKEN_SEQUENCE_END(NETSCAPE_ENCRYPTED_PKEY) | 93 | } ASN1_BROKEN_SEQUENCE_END(NETSCAPE_ENCRYPTED_PKEY) |
| 94 | 94 | ||
| 95 | DECLARE_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY) | ||
| 96 | DECLARE_ASN1_ENCODE_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY,NETSCAPE_ENCRYPTED_PKEY) | ||
| 95 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY) | 97 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY) |
| 96 | 98 | ||
| 97 | ASN1_SEQUENCE(NETSCAPE_PKEY) = { | 99 | ASN1_SEQUENCE(NETSCAPE_PKEY) = { |
| @@ -100,6 +102,8 @@ ASN1_SEQUENCE(NETSCAPE_PKEY) = { | |||
| 100 | ASN1_SIMPLE(NETSCAPE_PKEY, private_key, ASN1_OCTET_STRING) | 102 | ASN1_SIMPLE(NETSCAPE_PKEY, private_key, ASN1_OCTET_STRING) |
| 101 | } ASN1_SEQUENCE_END(NETSCAPE_PKEY) | 103 | } ASN1_SEQUENCE_END(NETSCAPE_PKEY) |
| 102 | 104 | ||
| 105 | DECLARE_ASN1_FUNCTIONS_const(NETSCAPE_PKEY) | ||
| 106 | DECLARE_ASN1_ENCODE_FUNCTIONS_const(NETSCAPE_PKEY,NETSCAPE_PKEY) | ||
| 103 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_PKEY) | 107 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_PKEY) |
| 104 | 108 | ||
| 105 | static RSA *d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os, | 109 | static RSA *d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os, |
diff --git a/src/lib/libcrypto/asn1/t_pkey.c b/src/lib/libcrypto/asn1/t_pkey.c index 8060115202..2d46914cb1 100644 --- a/src/lib/libcrypto/asn1/t_pkey.c +++ b/src/lib/libcrypto/asn1/t_pkey.c | |||
| @@ -96,10 +96,34 @@ int RSA_print(BIO *bp, const RSA *x, int off) | |||
| 96 | char str[128]; | 96 | char str[128]; |
| 97 | const char *s; | 97 | const char *s; |
| 98 | unsigned char *m=NULL; | 98 | unsigned char *m=NULL; |
| 99 | int i,ret=0; | 99 | int ret=0; |
| 100 | size_t buf_len=0, i; | ||
| 100 | 101 | ||
| 101 | i=RSA_size(x); | 102 | if (x->n) |
| 102 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 103 | buf_len = (size_t)BN_num_bytes(x->n); |
| 104 | if (x->e) | ||
| 105 | if (buf_len < (i = (size_t)BN_num_bytes(x->e))) | ||
| 106 | buf_len = i; | ||
| 107 | if (x->d) | ||
| 108 | if (buf_len < (i = (size_t)BN_num_bytes(x->d))) | ||
| 109 | buf_len = i; | ||
| 110 | if (x->p) | ||
| 111 | if (buf_len < (i = (size_t)BN_num_bytes(x->p))) | ||
| 112 | buf_len = i; | ||
| 113 | if (x->q) | ||
| 114 | if (buf_len < (i = (size_t)BN_num_bytes(x->q))) | ||
| 115 | buf_len = i; | ||
| 116 | if (x->dmp1) | ||
| 117 | if (buf_len < (i = (size_t)BN_num_bytes(x->dmp1))) | ||
| 118 | buf_len = i; | ||
| 119 | if (x->dmq1) | ||
| 120 | if (buf_len < (i = (size_t)BN_num_bytes(x->dmq1))) | ||
| 121 | buf_len = i; | ||
| 122 | if (x->iqmp) | ||
| 123 | if (buf_len < (i = (size_t)BN_num_bytes(x->iqmp))) | ||
| 124 | buf_len = i; | ||
| 125 | |||
| 126 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 103 | if (m == NULL) | 127 | if (m == NULL) |
| 104 | { | 128 | { |
| 105 | RSAerr(RSA_F_RSA_PRINT,ERR_R_MALLOC_FAILURE); | 129 | RSAerr(RSA_F_RSA_PRINT,ERR_R_MALLOC_FAILURE); |
| @@ -161,22 +185,25 @@ int DSA_print(BIO *bp, const DSA *x, int off) | |||
| 161 | { | 185 | { |
| 162 | char str[128]; | 186 | char str[128]; |
| 163 | unsigned char *m=NULL; | 187 | unsigned char *m=NULL; |
| 164 | int i,ret=0; | 188 | int ret=0; |
| 165 | BIGNUM *bn=NULL; | 189 | size_t buf_len=0,i; |
| 166 | 190 | ||
| 167 | if (x->p != NULL) | 191 | if (x->p) |
| 168 | bn=x->p; | 192 | buf_len = (size_t)BN_num_bytes(x->p); |
| 169 | else if (x->priv_key != NULL) | 193 | if (x->q) |
| 170 | bn=x->priv_key; | 194 | if (buf_len < (i = (size_t)BN_num_bytes(x->q))) |
| 171 | else if (x->pub_key != NULL) | 195 | buf_len = i; |
| 172 | bn=x->pub_key; | 196 | if (x->g) |
| 173 | 197 | if (buf_len < (i = (size_t)BN_num_bytes(x->g))) | |
| 174 | /* larger than needed but what the hell :-) */ | 198 | buf_len = i; |
| 175 | if (bn != NULL) | 199 | if (x->priv_key) |
| 176 | i=BN_num_bytes(bn)*2; | 200 | if (buf_len < (i = (size_t)BN_num_bytes(x->priv_key))) |
| 177 | else | 201 | buf_len = i; |
| 178 | i=256; | 202 | if (x->pub_key) |
| 179 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 203 | if (buf_len < (i = (size_t)BN_num_bytes(x->pub_key))) |
| 204 | buf_len = i; | ||
| 205 | |||
| 206 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 180 | if (m == NULL) | 207 | if (m == NULL) |
| 181 | { | 208 | { |
| 182 | DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE); | 209 | DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE); |
| @@ -281,10 +308,15 @@ int DHparams_print_fp(FILE *fp, const DH *x) | |||
| 281 | int DHparams_print(BIO *bp, const DH *x) | 308 | int DHparams_print(BIO *bp, const DH *x) |
| 282 | { | 309 | { |
| 283 | unsigned char *m=NULL; | 310 | unsigned char *m=NULL; |
| 284 | int reason=ERR_R_BUF_LIB,i,ret=0; | 311 | int reason=ERR_R_BUF_LIB,ret=0; |
| 312 | size_t buf_len=0, i; | ||
| 285 | 313 | ||
| 286 | i=BN_num_bytes(x->p); | 314 | if (x->p) |
| 287 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 315 | buf_len = (size_t)BN_num_bytes(x->p); |
| 316 | if (x->g) | ||
| 317 | if (buf_len < (i = (size_t)BN_num_bytes(x->g))) | ||
| 318 | buf_len = i; | ||
| 319 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 288 | if (m == NULL) | 320 | if (m == NULL) |
| 289 | { | 321 | { |
| 290 | reason=ERR_R_MALLOC_FAILURE; | 322 | reason=ERR_R_MALLOC_FAILURE; |
| @@ -334,10 +366,18 @@ int DSAparams_print_fp(FILE *fp, const DSA *x) | |||
| 334 | int DSAparams_print(BIO *bp, const DSA *x) | 366 | int DSAparams_print(BIO *bp, const DSA *x) |
| 335 | { | 367 | { |
| 336 | unsigned char *m=NULL; | 368 | unsigned char *m=NULL; |
| 337 | int reason=ERR_R_BUF_LIB,i,ret=0; | 369 | int reason=ERR_R_BUF_LIB,ret=0; |
| 370 | size_t buf_len=0,i; | ||
| 338 | 371 | ||
| 339 | i=BN_num_bytes(x->p); | 372 | if (x->p) |
| 340 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 373 | buf_len = (size_t)BN_num_bytes(x->p); |
| 374 | if (x->q) | ||
| 375 | if (buf_len < (i = (size_t)BN_num_bytes(x->q))) | ||
| 376 | buf_len = i; | ||
| 377 | if (x->g) | ||
| 378 | if (buf_len < (i = (size_t)BN_num_bytes(x->g))) | ||
| 379 | buf_len = i; | ||
| 380 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 341 | if (m == NULL) | 381 | if (m == NULL) |
| 342 | { | 382 | { |
| 343 | reason=ERR_R_MALLOC_FAILURE; | 383 | reason=ERR_R_MALLOC_FAILURE; |
diff --git a/src/lib/libcrypto/bf/Makefile.ssl b/src/lib/libcrypto/bf/Makefile.ssl index e304d33732..079f7e860c 100644 --- a/src/lib/libcrypto/bf/Makefile.ssl +++ b/src/lib/libcrypto/bf/Makefile.ssl | |||
| @@ -96,7 +96,7 @@ lint: | |||
| 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 97 | 97 | ||
| 98 | depend: | 98 | depend: |
| 99 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 99 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 100 | 100 | ||
| 101 | dclean: | 101 | dclean: |
| 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/bio/Makefile.ssl b/src/lib/libcrypto/bio/Makefile.ssl index e8826ae292..dfcee03448 100644 --- a/src/lib/libcrypto/bio/Makefile.ssl +++ b/src/lib/libcrypto/bio/Makefile.ssl | |||
| @@ -78,7 +78,7 @@ lint: | |||
| 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 79 | 79 | ||
| 80 | depend: | 80 | depend: |
| 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 82 | 82 | ||
| 83 | dclean: | 83 | dclean: |
| 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/bio/b_sock.c b/src/lib/libcrypto/bio/b_sock.c index dcaef68ea7..45bd7c47e8 100644 --- a/src/lib/libcrypto/bio/b_sock.c +++ b/src/lib/libcrypto/bio/b_sock.c | |||
| @@ -484,7 +484,11 @@ int BIO_socket_ioctl(int fd, long type, unsigned long *arg) | |||
| 484 | { | 484 | { |
| 485 | int i; | 485 | int i; |
| 486 | 486 | ||
| 487 | #ifdef __DJGPP__ | ||
| 488 | i=ioctlsocket(fd,type,(char *)arg); | ||
| 489 | #else | ||
| 487 | i=ioctlsocket(fd,type,arg); | 490 | i=ioctlsocket(fd,type,arg); |
| 491 | #endif /* __DJGPP__ */ | ||
| 488 | if (i < 0) | 492 | if (i < 0) |
| 489 | SYSerr(SYS_F_IOCTLSOCKET,get_last_socket_error()); | 493 | SYSerr(SYS_F_IOCTLSOCKET,get_last_socket_error()); |
| 490 | return(i); | 494 | return(i); |
diff --git a/src/lib/libcrypto/bio/bio.h b/src/lib/libcrypto/bio/bio.h index b122c7069d..c5caf253c9 100644 --- a/src/lib/libcrypto/bio/bio.h +++ b/src/lib/libcrypto/bio/bio.h | |||
| @@ -554,7 +554,9 @@ BIO_METHOD *BIO_s_socket(void); | |||
| 554 | BIO_METHOD *BIO_s_connect(void); | 554 | BIO_METHOD *BIO_s_connect(void); |
| 555 | BIO_METHOD *BIO_s_accept(void); | 555 | BIO_METHOD *BIO_s_accept(void); |
| 556 | BIO_METHOD *BIO_s_fd(void); | 556 | BIO_METHOD *BIO_s_fd(void); |
| 557 | #ifndef OPENSSL_SYS_OS2 | ||
| 557 | BIO_METHOD *BIO_s_log(void); | 558 | BIO_METHOD *BIO_s_log(void); |
| 559 | #endif | ||
| 558 | BIO_METHOD *BIO_s_bio(void); | 560 | BIO_METHOD *BIO_s_bio(void); |
| 559 | BIO_METHOD *BIO_s_null(void); | 561 | BIO_METHOD *BIO_s_null(void); |
| 560 | BIO_METHOD *BIO_f_null(void); | 562 | BIO_METHOD *BIO_f_null(void); |
| @@ -647,6 +649,7 @@ void ERR_load_BIO_strings(void); | |||
| 647 | #define BIO_F_CONN_CTRL 127 | 649 | #define BIO_F_CONN_CTRL 127 |
| 648 | #define BIO_F_CONN_STATE 115 | 650 | #define BIO_F_CONN_STATE 115 |
| 649 | #define BIO_F_FILE_CTRL 116 | 651 | #define BIO_F_FILE_CTRL 116 |
| 652 | #define BIO_F_FILE_READ 130 | ||
| 650 | #define BIO_F_LINEBUFFER_CTRL 129 | 653 | #define BIO_F_LINEBUFFER_CTRL 129 |
| 651 | #define BIO_F_MEM_READ 128 | 654 | #define BIO_F_MEM_READ 128 |
| 652 | #define BIO_F_MEM_WRITE 117 | 655 | #define BIO_F_MEM_WRITE 117 |
diff --git a/src/lib/libcrypto/bio/bio_err.c b/src/lib/libcrypto/bio/bio_err.c index 99ca3cd0da..68a119d895 100644 --- a/src/lib/libcrypto/bio/bio_err.c +++ b/src/lib/libcrypto/bio/bio_err.c | |||
| @@ -91,6 +91,7 @@ static ERR_STRING_DATA BIO_str_functs[]= | |||
| 91 | {ERR_PACK(0,BIO_F_CONN_CTRL,0), "CONN_CTRL"}, | 91 | {ERR_PACK(0,BIO_F_CONN_CTRL,0), "CONN_CTRL"}, |
| 92 | {ERR_PACK(0,BIO_F_CONN_STATE,0), "CONN_STATE"}, | 92 | {ERR_PACK(0,BIO_F_CONN_STATE,0), "CONN_STATE"}, |
| 93 | {ERR_PACK(0,BIO_F_FILE_CTRL,0), "FILE_CTRL"}, | 93 | {ERR_PACK(0,BIO_F_FILE_CTRL,0), "FILE_CTRL"}, |
| 94 | {ERR_PACK(0,BIO_F_FILE_READ,0), "FILE_READ"}, | ||
| 94 | {ERR_PACK(0,BIO_F_LINEBUFFER_CTRL,0), "LINEBUFFER_CTRL"}, | 95 | {ERR_PACK(0,BIO_F_LINEBUFFER_CTRL,0), "LINEBUFFER_CTRL"}, |
| 95 | {ERR_PACK(0,BIO_F_MEM_READ,0), "MEM_READ"}, | 96 | {ERR_PACK(0,BIO_F_MEM_READ,0), "MEM_READ"}, |
| 96 | {ERR_PACK(0,BIO_F_MEM_WRITE,0), "MEM_WRITE"}, | 97 | {ERR_PACK(0,BIO_F_MEM_WRITE,0), "MEM_WRITE"}, |
diff --git a/src/lib/libcrypto/bio/bss_file.c b/src/lib/libcrypto/bio/bss_file.c index 8b3ff278d9..826b361fa2 100644 --- a/src/lib/libcrypto/bio/bss_file.c +++ b/src/lib/libcrypto/bio/bss_file.c | |||
| @@ -162,6 +162,12 @@ static int MS_CALLBACK file_read(BIO *b, char *out, int outl) | |||
| 162 | if (b->init && (out != NULL)) | 162 | if (b->init && (out != NULL)) |
| 163 | { | 163 | { |
| 164 | ret=fread(out,1,(int)outl,(FILE *)b->ptr); | 164 | ret=fread(out,1,(int)outl,(FILE *)b->ptr); |
| 165 | if(ret == 0 && ferror((FILE *)b->ptr)) | ||
| 166 | { | ||
| 167 | SYSerr(SYS_F_FREAD,get_last_sys_error()); | ||
| 168 | BIOerr(BIO_F_FILE_READ,ERR_R_SYS_LIB); | ||
| 169 | ret=-1; | ||
| 170 | } | ||
| 165 | } | 171 | } |
| 166 | return(ret); | 172 | return(ret); |
| 167 | } | 173 | } |
diff --git a/src/lib/libcrypto/bn/Makefile.ssl b/src/lib/libcrypto/bn/Makefile.ssl index 9d67fab1d6..6a479726c4 100644 --- a/src/lib/libcrypto/bn/Makefile.ssl +++ b/src/lib/libcrypto/bn/Makefile.ssl | |||
| @@ -169,7 +169,7 @@ lint: | |||
| 169 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 169 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 170 | 170 | ||
| 171 | depend: | 171 | depend: |
| 172 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 172 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 173 | 173 | ||
| 174 | dclean: | 174 | dclean: |
| 175 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 175 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/bn/bn_lib.c b/src/lib/libcrypto/bn/bn_lib.c index a016cb7f53..8abe095af2 100644 --- a/src/lib/libcrypto/bn/bn_lib.c +++ b/src/lib/libcrypto/bn/bn_lib.c | |||
| @@ -397,6 +397,12 @@ BIGNUM *bn_dup_expand(const BIGNUM *b, int words) | |||
| 397 | { | 397 | { |
| 398 | BIGNUM *r = NULL; | 398 | BIGNUM *r = NULL; |
| 399 | 399 | ||
| 400 | /* This function does not work if | ||
| 401 | * words <= b->dmax && top < words | ||
| 402 | * because BN_dup() does not preserve 'dmax'! | ||
| 403 | * (But bn_dup_expand() is not used anywhere yet.) | ||
| 404 | */ | ||
| 405 | |||
| 400 | if (words > b->dmax) | 406 | if (words > b->dmax) |
| 401 | { | 407 | { |
| 402 | BN_ULONG *a = bn_expand_internal(b, words); | 408 | BN_ULONG *a = bn_expand_internal(b, words); |
diff --git a/src/lib/libcrypto/bn/bn_mul.c b/src/lib/libcrypto/bn/bn_mul.c index fd598b8b3d..b03458d002 100644 --- a/src/lib/libcrypto/bn/bn_mul.c +++ b/src/lib/libcrypto/bn/bn_mul.c | |||
| @@ -66,7 +66,7 @@ | |||
| 66 | #include "cryptlib.h" | 66 | #include "cryptlib.h" |
| 67 | #include "bn_lcl.h" | 67 | #include "bn_lcl.h" |
| 68 | 68 | ||
| 69 | #if defined(OPENSSL_NO_ASM) || !(defined(__i386) || defined(__i386__))/* Assembler implementation exists only for x86 */ | 69 | #if defined(OPENSSL_NO_ASM) || !(defined(__i386) || defined(__i386__)) || defined(__DJGPP__) /* Assembler implementation exists only for x86 */ |
| 70 | /* Here follows specialised variants of bn_add_words() and | 70 | /* Here follows specialised variants of bn_add_words() and |
| 71 | bn_sub_words(). They have the property performing operations on | 71 | bn_sub_words(). They have the property performing operations on |
| 72 | arrays of different sizes. The sizes of those arrays is expressed through | 72 | arrays of different sizes. The sizes of those arrays is expressed through |
diff --git a/src/lib/libcrypto/bn/bntest.c b/src/lib/libcrypto/bn/bntest.c index 443cf420e5..8158a67374 100644 --- a/src/lib/libcrypto/bn/bntest.c +++ b/src/lib/libcrypto/bn/bntest.c | |||
| @@ -925,7 +925,7 @@ int test_kron(BIO *bp, BN_CTX *ctx) | |||
| 925 | /* r := a^t mod b */ | 925 | /* r := a^t mod b */ |
| 926 | b->neg=0; | 926 | b->neg=0; |
| 927 | 927 | ||
| 928 | if (!BN_mod_exp_recp(r, a, t, b, ctx)) goto err; /* XXX should be BN_mod_exp_recp, but ..._recp triggers a bug that must be fixed */ | 928 | if (!BN_mod_exp_recp(r, a, t, b, ctx)) goto err; |
| 929 | b->neg=1; | 929 | b->neg=1; |
| 930 | 930 | ||
| 931 | if (BN_is_word(r, 1)) | 931 | if (BN_is_word(r, 1)) |
diff --git a/src/lib/libcrypto/buffer/Makefile.ssl b/src/lib/libcrypto/buffer/Makefile.ssl index 8ee016322a..240a6b9a89 100644 --- a/src/lib/libcrypto/buffer/Makefile.ssl +++ b/src/lib/libcrypto/buffer/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/cast/Makefile.ssl b/src/lib/libcrypto/cast/Makefile.ssl index a52217a6f7..2defbdd68a 100644 --- a/src/lib/libcrypto/cast/Makefile.ssl +++ b/src/lib/libcrypto/cast/Makefile.ssl | |||
| @@ -97,7 +97,7 @@ lint: | |||
| 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 98 | 98 | ||
| 99 | depend: | 99 | depend: |
| 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 101 | 101 | ||
| 102 | dclean: | 102 | dclean: |
| 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/comp/Makefile.ssl b/src/lib/libcrypto/comp/Makefile.ssl index 972cb9fbc3..7c1ec81229 100644 --- a/src/lib/libcrypto/comp/Makefile.ssl +++ b/src/lib/libcrypto/comp/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/conf/Makefile.ssl b/src/lib/libcrypto/conf/Makefile.ssl index d7489c87a2..133c2329e6 100644 --- a/src/lib/libcrypto/conf/Makefile.ssl +++ b/src/lib/libcrypto/conf/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -89,14 +89,14 @@ conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 89 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 89 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 90 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 90 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 91 | conf_api.o: conf_api.c | 91 | conf_api.o: conf_api.c |
| 92 | conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 92 | conf_def.o: ../../e_os.h ../../include/openssl/bio.h |
| 93 | conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | 93 | conf_def.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 94 | conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 94 | conf_def.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h |
| 95 | conf_def.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 95 | conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 96 | conf_def.o: ../../include/openssl/opensslconf.h | 96 | conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 97 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 97 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 98 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 98 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 99 | conf_def.o: conf_def.c conf_def.h | 99 | conf_def.o: ../cryptlib.h conf_def.c conf_def.h |
| 100 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | 100 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h |
| 101 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 101 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 102 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 102 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| @@ -111,51 +111,73 @@ conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 111 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 111 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 112 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 112 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 113 | conf_lib.o: conf_lib.c | 113 | conf_lib.o: conf_lib.c |
| 114 | conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h | 114 | conf_mall.o: ../../e_os.h ../../include/openssl/aes.h |
| 115 | conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 115 | conf_mall.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 116 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 116 | conf_mall.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 117 | conf_mall.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 117 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 118 | conf_mall.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 118 | conf_mall.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 119 | conf_mall.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 119 | conf_mall.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 120 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 120 | conf_mall.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 121 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 121 | conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 122 | conf_mall.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 123 | conf_mall.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 124 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 125 | conf_mall.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 126 | conf_mall.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 122 | conf_mall.o: ../../include/openssl/objects.h | 127 | conf_mall.o: ../../include/openssl/objects.h |
| 123 | conf_mall.o: ../../include/openssl/opensslconf.h | 128 | conf_mall.o: ../../include/openssl/opensslconf.h |
| 124 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 129 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 130 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 131 | conf_mall.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 132 | conf_mall.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 126 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 133 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 127 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 134 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 128 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 135 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 129 | conf_mall.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 136 | conf_mall.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 130 | conf_mall.o: ../cryptlib.h conf_mall.c | 137 | conf_mall.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mall.c |
| 131 | conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h | 138 | conf_mod.o: ../../e_os.h ../../include/openssl/aes.h |
| 132 | conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 139 | conf_mod.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 133 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 140 | conf_mod.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 134 | conf_mod.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 141 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 135 | conf_mod.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 142 | conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 136 | conf_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 143 | conf_mod.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 137 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 144 | conf_mod.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 145 | conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 146 | conf_mod.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 147 | conf_mod.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 148 | conf_mod.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 149 | conf_mod.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 138 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 150 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 139 | conf_mod.o: ../../include/openssl/opensslconf.h | 151 | conf_mod.o: ../../include/openssl/opensslconf.h |
| 140 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 152 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 141 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 153 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 154 | conf_mod.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 155 | conf_mod.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 142 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 156 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 143 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 157 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 158 | conf_mod.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 144 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 159 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 145 | conf_mod.o: ../cryptlib.h conf_mod.c | 160 | conf_mod.o: ../cryptlib.h conf_mod.c |
| 146 | conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h | 161 | conf_sap.o: ../../e_os.h ../../include/openssl/aes.h |
| 147 | conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 162 | conf_sap.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 148 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 163 | conf_sap.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 149 | conf_sap.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 164 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 150 | conf_sap.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 165 | conf_sap.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 151 | conf_sap.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 166 | conf_sap.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 152 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 167 | conf_sap.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 153 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 168 | conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 169 | conf_sap.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 170 | conf_sap.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 171 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 172 | conf_sap.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 173 | conf_sap.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 154 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 174 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 155 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 175 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 156 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 176 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 177 | conf_sap.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 178 | conf_sap.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 157 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 179 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 158 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 180 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 159 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 181 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 160 | conf_sap.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 182 | conf_sap.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 161 | conf_sap.o: ../cryptlib.h conf_sap.c | 183 | conf_sap.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_sap.c |
diff --git a/src/lib/libcrypto/conf/conf.h b/src/lib/libcrypto/conf/conf.h index 3c03fb19c0..f4671442ab 100644 --- a/src/lib/libcrypto/conf/conf.h +++ b/src/lib/libcrypto/conf/conf.h | |||
| @@ -129,6 +129,7 @@ int CONF_dump_fp(LHASH *conf, FILE *out); | |||
| 129 | int CONF_dump_bio(LHASH *conf, BIO *out); | 129 | int CONF_dump_bio(LHASH *conf, BIO *out); |
| 130 | 130 | ||
| 131 | void OPENSSL_config(const char *config_name); | 131 | void OPENSSL_config(const char *config_name); |
| 132 | void OPENSSL_no_config(void); | ||
| 132 | 133 | ||
| 133 | /* New conf code. The semantics are different from the functions above. | 134 | /* New conf code. The semantics are different from the functions above. |
| 134 | If that wasn't the case, the above functions would have been replaced */ | 135 | If that wasn't the case, the above functions would have been replaced */ |
| @@ -141,10 +142,10 @@ struct conf_st | |||
| 141 | }; | 142 | }; |
| 142 | 143 | ||
| 143 | CONF *NCONF_new(CONF_METHOD *meth); | 144 | CONF *NCONF_new(CONF_METHOD *meth); |
| 144 | CONF_METHOD *NCONF_default(); | 145 | CONF_METHOD *NCONF_default(void); |
| 145 | CONF_METHOD *NCONF_WIN32(); | 146 | CONF_METHOD *NCONF_WIN32(void); |
| 146 | #if 0 /* Just to give you an idea of what I have in mind */ | 147 | #if 0 /* Just to give you an idea of what I have in mind */ |
| 147 | CONF_METHOD *NCONF_XML(); | 148 | CONF_METHOD *NCONF_XML(void); |
| 148 | #endif | 149 | #endif |
| 149 | void NCONF_free(CONF *conf); | 150 | void NCONF_free(CONF *conf); |
| 150 | void NCONF_free_data(CONF *conf); | 151 | void NCONF_free_data(CONF *conf); |
| @@ -176,6 +177,7 @@ int CONF_modules_load_file(const char *filename, const char *appname, | |||
| 176 | unsigned long flags); | 177 | unsigned long flags); |
| 177 | void CONF_modules_unload(int all); | 178 | void CONF_modules_unload(int all); |
| 178 | void CONF_modules_finish(void); | 179 | void CONF_modules_finish(void); |
| 180 | void CONF_modules_free(void); | ||
| 179 | int CONF_module_add(const char *name, conf_init_func *ifunc, | 181 | int CONF_module_add(const char *name, conf_init_func *ifunc, |
| 180 | conf_finish_func *ffunc); | 182 | conf_finish_func *ffunc); |
| 181 | 183 | ||
diff --git a/src/lib/libcrypto/conf/conf_lib.c b/src/lib/libcrypto/conf/conf_lib.c index 7998f34c7b..6a3cf109dd 100644 --- a/src/lib/libcrypto/conf/conf_lib.c +++ b/src/lib/libcrypto/conf/conf_lib.c | |||
| @@ -382,8 +382,9 @@ int NCONF_dump_bio(const CONF *conf, BIO *out) | |||
| 382 | return conf->meth->dump(conf, out); | 382 | return conf->meth->dump(conf, out); |
| 383 | } | 383 | } |
| 384 | 384 | ||
| 385 | |||
| 385 | /* This function should be avoided */ | 386 | /* This function should be avoided */ |
| 386 | #undef NCONF_get_number | 387 | #if 0 |
| 387 | long NCONF_get_number(CONF *conf,char *group,char *name) | 388 | long NCONF_get_number(CONF *conf,char *group,char *name) |
| 388 | { | 389 | { |
| 389 | int status; | 390 | int status; |
| @@ -397,4 +398,4 @@ long NCONF_get_number(CONF *conf,char *group,char *name) | |||
| 397 | } | 398 | } |
| 398 | return ret; | 399 | return ret; |
| 399 | } | 400 | } |
| 400 | 401 | #endif | |
diff --git a/src/lib/libcrypto/cryptlib.h b/src/lib/libcrypto/cryptlib.h index 37ce7721fb..88e4ae509f 100644 --- a/src/lib/libcrypto/cryptlib.h +++ b/src/lib/libcrypto/cryptlib.h | |||
| @@ -91,6 +91,7 @@ extern "C" { | |||
| 91 | 91 | ||
| 92 | /* size of string represenations */ | 92 | /* size of string represenations */ |
| 93 | #define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1) | 93 | #define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1) |
| 94 | #define HEX_SIZE(type) ((sizeof(type)*2) | ||
| 94 | 95 | ||
| 95 | #ifdef __cplusplus | 96 | #ifdef __cplusplus |
| 96 | } | 97 | } |
diff --git a/src/lib/libcrypto/des/Makefile.ssl b/src/lib/libcrypto/des/Makefile.ssl index 473810bec1..ee5849d8fa 100644 --- a/src/lib/libcrypto/des/Makefile.ssl +++ b/src/lib/libcrypto/des/Makefile.ssl | |||
| @@ -108,7 +108,6 @@ files: | |||
| 108 | 108 | ||
| 109 | links: | 109 | links: |
| 110 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | 110 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile |
| 111 | @sh $(TOP)/util/point.sh ../../perlasm asm/perlasm | ||
| 112 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 111 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 113 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 112 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 114 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 113 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| @@ -131,7 +130,7 @@ lint: | |||
| 131 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 130 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 132 | 131 | ||
| 133 | depend: | 132 | depend: |
| 134 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 133 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 135 | 134 | ||
| 136 | dclean: | 135 | dclean: |
| 137 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 136 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/des/des_old.h b/src/lib/libcrypto/des/des_old.h index 2bb5fa9d1b..2b7c0fc02a 100644 --- a/src/lib/libcrypto/des/des_old.h +++ b/src/lib/libcrypto/des/des_old.h | |||
| @@ -362,7 +362,7 @@ int _ossl_old_des_enc_write(int fd,char *buf,int len,_ossl_old_des_key_schedule | |||
| 362 | _ossl_old_des_cblock *iv); | 362 | _ossl_old_des_cblock *iv); |
| 363 | char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret); | 363 | char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret); |
| 364 | char *_ossl_old_des_crypt(const char *buf,const char *salt); | 364 | char *_ossl_old_des_crypt(const char *buf,const char *salt); |
| 365 | #if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) | 365 | #if !defined(PERL5) && !defined(NeXT) |
| 366 | char *_ossl_old_crypt(const char *buf,const char *salt); | 366 | char *_ossl_old_crypt(const char *buf,const char *salt); |
| 367 | #endif | 367 | #endif |
| 368 | void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out, | 368 | void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out, |
diff --git a/src/lib/libcrypto/des/read_pwd.c b/src/lib/libcrypto/des/read_pwd.c index 00000190f8..9061935f21 100644 --- a/src/lib/libcrypto/des/read_pwd.c +++ b/src/lib/libcrypto/des/read_pwd.c | |||
| @@ -246,7 +246,7 @@ int des_read_pw(char *buf, char *buff, int size, const char *prompt, | |||
| 246 | long status; | 246 | long status; |
| 247 | unsigned short channel = 0; | 247 | unsigned short channel = 0; |
| 248 | #else | 248 | #else |
| 249 | #ifndef OPENSSL_SYS_MSDOS | 249 | #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) |
| 250 | TTY_STRUCT tty_orig,tty_new; | 250 | TTY_STRUCT tty_orig,tty_new; |
| 251 | #endif | 251 | #endif |
| 252 | #endif | 252 | #endif |
diff --git a/src/lib/libcrypto/dh/Makefile.ssl b/src/lib/libcrypto/dh/Makefile.ssl index a38a3e85c4..5e1aaae160 100644 --- a/src/lib/libcrypto/dh/Makefile.ssl +++ b/src/lib/libcrypto/dh/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/doc/DH_get_ex_new_index.pod b/src/lib/libcrypto/doc/DH_get_ex_new_index.pod index 82e2548bcd..fa5eab2650 100644 --- a/src/lib/libcrypto/doc/DH_get_ex_new_index.pod +++ b/src/lib/libcrypto/doc/DH_get_ex_new_index.pod | |||
| @@ -26,7 +26,7 @@ as described in L<RSA_get_ex_new_index(3)>. | |||
| 26 | 26 | ||
| 27 | =head1 SEE ALSO | 27 | =head1 SEE ALSO |
| 28 | 28 | ||
| 29 | L<RSA_get_ex_new_index()|RSA_get_ex_new_index()>, L<dh(3)|dh(3)> | 29 | L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, L<dh(3)|dh(3)> |
| 30 | 30 | ||
| 31 | =head1 HISTORY | 31 | =head1 HISTORY |
| 32 | 32 | ||
diff --git a/src/lib/libcrypto/doc/EVP_DigestInit.pod b/src/lib/libcrypto/doc/EVP_DigestInit.pod index acd4d0167a..58afd8f0b8 100644 --- a/src/lib/libcrypto/doc/EVP_DigestInit.pod +++ b/src/lib/libcrypto/doc/EVP_DigestInit.pod | |||
| @@ -245,7 +245,12 @@ L<SHA1(3)|SHA1(3)> | |||
| 245 | EVP_DigestInit(), EVP_DigestUpdate() and EVP_DigestFinal() are | 245 | EVP_DigestInit(), EVP_DigestUpdate() and EVP_DigestFinal() are |
| 246 | available in all versions of SSLeay and OpenSSL. | 246 | available in all versions of SSLeay and OpenSSL. |
| 247 | 247 | ||
| 248 | EVP_DigestInit_ex(), EVP_DigestFinal_ex() and EVP_MD_CTX_copy_ex() | 248 | EVP_MD_CTX_init(), EVP_MD_CTX_create(), EVP_MD_CTX_copy_ex(), |
| 249 | were added in OpenSSL 0.9.7. | 249 | EVP_MD_CTX_cleanup(), EVP_MD_CTX_destroy(), EVP_DigestInit_ex() |
| 250 | and EVP_DigestFinal_ex() were added in OpenSSL 0.9.7. | ||
| 251 | |||
| 252 | EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), | ||
| 253 | EVP_dss(), EVP_dss1(), EVP_mdc2() and EVP_ripemd160() were | ||
| 254 | changed to return truely const EVP_MD * in OpenSSL 0.9.7. | ||
| 250 | 255 | ||
| 251 | =cut | 256 | =cut |
diff --git a/src/lib/libcrypto/doc/EVP_EncryptInit.pod b/src/lib/libcrypto/doc/EVP_EncryptInit.pod index 371b6a2287..75cceb1ca2 100644 --- a/src/lib/libcrypto/doc/EVP_EncryptInit.pod +++ b/src/lib/libcrypto/doc/EVP_EncryptInit.pod | |||
| @@ -501,4 +501,9 @@ L<evp(3)|evp(3)> | |||
| 501 | 501 | ||
| 502 | =head1 HISTORY | 502 | =head1 HISTORY |
| 503 | 503 | ||
| 504 | EVP_CIPHER_CTX_init(), EVP_EncryptInit_ex(), EVP_EncryptFinal_ex(), | ||
| 505 | EVP_DecryptInit_ex(), EVP_DecryptFinal_ex(), EVP_CipherInit_ex(), | ||
| 506 | EVP_CipherFinal_ex() and EVP_CIPHER_CTX_set_padding() appeared in | ||
| 507 | OpenSSL 0.9.7. | ||
| 508 | |||
| 504 | =cut | 509 | =cut |
diff --git a/src/lib/libcrypto/doc/EVP_SignInit.pod b/src/lib/libcrypto/doc/EVP_SignInit.pod index b1ac129430..e65e54ce52 100644 --- a/src/lib/libcrypto/doc/EVP_SignInit.pod +++ b/src/lib/libcrypto/doc/EVP_SignInit.pod | |||
| @@ -91,6 +91,6 @@ L<SHA1(3)|SHA1(3)>, L<digest(1)|digest(1)> | |||
| 91 | EVP_SignInit(), EVP_SignUpdate() and EVP_SignFinal() are | 91 | EVP_SignInit(), EVP_SignUpdate() and EVP_SignFinal() are |
| 92 | available in all versions of SSLeay and OpenSSL. | 92 | available in all versions of SSLeay and OpenSSL. |
| 93 | 93 | ||
| 94 | EVP_SignInit_ex() was added in OpenSSL 0.9.7 | 94 | EVP_SignInit_ex() was added in OpenSSL 0.9.7. |
| 95 | 95 | ||
| 96 | =cut | 96 | =cut |
diff --git a/src/lib/libcrypto/doc/EVP_VerifyInit.pod b/src/lib/libcrypto/doc/EVP_VerifyInit.pod index 80c656fde8..b6afaedee5 100644 --- a/src/lib/libcrypto/doc/EVP_VerifyInit.pod +++ b/src/lib/libcrypto/doc/EVP_VerifyInit.pod | |||
| @@ -74,7 +74,7 @@ L<EVP_SignInit(3)|EVP_SignInit(3)>, | |||
| 74 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, | 74 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, |
| 75 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, | 75 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, |
| 76 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, | 76 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, |
| 77 | L<sha(3)|sha(3)>, L<digest(1)|digest(1)> | 77 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> |
| 78 | 78 | ||
| 79 | =head1 HISTORY | 79 | =head1 HISTORY |
| 80 | 80 | ||
diff --git a/src/lib/libcrypto/doc/RSA_check_key.pod b/src/lib/libcrypto/doc/RSA_check_key.pod index 1db6d736ab..a5198f3db5 100644 --- a/src/lib/libcrypto/doc/RSA_check_key.pod +++ b/src/lib/libcrypto/doc/RSA_check_key.pod | |||
| @@ -18,7 +18,9 @@ in fact prime, and that B<n = p*q>. | |||
| 18 | It also checks that B<d*e = 1 mod (p-1*q-1)>, | 18 | It also checks that B<d*e = 1 mod (p-1*q-1)>, |
| 19 | and that B<dmp1>, B<dmq1> and B<iqmp> are set correctly or are B<NULL>. | 19 | and that B<dmp1>, B<dmq1> and B<iqmp> are set correctly or are B<NULL>. |
| 20 | 20 | ||
| 21 | The key's public components may not be B<NULL>. | 21 | As such, this function can not be used with any arbitrary RSA key object, |
| 22 | even if it is otherwise fit for regular RSA operation. See B<NOTES> for more | ||
| 23 | information. | ||
| 22 | 24 | ||
| 23 | =head1 RETURN VALUE | 25 | =head1 RETURN VALUE |
| 24 | 26 | ||
| @@ -28,12 +30,38 @@ RSA_check_key() returns 1 if B<rsa> is a valid RSA key, and 0 otherwise. | |||
| 28 | If the key is invalid or an error occurred, the reason code can be | 30 | If the key is invalid or an error occurred, the reason code can be |
| 29 | obtained using L<ERR_get_error(3)|ERR_get_error(3)>. | 31 | obtained using L<ERR_get_error(3)|ERR_get_error(3)>. |
| 30 | 32 | ||
| 33 | =head1 NOTES | ||
| 34 | |||
| 35 | This function does not work on RSA public keys that have only the modulus | ||
| 36 | and public exponent elements populated. It performs integrity checks on all | ||
| 37 | the RSA key material, so the RSA key structure must contain all the private | ||
| 38 | key data too. | ||
| 39 | |||
| 40 | Unlike most other RSA functions, this function does B<not> work | ||
| 41 | transparently with any underlying ENGINE implementation because it uses the | ||
| 42 | key data in the RSA structure directly. An ENGINE implementation can | ||
| 43 | override the way key data is stored and handled, and can even provide | ||
| 44 | support for HSM keys - in which case the RSA structure may contain B<no> | ||
| 45 | key data at all! If the ENGINE in question is only being used for | ||
| 46 | acceleration or analysis purposes, then in all likelihood the RSA key data | ||
| 47 | is complete and untouched, but this can't be assumed in the general case. | ||
| 48 | |||
| 49 | =head1 BUGS | ||
| 50 | |||
| 51 | A method of verifying the RSA key using opaque RSA API functions might need | ||
| 52 | to be considered. Right now RSA_check_key() simply uses the RSA structure | ||
| 53 | elements directly, bypassing the RSA_METHOD table altogether (and | ||
| 54 | completely violating encapsulation and object-orientation in the process). | ||
| 55 | The best fix will probably be to introduce a "check_key()" handler to the | ||
| 56 | RSA_METHOD function table so that alternative implementations can also | ||
| 57 | provide their own verifiers. | ||
| 58 | |||
| 31 | =head1 SEE ALSO | 59 | =head1 SEE ALSO |
| 32 | 60 | ||
| 33 | L<rsa(3)|rsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)> | 61 | L<rsa(3)|rsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)> |
| 34 | 62 | ||
| 35 | =head1 HISTORY | 63 | =head1 HISTORY |
| 36 | 64 | ||
| 37 | RSA_check() appeared in OpenSSL 0.9.4. | 65 | RSA_check_key() appeared in OpenSSL 0.9.4. |
| 38 | 66 | ||
| 39 | =cut | 67 | =cut |
diff --git a/src/lib/libcrypto/doc/rsa.pod b/src/lib/libcrypto/doc/rsa.pod index 09ad30cab1..2b93a12b65 100644 --- a/src/lib/libcrypto/doc/rsa.pod +++ b/src/lib/libcrypto/doc/rsa.pod | |||
| @@ -110,7 +110,7 @@ L<RSA_blinding_on(3)|RSA_blinding_on(3)>, | |||
| 110 | L<RSA_set_method(3)|RSA_set_method(3)>, L<RSA_print(3)|RSA_print(3)>, | 110 | L<RSA_set_method(3)|RSA_set_method(3)>, L<RSA_print(3)|RSA_print(3)>, |
| 111 | L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, | 111 | L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, |
| 112 | L<RSA_private_encrypt(3)|RSA_private_encrypt(3)>, | 112 | L<RSA_private_encrypt(3)|RSA_private_encrypt(3)>, |
| 113 | L<RSA_sign_ASN_OCTET_STRING(3)|RSA_sign_ASN_OCTET_STRING(3)>, | 113 | L<RSA_sign_ASN1_OCTET_STRING(3)|RSA_sign_ASN1_OCTET_STRING(3)>, |
| 114 | L<RSA_padding_add_PKCS1_type_1(3)|RSA_padding_add_PKCS1_type_1(3)> | 114 | L<RSA_padding_add_PKCS1_type_1(3)|RSA_padding_add_PKCS1_type_1(3)> |
| 115 | 115 | ||
| 116 | =cut | 116 | =cut |
diff --git a/src/lib/libcrypto/dsa/Makefile.ssl b/src/lib/libcrypto/dsa/Makefile.ssl index c1859abe08..d308caafca 100644 --- a/src/lib/libcrypto/dsa/Makefile.ssl +++ b/src/lib/libcrypto/dsa/Makefile.ssl | |||
| @@ -70,7 +70,7 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 71 | ||
| 72 | depend: | 72 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 74 | ||
| 75 | dclean: | 75 | dclean: |
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -99,18 +99,26 @@ dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 99 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 99 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 100 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 100 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 101 | dsa_err.o: dsa_err.c | 101 | dsa_err.o: dsa_err.c |
| 102 | dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | 102 | dsa_gen.o: ../../e_os.h ../../include/openssl/aes.h |
| 103 | dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 103 | dsa_gen.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 104 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 104 | dsa_gen.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 105 | dsa_gen.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 105 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 106 | dsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 106 | dsa_gen.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 107 | dsa_gen.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 107 | dsa_gen.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 108 | dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 109 | dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 110 | dsa_gen.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 111 | dsa_gen.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 112 | dsa_gen.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 108 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 113 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 109 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 114 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 110 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 115 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 111 | dsa_gen.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 116 | dsa_gen.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 112 | dsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 117 | dsa_gen.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 113 | dsa_gen.o: ../cryptlib.h dsa_gen.c | 118 | dsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 119 | dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 120 | dsa_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 121 | dsa_gen.o: ../../include/openssl/ui_compat.h ../cryptlib.h dsa_gen.c | ||
| 114 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 122 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 115 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 123 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 116 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 124 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
diff --git a/src/lib/libcrypto/dso/Makefile.ssl b/src/lib/libcrypto/dso/Makefile.ssl index 1f48fdb8a7..5a55125824 100644 --- a/src/lib/libcrypto/dso/Makefile.ssl +++ b/src/lib/libcrypto/dso/Makefile.ssl | |||
| @@ -70,7 +70,7 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 71 | ||
| 72 | depend: | 72 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 74 | ||
| 75 | dclean: | 75 | dclean: |
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/ebcdic.c b/src/lib/libcrypto/ebcdic.c index bc968ea807..d1bece87f7 100644 --- a/src/lib/libcrypto/ebcdic.c +++ b/src/lib/libcrypto/ebcdic.c | |||
| @@ -211,8 +211,8 @@ ascii2ebcdic(void *dest, const void *srce, size_t count) | |||
| 211 | } | 211 | } |
| 212 | 212 | ||
| 213 | #else /*CHARSET_EBCDIC*/ | 213 | #else /*CHARSET_EBCDIC*/ |
| 214 | #include <openssl/opensslconf.h> | 214 | #include <openssl/e_os2.h> |
| 215 | #if defined(PEDANTIC) || defined(__DECC) | 215 | #if defined(PEDANTIC) || defined(__DECC) || defined(OPENSSL_SYS_MACOSX) |
| 216 | static void *dummy=&dummy; | 216 | static void *dummy=&dummy; |
| 217 | #endif | 217 | #endif |
| 218 | #endif | 218 | #endif |
diff --git a/src/lib/libcrypto/ec/Makefile.ssl b/src/lib/libcrypto/ec/Makefile.ssl index fb6f22130f..ed602b4a7f 100644 --- a/src/lib/libcrypto/ec/Makefile.ssl +++ b/src/lib/libcrypto/ec/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/ec/ectest.c b/src/lib/libcrypto/ec/ectest.c index 243cd83fb5..eab46cc080 100644 --- a/src/lib/libcrypto/ec/ectest.c +++ b/src/lib/libcrypto/ec/ectest.c | |||
| @@ -75,8 +75,8 @@ int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); retur | |||
| 75 | exit(1); \ | 75 | exit(1); \ |
| 76 | } while (0) | 76 | } while (0) |
| 77 | 77 | ||
| 78 | 78 | #if 0 | |
| 79 | void timings(EC_GROUP *group, int multi, BN_CTX *ctx) | 79 | static void timings(EC_GROUP *group, int multi, BN_CTX *ctx) |
| 80 | { | 80 | { |
| 81 | clock_t clck; | 81 | clock_t clck; |
| 82 | int i, j; | 82 | int i, j; |
| @@ -138,7 +138,7 @@ void timings(EC_GROUP *group, int multi, BN_CTX *ctx) | |||
| 138 | BN_free(s); | 138 | BN_free(s); |
| 139 | BN_free(s0); | 139 | BN_free(s0); |
| 140 | } | 140 | } |
| 141 | 141 | #endif | |
| 142 | 142 | ||
| 143 | int main(int argc, char *argv[]) | 143 | int main(int argc, char *argv[]) |
| 144 | { | 144 | { |
diff --git a/src/lib/libcrypto/engine/Makefile.ssl b/src/lib/libcrypto/engine/Makefile.ssl index 5172028f93..8bc8985e02 100644 --- a/src/lib/libcrypto/engine/Makefile.ssl +++ b/src/lib/libcrypto/engine/Makefile.ssl | |||
| @@ -74,7 +74,7 @@ tags: | |||
| 74 | 74 | ||
| 75 | errors: | 75 | errors: |
| 76 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ | 76 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ |
| 77 | -nostatic -staticloader -write hw_*.c; \ | 77 | -nostatic -staticloader -write hw_*.c |
| 78 | 78 | ||
| 79 | tests: | 79 | tests: |
| 80 | 80 | ||
| @@ -82,7 +82,7 @@ lint: | |||
| 82 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 82 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 83 | 83 | ||
| 84 | depend: | 84 | depend: |
| 85 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 85 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 86 | 86 | ||
| 87 | dclean: | 87 | dclean: |
| 88 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 88 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -196,22 +196,29 @@ eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 196 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 196 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 197 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 197 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 198 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c | 198 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c |
| 199 | eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h | 199 | eng_openssl.o: ../../e_os.h ../../include/openssl/aes.h |
| 200 | eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 200 | eng_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 201 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 201 | eng_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 202 | eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 202 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 203 | eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 203 | eng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 204 | eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 204 | eng_openssl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 205 | eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 205 | eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 206 | eng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 207 | eng_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 208 | eng_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 209 | eng_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 210 | eng_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 206 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 211 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 207 | eng_openssl.o: ../../include/openssl/opensslconf.h | 212 | eng_openssl.o: ../../include/openssl/opensslconf.h |
| 208 | eng_openssl.o: ../../include/openssl/opensslv.h | 213 | eng_openssl.o: ../../include/openssl/opensslv.h |
| 209 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 214 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 210 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 215 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 211 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h | 216 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 212 | eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 217 | eng_openssl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 213 | eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 218 | eng_openssl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 214 | eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 219 | eng_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 220 | eng_openssl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 221 | eng_openssl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 215 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 222 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 216 | eng_openssl.o: ../cryptlib.h eng_openssl.c | 223 | eng_openssl.o: ../cryptlib.h eng_openssl.c |
| 217 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 224 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -226,47 +233,64 @@ eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 226 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 233 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 227 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 234 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 228 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c | 235 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c |
| 229 | eng_table.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 236 | eng_table.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 230 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 237 | eng_table.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 231 | eng_table.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 238 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 232 | eng_table.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 239 | eng_table.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 233 | eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 240 | eng_table.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 234 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 241 | eng_table.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 242 | eng_table.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 243 | eng_table.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 244 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 245 | eng_table.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 246 | eng_table.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 235 | eng_table.o: ../../include/openssl/objects.h | 247 | eng_table.o: ../../include/openssl/objects.h |
| 236 | eng_table.o: ../../include/openssl/opensslconf.h | 248 | eng_table.o: ../../include/openssl/opensslconf.h |
| 237 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 249 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 238 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 250 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 239 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 251 | eng_table.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 240 | eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 252 | eng_table.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 253 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 254 | eng_table.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 255 | eng_table.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 241 | eng_table.o: eng_int.h eng_table.c | 256 | eng_table.o: eng_int.h eng_table.c |
| 242 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/asn1.h | 257 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/aes.h |
| 243 | hw_4758_cca.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 258 | hw_4758_cca.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 244 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 259 | hw_4758_cca.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 245 | hw_4758_cca.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 260 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 246 | hw_4758_cca.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 261 | hw_4758_cca.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 247 | hw_4758_cca.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 262 | hw_4758_cca.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 248 | hw_4758_cca.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 263 | hw_4758_cca.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 264 | hw_4758_cca.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 265 | hw_4758_cca.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 266 | hw_4758_cca.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 267 | hw_4758_cca.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 268 | hw_4758_cca.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 249 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 269 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 250 | hw_4758_cca.o: ../../include/openssl/opensslconf.h | 270 | hw_4758_cca.o: ../../include/openssl/opensslconf.h |
| 251 | hw_4758_cca.o: ../../include/openssl/opensslv.h | 271 | hw_4758_cca.o: ../../include/openssl/opensslv.h |
| 252 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 272 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 253 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 273 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 274 | hw_4758_cca.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 275 | hw_4758_cca.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 254 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 276 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 255 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 277 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 256 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | 278 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 257 | hw_4758_cca.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_4758_cca.c | 279 | hw_4758_cca.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 258 | hw_4758_cca.o: hw_4758_cca_err.c hw_4758_cca_err.h vendor_defns/hw_4758_cca.h | 280 | hw_4758_cca.o: ../cryptlib.h hw_4758_cca.c hw_4758_cca_err.c hw_4758_cca_err.h |
| 281 | hw_4758_cca.o: vendor_defns/hw_4758_cca.h | ||
| 259 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 282 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 260 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 283 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 261 | hw_aep.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 284 | hw_aep.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 262 | hw_aep.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 285 | hw_aep.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 263 | hw_aep.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 286 | hw_aep.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 264 | hw_aep.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 287 | hw_aep.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 265 | hw_aep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 288 | hw_aep.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 266 | hw_aep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 289 | hw_aep.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 267 | hw_aep.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 290 | hw_aep.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 268 | hw_aep.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h hw_aep.c | 291 | hw_aep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 269 | hw_aep.o: hw_aep_err.c hw_aep_err.h vendor_defns/aep.h | 292 | hw_aep.o: ../../include/openssl/ui.h hw_aep.c hw_aep_err.c hw_aep_err.h |
| 293 | hw_aep.o: vendor_defns/aep.h | ||
| 270 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h | 294 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h |
| 271 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 295 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 272 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 296 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -293,24 +317,31 @@ hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |||
| 293 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 317 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 294 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h | 318 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h |
| 295 | hw_cswift.o: vendor_defns/cswift.h | 319 | hw_cswift.o: vendor_defns/cswift.h |
| 296 | hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h | 320 | hw_ncipher.o: ../../e_os.h ../../include/openssl/aes.h |
| 297 | hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 321 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 298 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 322 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 299 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 323 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 300 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 324 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 301 | hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 325 | hw_ncipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 302 | hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 326 | hw_ncipher.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 327 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 328 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 329 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 330 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 331 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 303 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 332 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 304 | hw_ncipher.o: ../../include/openssl/opensslconf.h | 333 | hw_ncipher.o: ../../include/openssl/opensslconf.h |
| 305 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 334 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 306 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 335 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 307 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 336 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 337 | hw_ncipher.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 338 | hw_ncipher.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 308 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 339 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 309 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 340 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 310 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 341 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 311 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 342 | hw_ncipher.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 312 | hw_ncipher.o: ../cryptlib.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h | 343 | hw_ncipher.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_ncipher.c |
| 313 | hw_ncipher.o: vendor_defns/hwcryptohook.h | 344 | hw_ncipher.o: hw_ncipher_err.c hw_ncipher_err.h vendor_defns/hwcryptohook.h |
| 314 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h | 345 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h |
| 315 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 346 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 316 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 347 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -323,47 +354,71 @@ hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 323 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 354 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 324 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 355 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 325 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h | 356 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h |
| 357 | hw_cryptodev.o: ../../include/openssl/aes.h | ||
| 326 | hw_cryptodev.o: ../../include/openssl/asn1.h | 358 | hw_cryptodev.o: ../../include/openssl/asn1.h |
| 327 | hw_cryptodev.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 359 | hw_cryptodev.o: ../../include/openssl/bio.h |
| 360 | hw_cryptodev.o: ../../include/openssl/blowfish.h | ||
| 361 | hw_cryptodev.o: ../../include/openssl/bn.h | ||
| 362 | hw_cryptodev.o: ../../include/openssl/cast.h | ||
| 328 | hw_cryptodev.o: ../../include/openssl/conf.h | 363 | hw_cryptodev.o: ../../include/openssl/conf.h |
| 329 | hw_cryptodev.o: ../../include/openssl/crypto.h | 364 | hw_cryptodev.o: ../../include/openssl/crypto.h |
| 365 | hw_cryptodev.o: ../../include/openssl/des.h | ||
| 366 | hw_cryptodev.o: ../../include/openssl/des_old.h | ||
| 330 | hw_cryptodev.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 367 | hw_cryptodev.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 331 | hw_cryptodev.o: ../../include/openssl/e_os2.h | 368 | hw_cryptodev.o: ../../include/openssl/e_os2.h |
| 332 | hw_cryptodev.o: ../../include/openssl/engine.h | 369 | hw_cryptodev.o: ../../include/openssl/engine.h |
| 333 | hw_cryptodev.o: ../../include/openssl/err.h | 370 | hw_cryptodev.o: ../../include/openssl/err.h |
| 334 | hw_cryptodev.o: ../../include/openssl/evp.h | 371 | hw_cryptodev.o: ../../include/openssl/evp.h |
| 372 | hw_cryptodev.o: ../../include/openssl/idea.h | ||
| 335 | hw_cryptodev.o: ../../include/openssl/lhash.h | 373 | hw_cryptodev.o: ../../include/openssl/lhash.h |
| 374 | hw_cryptodev.o: ../../include/openssl/md2.h | ||
| 375 | hw_cryptodev.o: ../../include/openssl/md4.h | ||
| 376 | hw_cryptodev.o: ../../include/openssl/md5.h | ||
| 377 | hw_cryptodev.o: ../../include/openssl/mdc2.h | ||
| 336 | hw_cryptodev.o: ../../include/openssl/obj_mac.h | 378 | hw_cryptodev.o: ../../include/openssl/obj_mac.h |
| 337 | hw_cryptodev.o: ../../include/openssl/objects.h | 379 | hw_cryptodev.o: ../../include/openssl/objects.h |
| 338 | hw_cryptodev.o: ../../include/openssl/opensslconf.h | 380 | hw_cryptodev.o: ../../include/openssl/opensslconf.h |
| 339 | hw_cryptodev.o: ../../include/openssl/opensslv.h | 381 | hw_cryptodev.o: ../../include/openssl/opensslv.h |
| 340 | hw_cryptodev.o: ../../include/openssl/ossl_typ.h | 382 | hw_cryptodev.o: ../../include/openssl/ossl_typ.h |
| 341 | hw_cryptodev.o: ../../include/openssl/rand.h | 383 | hw_cryptodev.o: ../../include/openssl/rand.h |
| 384 | hw_cryptodev.o: ../../include/openssl/rc2.h | ||
| 385 | hw_cryptodev.o: ../../include/openssl/rc4.h | ||
| 386 | hw_cryptodev.o: ../../include/openssl/rc5.h | ||
| 387 | hw_cryptodev.o: ../../include/openssl/ripemd.h | ||
| 342 | hw_cryptodev.o: ../../include/openssl/rsa.h | 388 | hw_cryptodev.o: ../../include/openssl/rsa.h |
| 343 | hw_cryptodev.o: ../../include/openssl/safestack.h | 389 | hw_cryptodev.o: ../../include/openssl/safestack.h |
| 390 | hw_cryptodev.o: ../../include/openssl/sha.h | ||
| 344 | hw_cryptodev.o: ../../include/openssl/stack.h | 391 | hw_cryptodev.o: ../../include/openssl/stack.h |
| 345 | hw_cryptodev.o: ../../include/openssl/symhacks.h | 392 | hw_cryptodev.o: ../../include/openssl/symhacks.h |
| 346 | hw_cryptodev.o: ../../include/openssl/ui.h ../evp/evp_locl.h eng_int.h | 393 | hw_cryptodev.o: ../../include/openssl/ui.h |
| 347 | hw_cryptodev.o: hw_cryptodev.c | 394 | hw_cryptodev.o: ../../include/openssl/ui_compat.h ../evp/evp_locl.h |
| 348 | hw_sureware.o: ../../e_os.h ../../include/openssl/asn1.h | 395 | hw_cryptodev.o: eng_int.h hw_cryptodev.c |
| 349 | hw_sureware.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 396 | hw_sureware.o: ../../e_os.h ../../include/openssl/aes.h |
| 350 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 397 | hw_sureware.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 351 | hw_sureware.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 398 | hw_sureware.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 352 | hw_sureware.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 399 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 353 | hw_sureware.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 400 | hw_sureware.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 354 | hw_sureware.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 401 | hw_sureware.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 402 | hw_sureware.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 403 | hw_sureware.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 404 | hw_sureware.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 405 | hw_sureware.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 406 | hw_sureware.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 407 | hw_sureware.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 355 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 408 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 356 | hw_sureware.o: ../../include/openssl/opensslconf.h | 409 | hw_sureware.o: ../../include/openssl/opensslconf.h |
| 357 | hw_sureware.o: ../../include/openssl/opensslv.h | 410 | hw_sureware.o: ../../include/openssl/opensslv.h |
| 358 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 411 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 359 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 412 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 360 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 413 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 414 | hw_sureware.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 415 | hw_sureware.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 361 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 416 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 362 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 417 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 363 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | 418 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 364 | hw_sureware.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h | 419 | hw_sureware.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 365 | hw_sureware.o: engine.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h | 420 | hw_sureware.o: ../cryptlib.h eng_int.h engine.h hw_sureware.c hw_sureware_err.c |
| 366 | hw_sureware.o: vendor_defns/sureware.h | 421 | hw_sureware.o: hw_sureware_err.h vendor_defns/sureware.h |
| 367 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h | 422 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h |
| 368 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 423 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 369 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 424 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -377,77 +432,125 @@ hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |||
| 377 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 432 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 378 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h | 433 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h |
| 379 | hw_ubsec.o: vendor_defns/hw_ubsec.h | 434 | hw_ubsec.o: vendor_defns/hw_ubsec.h |
| 380 | tb_cipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 435 | tb_cipher.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 381 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 436 | tb_cipher.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 382 | tb_cipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 437 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 383 | tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 438 | tb_cipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 384 | tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 439 | tb_cipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 385 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 440 | tb_cipher.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 441 | tb_cipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 442 | tb_cipher.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 443 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 444 | tb_cipher.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 445 | tb_cipher.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 386 | tb_cipher.o: ../../include/openssl/objects.h | 446 | tb_cipher.o: ../../include/openssl/objects.h |
| 387 | tb_cipher.o: ../../include/openssl/opensslconf.h | 447 | tb_cipher.o: ../../include/openssl/opensslconf.h |
| 388 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 448 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 389 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 449 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 390 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 450 | tb_cipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 391 | tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 451 | tb_cipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 452 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 453 | tb_cipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 454 | tb_cipher.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 392 | tb_cipher.o: eng_int.h tb_cipher.c | 455 | tb_cipher.o: eng_int.h tb_cipher.c |
| 393 | tb_dh.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 456 | tb_dh.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 394 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 457 | tb_dh.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 395 | tb_dh.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 458 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 396 | tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 459 | tb_dh.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 397 | tb_dh.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 460 | tb_dh.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 398 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 461 | tb_dh.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 462 | tb_dh.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 463 | tb_dh.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 464 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 465 | tb_dh.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 466 | tb_dh.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 399 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 467 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 400 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 468 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 401 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 469 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 402 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 470 | tb_dh.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 403 | tb_dh.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | 471 | tb_dh.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 472 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 473 | tb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 474 | tb_dh.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h eng_int.h | ||
| 404 | tb_dh.o: tb_dh.c | 475 | tb_dh.o: tb_dh.c |
| 405 | tb_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 476 | tb_digest.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 406 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 477 | tb_digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 407 | tb_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 478 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 408 | tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 479 | tb_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 409 | tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 480 | tb_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 410 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 481 | tb_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 482 | tb_digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 483 | tb_digest.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 484 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 485 | tb_digest.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 486 | tb_digest.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 411 | tb_digest.o: ../../include/openssl/objects.h | 487 | tb_digest.o: ../../include/openssl/objects.h |
| 412 | tb_digest.o: ../../include/openssl/opensslconf.h | 488 | tb_digest.o: ../../include/openssl/opensslconf.h |
| 413 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 489 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 414 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 490 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 415 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 491 | tb_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 416 | tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 492 | tb_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 493 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 494 | tb_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 495 | tb_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 417 | tb_digest.o: eng_int.h tb_digest.c | 496 | tb_digest.o: eng_int.h tb_digest.c |
| 418 | tb_dsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 497 | tb_dsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 419 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 498 | tb_dsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 420 | tb_dsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 499 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 421 | tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 500 | tb_dsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 422 | tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 501 | tb_dsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 423 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 502 | tb_dsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 503 | tb_dsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 504 | tb_dsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 505 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 506 | tb_dsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 507 | tb_dsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 424 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 508 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 425 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 509 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 426 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 510 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 427 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 511 | tb_dsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 428 | tb_dsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | 512 | tb_dsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 429 | tb_dsa.o: tb_dsa.c | 513 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 430 | tb_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 514 | tb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 431 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 515 | tb_dsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 432 | tb_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 516 | tb_dsa.o: eng_int.h tb_dsa.c |
| 433 | tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 517 | tb_rand.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 434 | tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 518 | tb_rand.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 435 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 519 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 520 | tb_rand.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 521 | tb_rand.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 522 | tb_rand.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 523 | tb_rand.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 524 | tb_rand.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 525 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 526 | tb_rand.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 527 | tb_rand.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 436 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 528 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 437 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 529 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 438 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 530 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 439 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 531 | tb_rand.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 440 | tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 532 | tb_rand.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 533 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 534 | tb_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 535 | tb_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 441 | tb_rand.o: eng_int.h tb_rand.c | 536 | tb_rand.o: eng_int.h tb_rand.c |
| 442 | tb_rsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 537 | tb_rsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 443 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 538 | tb_rsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 444 | tb_rsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 539 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 445 | tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 540 | tb_rsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 446 | tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 541 | tb_rsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 447 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 542 | tb_rsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 543 | tb_rsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 544 | tb_rsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 545 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 546 | tb_rsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 547 | tb_rsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 448 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 548 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 449 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 549 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 450 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 550 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 451 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 551 | tb_rsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 452 | tb_rsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | 552 | tb_rsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 453 | tb_rsa.o: tb_rsa.c | 553 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 554 | tb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 555 | tb_rsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 556 | tb_rsa.o: eng_int.h tb_rsa.c | ||
diff --git a/src/lib/libcrypto/engine/eng_cnf.c b/src/lib/libcrypto/engine/eng_cnf.c index 8c0ae8a1ad..cdf670901a 100644 --- a/src/lib/libcrypto/engine/eng_cnf.c +++ b/src/lib/libcrypto/engine/eng_cnf.c | |||
| @@ -92,7 +92,7 @@ static int int_engine_init(ENGINE *e) | |||
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | 94 | ||
| 95 | int int_engine_configure(char *name, char *value, const CONF *cnf) | 95 | static int int_engine_configure(char *name, char *value, const CONF *cnf) |
| 96 | { | 96 | { |
| 97 | int i; | 97 | int i; |
| 98 | int ret = 0; | 98 | int ret = 0; |
diff --git a/src/lib/libcrypto/engine/eng_dyn.c b/src/lib/libcrypto/engine/eng_dyn.c index 4fefcc0cae..4139a16e76 100644 --- a/src/lib/libcrypto/engine/eng_dyn.c +++ b/src/lib/libcrypto/engine/eng_dyn.c | |||
| @@ -157,6 +157,10 @@ static void dynamic_data_ctx_free_func(void *parent, void *ptr, | |||
| 157 | dynamic_data_ctx *ctx = (dynamic_data_ctx *)ptr; | 157 | dynamic_data_ctx *ctx = (dynamic_data_ctx *)ptr; |
| 158 | if(ctx->dynamic_dso) | 158 | if(ctx->dynamic_dso) |
| 159 | DSO_free(ctx->dynamic_dso); | 159 | DSO_free(ctx->dynamic_dso); |
| 160 | if(ctx->DYNAMIC_LIBNAME) | ||
| 161 | OPENSSL_free((void*)ctx->DYNAMIC_LIBNAME); | ||
| 162 | if(ctx->engine_id) | ||
| 163 | OPENSSL_free((void*)ctx->engine_id); | ||
| 160 | OPENSSL_free(ctx); | 164 | OPENSSL_free(ctx); |
| 161 | } | 165 | } |
| 162 | } | 166 | } |
| @@ -169,7 +173,7 @@ static int dynamic_set_data_ctx(ENGINE *e, dynamic_data_ctx **ctx) | |||
| 169 | { | 173 | { |
| 170 | dynamic_data_ctx *c; | 174 | dynamic_data_ctx *c; |
| 171 | c = OPENSSL_malloc(sizeof(dynamic_data_ctx)); | 175 | c = OPENSSL_malloc(sizeof(dynamic_data_ctx)); |
| 172 | if(!ctx) | 176 | if(!c) |
| 173 | { | 177 | { |
| 174 | ENGINEerr(ENGINE_F_SET_DATA_CTX,ERR_R_MALLOC_FAILURE); | 178 | ENGINEerr(ENGINE_F_SET_DATA_CTX,ERR_R_MALLOC_FAILURE); |
| 175 | return 0; | 179 | return 0; |
| @@ -310,8 +314,13 @@ static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 310 | /* a NULL 'p' or a string of zero-length is the same thing */ | 314 | /* a NULL 'p' or a string of zero-length is the same thing */ |
| 311 | if(p && (strlen((const char *)p) < 1)) | 315 | if(p && (strlen((const char *)p) < 1)) |
| 312 | p = NULL; | 316 | p = NULL; |
| 313 | ctx->DYNAMIC_LIBNAME = (const char *)p; | 317 | if(ctx->DYNAMIC_LIBNAME) |
| 314 | return 1; | 318 | OPENSSL_free((void*)ctx->DYNAMIC_LIBNAME); |
| 319 | if(p) | ||
| 320 | ctx->DYNAMIC_LIBNAME = BUF_strdup(p); | ||
| 321 | else | ||
| 322 | ctx->DYNAMIC_LIBNAME = NULL; | ||
| 323 | return (ctx->DYNAMIC_LIBNAME ? 1 : 0); | ||
| 315 | case DYNAMIC_CMD_NO_VCHECK: | 324 | case DYNAMIC_CMD_NO_VCHECK: |
| 316 | ctx->no_vcheck = ((i == 0) ? 0 : 1); | 325 | ctx->no_vcheck = ((i == 0) ? 0 : 1); |
| 317 | return 1; | 326 | return 1; |
| @@ -319,8 +328,13 @@ static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 319 | /* a NULL 'p' or a string of zero-length is the same thing */ | 328 | /* a NULL 'p' or a string of zero-length is the same thing */ |
| 320 | if(p && (strlen((const char *)p) < 1)) | 329 | if(p && (strlen((const char *)p) < 1)) |
| 321 | p = NULL; | 330 | p = NULL; |
| 322 | ctx->engine_id = (const char *)p; | 331 | if(ctx->engine_id) |
| 323 | return 1; | 332 | OPENSSL_free((void*)ctx->engine_id); |
| 333 | if(p) | ||
| 334 | ctx->engine_id = BUF_strdup(p); | ||
| 335 | else | ||
| 336 | ctx->engine_id = NULL; | ||
| 337 | return (ctx->engine_id ? 1 : 0); | ||
| 324 | case DYNAMIC_CMD_LIST_ADD: | 338 | case DYNAMIC_CMD_LIST_ADD: |
| 325 | if((i < 0) || (i > 2)) | 339 | if((i < 0) || (i > 2)) |
| 326 | { | 340 | { |
diff --git a/src/lib/libcrypto/engine/eng_fat.c b/src/lib/libcrypto/engine/eng_fat.c index d49aa7ed40..f7edb5ad32 100644 --- a/src/lib/libcrypto/engine/eng_fat.c +++ b/src/lib/libcrypto/engine/eng_fat.c | |||
| @@ -84,7 +84,7 @@ int ENGINE_set_default(ENGINE *e, unsigned int flags) | |||
| 84 | 84 | ||
| 85 | /* Set default algorithms using a string */ | 85 | /* Set default algorithms using a string */ |
| 86 | 86 | ||
| 87 | int int_def_cb(const char *alg, int len, void *arg) | 87 | static int int_def_cb(const char *alg, int len, void *arg) |
| 88 | { | 88 | { |
| 89 | unsigned int *pflags = arg; | 89 | unsigned int *pflags = arg; |
| 90 | if (!strncmp(alg, "ALL", len)) | 90 | if (!strncmp(alg, "ALL", len)) |
diff --git a/src/lib/libcrypto/engine/hw_4758_cca.c b/src/lib/libcrypto/engine/hw_4758_cca.c index 0ca2f920dc..f404b1a3b8 100644 --- a/src/lib/libcrypto/engine/hw_4758_cca.c +++ b/src/lib/libcrypto/engine/hw_4758_cca.c | |||
| @@ -124,8 +124,24 @@ static F_RANDOMNUMBERGENERATE randomNumberGenerate; | |||
| 124 | 124 | ||
| 125 | /* static variables */ | 125 | /* static variables */ |
| 126 | /*------------------*/ | 126 | /*------------------*/ |
| 127 | static const char def_CCA4758_LIB_NAME[] = CCA_LIB_NAME; | 127 | static const char *CCA4758_LIB_NAME = NULL; |
| 128 | static const char *CCA4758_LIB_NAME = def_CCA4758_LIB_NAME; | 128 | static const char *get_CCA4758_LIB_NAME(void) |
| 129 | { | ||
| 130 | if(CCA4758_LIB_NAME) | ||
| 131 | return CCA4758_LIB_NAME; | ||
| 132 | return CCA_LIB_NAME; | ||
| 133 | } | ||
| 134 | static void free_CCA4758_LIB_NAME(void) | ||
| 135 | { | ||
| 136 | if(CCA4758_LIB_NAME) | ||
| 137 | OPENSSL_free((void*)CCA4758_LIB_NAME); | ||
| 138 | CCA4758_LIB_NAME = NULL; | ||
| 139 | } | ||
| 140 | static long set_CCA4758_LIB_NAME(const char *name) | ||
| 141 | { | ||
| 142 | free_CCA4758_LIB_NAME(); | ||
| 143 | return (((CCA4758_LIB_NAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 144 | } | ||
| 129 | #ifndef OPENSSL_NO_RSA | 145 | #ifndef OPENSSL_NO_RSA |
| 130 | static const char* n_keyRecordRead = CSNDKRR; | 146 | static const char* n_keyRecordRead = CSNDKRR; |
| 131 | static const char* n_digitalSignatureGenerate = CSNDDSG; | 147 | static const char* n_digitalSignatureGenerate = CSNDDSG; |
| @@ -232,6 +248,7 @@ void ENGINE_load_4758cca(void) | |||
| 232 | static int ibm_4758_cca_destroy(ENGINE *e) | 248 | static int ibm_4758_cca_destroy(ENGINE *e) |
| 233 | { | 249 | { |
| 234 | ERR_unload_CCA4758_strings(); | 250 | ERR_unload_CCA4758_strings(); |
| 251 | free_CCA4758_LIB_NAME(); | ||
| 235 | return 1; | 252 | return 1; |
| 236 | } | 253 | } |
| 237 | 254 | ||
| @@ -243,7 +260,7 @@ static int ibm_4758_cca_init(ENGINE *e) | |||
| 243 | goto err; | 260 | goto err; |
| 244 | } | 261 | } |
| 245 | 262 | ||
| 246 | dso = DSO_load(NULL, CCA4758_LIB_NAME , NULL, 0); | 263 | dso = DSO_load(NULL, get_CCA4758_LIB_NAME(), NULL, 0); |
| 247 | if(!dso) | 264 | if(!dso) |
| 248 | { | 265 | { |
| 249 | CCA4758err(CCA4758_F_IBM_4758_CCA_INIT,CCA4758_R_DSO_FAILURE); | 266 | CCA4758err(CCA4758_F_IBM_4758_CCA_INIT,CCA4758_R_DSO_FAILURE); |
| @@ -299,7 +316,8 @@ err: | |||
| 299 | 316 | ||
| 300 | static int ibm_4758_cca_finish(ENGINE *e) | 317 | static int ibm_4758_cca_finish(ENGINE *e) |
| 301 | { | 318 | { |
| 302 | if(dso) | 319 | free_CCA4758_LIB_NAME(); |
| 320 | if(!dso) | ||
| 303 | { | 321 | { |
| 304 | CCA4758err(CCA4758_F_IBM_4758_CCA_FINISH, | 322 | CCA4758err(CCA4758_F_IBM_4758_CCA_FINISH, |
| 305 | CCA4758_R_NOT_LOADED); | 323 | CCA4758_R_NOT_LOADED); |
| @@ -340,8 +358,7 @@ static int ibm_4758_cca_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 340 | CCA4758_R_ALREADY_LOADED); | 358 | CCA4758_R_ALREADY_LOADED); |
| 341 | return 0; | 359 | return 0; |
| 342 | } | 360 | } |
| 343 | CCA4758_LIB_NAME = (const char *)p; | 361 | return set_CCA4758_LIB_NAME((const char *)p); |
| 344 | return 1; | ||
| 345 | default: | 362 | default: |
| 346 | break; | 363 | break; |
| 347 | } | 364 | } |
diff --git a/src/lib/libcrypto/engine/hw_aep.c b/src/lib/libcrypto/engine/hw_aep.c index cf4507cff1..8b8380a582 100644 --- a/src/lib/libcrypto/engine/hw_aep.c +++ b/src/lib/libcrypto/engine/hw_aep.c | |||
| @@ -60,7 +60,7 @@ | |||
| 60 | #include <string.h> | 60 | #include <string.h> |
| 61 | 61 | ||
| 62 | #include <openssl/e_os2.h> | 62 | #include <openssl/e_os2.h> |
| 63 | #ifndef OPENSSL_SYS_MSDOS | 63 | #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) |
| 64 | #include <sys/types.h> | 64 | #include <sys/types.h> |
| 65 | #include <unistd.h> | 65 | #include <unistd.h> |
| 66 | #else | 66 | #else |
| @@ -71,6 +71,7 @@ typedef int pid_t; | |||
| 71 | #include <openssl/crypto.h> | 71 | #include <openssl/crypto.h> |
| 72 | #include <openssl/dso.h> | 72 | #include <openssl/dso.h> |
| 73 | #include <openssl/engine.h> | 73 | #include <openssl/engine.h> |
| 74 | #include <openssl/buffer.h> | ||
| 74 | 75 | ||
| 75 | #ifndef OPENSSL_NO_HW | 76 | #ifndef OPENSSL_NO_HW |
| 76 | #ifndef OPENSSL_NO_HW_AEP | 77 | #ifndef OPENSSL_NO_HW_AEP |
| @@ -363,7 +364,24 @@ static DSO *aep_dso = NULL; | |||
| 363 | /* These are the static string constants for the DSO file name and the function | 364 | /* These are the static string constants for the DSO file name and the function |
| 364 | * symbol names to bind to. | 365 | * symbol names to bind to. |
| 365 | */ | 366 | */ |
| 366 | static const char *AEP_LIBNAME = "aep"; | 367 | static const char *AEP_LIBNAME = NULL; |
| 368 | static const char *get_AEP_LIBNAME(void) | ||
| 369 | { | ||
| 370 | if(AEP_LIBNAME) | ||
| 371 | return AEP_LIBNAME; | ||
| 372 | return "aep"; | ||
| 373 | } | ||
| 374 | static void free_AEP_LIBNAME(void) | ||
| 375 | { | ||
| 376 | if(AEP_LIBNAME) | ||
| 377 | OPENSSL_free((void*)AEP_LIBNAME); | ||
| 378 | AEP_LIBNAME = NULL; | ||
| 379 | } | ||
| 380 | static long set_AEP_LIBNAME(const char *name) | ||
| 381 | { | ||
| 382 | free_AEP_LIBNAME(); | ||
| 383 | return ((AEP_LIBNAME = BUF_strdup(name)) != NULL ? 1 : 0); | ||
| 384 | } | ||
| 367 | 385 | ||
| 368 | static const char *AEP_F1 = "AEP_ModExp"; | 386 | static const char *AEP_F1 = "AEP_ModExp"; |
| 369 | static const char *AEP_F2 = "AEP_ModExpCrt"; | 387 | static const char *AEP_F2 = "AEP_ModExpCrt"; |
| @@ -412,7 +430,7 @@ static int aep_init(ENGINE *e) | |||
| 412 | } | 430 | } |
| 413 | /* Attempt to load libaep.so. */ | 431 | /* Attempt to load libaep.so. */ |
| 414 | 432 | ||
| 415 | aep_dso = DSO_load(NULL, AEP_LIBNAME, NULL, 0); | 433 | aep_dso = DSO_load(NULL, get_AEP_LIBNAME(), NULL, 0); |
| 416 | 434 | ||
| 417 | if(aep_dso == NULL) | 435 | if(aep_dso == NULL) |
| 418 | { | 436 | { |
| @@ -474,6 +492,7 @@ static int aep_init(ENGINE *e) | |||
| 474 | /* Destructor (complements the "ENGINE_aep()" constructor) */ | 492 | /* Destructor (complements the "ENGINE_aep()" constructor) */ |
| 475 | static int aep_destroy(ENGINE *e) | 493 | static int aep_destroy(ENGINE *e) |
| 476 | { | 494 | { |
| 495 | free_AEP_LIBNAME(); | ||
| 477 | ERR_unload_AEPHK_strings(); | 496 | ERR_unload_AEPHK_strings(); |
| 478 | return 1; | 497 | return 1; |
| 479 | } | 498 | } |
| @@ -549,8 +568,7 @@ static int aep_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 549 | AEPHK_R_ALREADY_LOADED); | 568 | AEPHK_R_ALREADY_LOADED); |
| 550 | return 0; | 569 | return 0; |
| 551 | } | 570 | } |
| 552 | AEP_LIBNAME = (const char *)p; | 571 | return set_AEP_LIBNAME((const char*)p); |
| 553 | return 1; | ||
| 554 | default: | 572 | default: |
| 555 | break; | 573 | break; |
| 556 | } | 574 | } |
diff --git a/src/lib/libcrypto/engine/hw_atalla.c b/src/lib/libcrypto/engine/hw_atalla.c index 696cfcf156..6151c46902 100644 --- a/src/lib/libcrypto/engine/hw_atalla.c +++ b/src/lib/libcrypto/engine/hw_atalla.c | |||
| @@ -286,8 +286,24 @@ static tfnASI_GetPerformanceStatistics *p_Atalla_GetPerformanceStatistics = NULL | |||
| 286 | * atasi.dll on win32). For the purposes of testing, I have created a symbollic | 286 | * atasi.dll on win32). For the purposes of testing, I have created a symbollic |
| 287 | * link called "libatasi.so" so that we can use native name-translation - a | 287 | * link called "libatasi.so" so that we can use native name-translation - a |
| 288 | * better solution will be needed. */ | 288 | * better solution will be needed. */ |
| 289 | static const char def_ATALLA_LIBNAME[] = "atasi"; | 289 | static const char *ATALLA_LIBNAME = NULL; |
| 290 | static const char *ATALLA_LIBNAME = def_ATALLA_LIBNAME; | 290 | static const char *get_ATALLA_LIBNAME(void) |
| 291 | { | ||
| 292 | if(ATALLA_LIBNAME) | ||
| 293 | return ATALLA_LIBNAME; | ||
| 294 | return "atasi"; | ||
| 295 | } | ||
| 296 | static void free_ATALLA_LIBNAME(void) | ||
| 297 | { | ||
| 298 | if(ATALLA_LIBNAME) | ||
| 299 | OPENSSL_free((void*)ATALLA_LIBNAME); | ||
| 300 | ATALLA_LIBNAME = NULL; | ||
| 301 | } | ||
| 302 | static long set_ATALLA_LIBNAME(const char *name) | ||
| 303 | { | ||
| 304 | free_ATALLA_LIBNAME(); | ||
| 305 | return (((ATALLA_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 306 | } | ||
| 291 | static const char *ATALLA_F1 = "ASI_GetHardwareConfig"; | 307 | static const char *ATALLA_F1 = "ASI_GetHardwareConfig"; |
| 292 | static const char *ATALLA_F2 = "ASI_RSAPrivateKeyOpFn"; | 308 | static const char *ATALLA_F2 = "ASI_RSAPrivateKeyOpFn"; |
| 293 | static const char *ATALLA_F3 = "ASI_GetPerformanceStatistics"; | 309 | static const char *ATALLA_F3 = "ASI_GetPerformanceStatistics"; |
| @@ -295,6 +311,7 @@ static const char *ATALLA_F3 = "ASI_GetPerformanceStatistics"; | |||
| 295 | /* Destructor (complements the "ENGINE_atalla()" constructor) */ | 311 | /* Destructor (complements the "ENGINE_atalla()" constructor) */ |
| 296 | static int atalla_destroy(ENGINE *e) | 312 | static int atalla_destroy(ENGINE *e) |
| 297 | { | 313 | { |
| 314 | free_ATALLA_LIBNAME(); | ||
| 298 | /* Unload the atalla error strings so any error state including our | 315 | /* Unload the atalla error strings so any error state including our |
| 299 | * functs or reasons won't lead to a segfault (they simply get displayed | 316 | * functs or reasons won't lead to a segfault (they simply get displayed |
| 300 | * without corresponding string data because none will be found). */ | 317 | * without corresponding string data because none will be found). */ |
| @@ -324,7 +341,7 @@ static int atalla_init(ENGINE *e) | |||
| 324 | * drivers really use - for now a symbollic link needs to be | 341 | * drivers really use - for now a symbollic link needs to be |
| 325 | * created on the host system from libatasi.so to atasi.so on | 342 | * created on the host system from libatasi.so to atasi.so on |
| 326 | * unix variants. */ | 343 | * unix variants. */ |
| 327 | atalla_dso = DSO_load(NULL, ATALLA_LIBNAME, NULL, 0); | 344 | atalla_dso = DSO_load(NULL, get_ATALLA_LIBNAME(), NULL, 0); |
| 328 | if(atalla_dso == NULL) | 345 | if(atalla_dso == NULL) |
| 329 | { | 346 | { |
| 330 | ATALLAerr(ATALLA_F_ATALLA_INIT,ATALLA_R_NOT_LOADED); | 347 | ATALLAerr(ATALLA_F_ATALLA_INIT,ATALLA_R_NOT_LOADED); |
| @@ -364,6 +381,7 @@ err: | |||
| 364 | 381 | ||
| 365 | static int atalla_finish(ENGINE *e) | 382 | static int atalla_finish(ENGINE *e) |
| 366 | { | 383 | { |
| 384 | free_ATALLA_LIBNAME(); | ||
| 367 | if(atalla_dso == NULL) | 385 | if(atalla_dso == NULL) |
| 368 | { | 386 | { |
| 369 | ATALLAerr(ATALLA_F_ATALLA_FINISH,ATALLA_R_NOT_LOADED); | 387 | ATALLAerr(ATALLA_F_ATALLA_FINISH,ATALLA_R_NOT_LOADED); |
| @@ -397,8 +415,7 @@ static int atalla_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 397 | ATALLAerr(ATALLA_F_ATALLA_CTRL,ATALLA_R_ALREADY_LOADED); | 415 | ATALLAerr(ATALLA_F_ATALLA_CTRL,ATALLA_R_ALREADY_LOADED); |
| 398 | return 0; | 416 | return 0; |
| 399 | } | 417 | } |
| 400 | ATALLA_LIBNAME = (const char *)p; | 418 | return set_ATALLA_LIBNAME((const char *)p); |
| 401 | return 1; | ||
| 402 | default: | 419 | default: |
| 403 | break; | 420 | break; |
| 404 | } | 421 | } |
diff --git a/src/lib/libcrypto/engine/hw_cswift.c b/src/lib/libcrypto/engine/hw_cswift.c index da732abce0..f5c897bdbb 100644 --- a/src/lib/libcrypto/engine/hw_cswift.c +++ b/src/lib/libcrypto/engine/hw_cswift.c | |||
| @@ -280,8 +280,24 @@ t_swSimpleRequest *p_CSwift_SimpleRequest = NULL; | |||
| 280 | t_swReleaseAccContext *p_CSwift_ReleaseAccContext = NULL; | 280 | t_swReleaseAccContext *p_CSwift_ReleaseAccContext = NULL; |
| 281 | 281 | ||
| 282 | /* Used in the DSO operations. */ | 282 | /* Used in the DSO operations. */ |
| 283 | static const char def_CSWIFT_LIBNAME[] = "swift"; | 283 | static const char *CSWIFT_LIBNAME = NULL; |
| 284 | static const char *CSWIFT_LIBNAME = def_CSWIFT_LIBNAME; | 284 | static const char *get_CSWIFT_LIBNAME(void) |
| 285 | { | ||
| 286 | if(CSWIFT_LIBNAME) | ||
| 287 | return CSWIFT_LIBNAME; | ||
| 288 | return "swift"; | ||
| 289 | } | ||
| 290 | static void free_CSWIFT_LIBNAME(void) | ||
| 291 | { | ||
| 292 | if(CSWIFT_LIBNAME) | ||
| 293 | OPENSSL_free((void*)CSWIFT_LIBNAME); | ||
| 294 | CSWIFT_LIBNAME = NULL; | ||
| 295 | } | ||
| 296 | static long set_CSWIFT_LIBNAME(const char *name) | ||
| 297 | { | ||
| 298 | free_CSWIFT_LIBNAME(); | ||
| 299 | return (((CSWIFT_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 300 | } | ||
| 285 | static const char *CSWIFT_F1 = "swAcquireAccContext"; | 301 | static const char *CSWIFT_F1 = "swAcquireAccContext"; |
| 286 | static const char *CSWIFT_F2 = "swAttachKeyParam"; | 302 | static const char *CSWIFT_F2 = "swAttachKeyParam"; |
| 287 | static const char *CSWIFT_F3 = "swSimpleRequest"; | 303 | static const char *CSWIFT_F3 = "swSimpleRequest"; |
| @@ -313,6 +329,7 @@ static void release_context(SW_CONTEXT_HANDLE hac) | |||
| 313 | /* Destructor (complements the "ENGINE_cswift()" constructor) */ | 329 | /* Destructor (complements the "ENGINE_cswift()" constructor) */ |
| 314 | static int cswift_destroy(ENGINE *e) | 330 | static int cswift_destroy(ENGINE *e) |
| 315 | { | 331 | { |
| 332 | free_CSWIFT_LIBNAME(); | ||
| 316 | ERR_unload_CSWIFT_strings(); | 333 | ERR_unload_CSWIFT_strings(); |
| 317 | return 1; | 334 | return 1; |
| 318 | } | 335 | } |
| @@ -332,7 +349,7 @@ static int cswift_init(ENGINE *e) | |||
| 332 | goto err; | 349 | goto err; |
| 333 | } | 350 | } |
| 334 | /* Attempt to load libswift.so/swift.dll/whatever. */ | 351 | /* Attempt to load libswift.so/swift.dll/whatever. */ |
| 335 | cswift_dso = DSO_load(NULL, CSWIFT_LIBNAME, NULL, 0); | 352 | cswift_dso = DSO_load(NULL, get_CSWIFT_LIBNAME(), NULL, 0); |
| 336 | if(cswift_dso == NULL) | 353 | if(cswift_dso == NULL) |
| 337 | { | 354 | { |
| 338 | CSWIFTerr(CSWIFT_F_CSWIFT_INIT,CSWIFT_R_NOT_LOADED); | 355 | CSWIFTerr(CSWIFT_F_CSWIFT_INIT,CSWIFT_R_NOT_LOADED); |
| @@ -377,6 +394,7 @@ err: | |||
| 377 | 394 | ||
| 378 | static int cswift_finish(ENGINE *e) | 395 | static int cswift_finish(ENGINE *e) |
| 379 | { | 396 | { |
| 397 | free_CSWIFT_LIBNAME(); | ||
| 380 | if(cswift_dso == NULL) | 398 | if(cswift_dso == NULL) |
| 381 | { | 399 | { |
| 382 | CSWIFTerr(CSWIFT_F_CSWIFT_FINISH,CSWIFT_R_NOT_LOADED); | 400 | CSWIFTerr(CSWIFT_F_CSWIFT_FINISH,CSWIFT_R_NOT_LOADED); |
| @@ -411,8 +429,7 @@ static int cswift_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 411 | CSWIFTerr(CSWIFT_F_CSWIFT_CTRL,CSWIFT_R_ALREADY_LOADED); | 429 | CSWIFTerr(CSWIFT_F_CSWIFT_CTRL,CSWIFT_R_ALREADY_LOADED); |
| 412 | return 0; | 430 | return 0; |
| 413 | } | 431 | } |
| 414 | CSWIFT_LIBNAME = (const char *)p; | 432 | return set_CSWIFT_LIBNAME((const char *)p); |
| 415 | return 1; | ||
| 416 | default: | 433 | default: |
| 417 | break; | 434 | break; |
| 418 | } | 435 | } |
diff --git a/src/lib/libcrypto/engine/hw_ncipher.c b/src/lib/libcrypto/engine/hw_ncipher.c index 4762a54e3d..a43d4360f2 100644 --- a/src/lib/libcrypto/engine/hw_ncipher.c +++ b/src/lib/libcrypto/engine/hw_ncipher.c | |||
| @@ -59,9 +59,9 @@ | |||
| 59 | 59 | ||
| 60 | #include <stdio.h> | 60 | #include <stdio.h> |
| 61 | #include <string.h> | 61 | #include <string.h> |
| 62 | #include "cryptlib.h" | ||
| 62 | #include <openssl/crypto.h> | 63 | #include <openssl/crypto.h> |
| 63 | #include <openssl/pem.h> | 64 | #include <openssl/pem.h> |
| 64 | #include "cryptlib.h" | ||
| 65 | #include <openssl/dso.h> | 65 | #include <openssl/dso.h> |
| 66 | #include <openssl/engine.h> | 66 | #include <openssl/engine.h> |
| 67 | #include <openssl/ui.h> | 67 | #include <openssl/ui.h> |
| @@ -109,11 +109,13 @@ static int hwcrhk_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa); | |||
| 109 | static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, | 109 | static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, |
| 110 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); | 110 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); |
| 111 | 111 | ||
| 112 | #ifndef OPENSSL_NO_DH | ||
| 112 | /* DH stuff */ | 113 | /* DH stuff */ |
| 113 | /* This function is alised to mod_exp (with the DH and mont dropped). */ | 114 | /* This function is alised to mod_exp (with the DH and mont dropped). */ |
| 114 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, | 115 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, |
| 115 | const BIGNUM *a, const BIGNUM *p, | 116 | const BIGNUM *a, const BIGNUM *p, |
| 116 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); | 117 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); |
| 118 | #endif | ||
| 117 | 119 | ||
| 118 | /* RAND stuff */ | 120 | /* RAND stuff */ |
| 119 | static int hwcrhk_rand_bytes(unsigned char *buf, int num); | 121 | static int hwcrhk_rand_bytes(unsigned char *buf, int num); |
| @@ -422,8 +424,24 @@ static HWCryptoHook_RSAUnloadKey_t *p_hwcrhk_RSAUnloadKey = NULL; | |||
| 422 | static HWCryptoHook_ModExpCRT_t *p_hwcrhk_ModExpCRT = NULL; | 424 | static HWCryptoHook_ModExpCRT_t *p_hwcrhk_ModExpCRT = NULL; |
| 423 | 425 | ||
| 424 | /* Used in the DSO operations. */ | 426 | /* Used in the DSO operations. */ |
| 425 | static const char def_HWCRHK_LIBNAME[] = "nfhwcrhk"; | 427 | static const char *HWCRHK_LIBNAME = NULL; |
| 426 | static const char *HWCRHK_LIBNAME = def_HWCRHK_LIBNAME; | 428 | static void free_HWCRHK_LIBNAME(void) |
| 429 | { | ||
| 430 | if(HWCRHK_LIBNAME) | ||
| 431 | OPENSSL_free((void*)HWCRHK_LIBNAME); | ||
| 432 | HWCRHK_LIBNAME = NULL; | ||
| 433 | } | ||
| 434 | static const char *get_HWCRHK_LIBNAME(void) | ||
| 435 | { | ||
| 436 | if(HWCRHK_LIBNAME) | ||
| 437 | return HWCRHK_LIBNAME; | ||
| 438 | return "nfhwcrhk"; | ||
| 439 | } | ||
| 440 | static long set_HWCRHK_LIBNAME(const char *name) | ||
| 441 | { | ||
| 442 | free_HWCRHK_LIBNAME(); | ||
| 443 | return (((HWCRHK_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 444 | } | ||
| 427 | static const char *n_hwcrhk_Init = "HWCryptoHook_Init"; | 445 | static const char *n_hwcrhk_Init = "HWCryptoHook_Init"; |
| 428 | static const char *n_hwcrhk_Finish = "HWCryptoHook_Finish"; | 446 | static const char *n_hwcrhk_Finish = "HWCryptoHook_Finish"; |
| 429 | static const char *n_hwcrhk_ModExp = "HWCryptoHook_ModExp"; | 447 | static const char *n_hwcrhk_ModExp = "HWCryptoHook_ModExp"; |
| @@ -469,6 +487,7 @@ static void release_context(HWCryptoHook_ContextHandle hac) | |||
| 469 | /* Destructor (complements the "ENGINE_ncipher()" constructor) */ | 487 | /* Destructor (complements the "ENGINE_ncipher()" constructor) */ |
| 470 | static int hwcrhk_destroy(ENGINE *e) | 488 | static int hwcrhk_destroy(ENGINE *e) |
| 471 | { | 489 | { |
| 490 | free_HWCRHK_LIBNAME(); | ||
| 472 | ERR_unload_HWCRHK_strings(); | 491 | ERR_unload_HWCRHK_strings(); |
| 473 | return 1; | 492 | return 1; |
| 474 | } | 493 | } |
| @@ -494,7 +513,7 @@ static int hwcrhk_init(ENGINE *e) | |||
| 494 | goto err; | 513 | goto err; |
| 495 | } | 514 | } |
| 496 | /* Attempt to load libnfhwcrhk.so/nfhwcrhk.dll/whatever. */ | 515 | /* Attempt to load libnfhwcrhk.so/nfhwcrhk.dll/whatever. */ |
| 497 | hwcrhk_dso = DSO_load(NULL, HWCRHK_LIBNAME, NULL, 0); | 516 | hwcrhk_dso = DSO_load(NULL, get_HWCRHK_LIBNAME(), NULL, 0); |
| 498 | if(hwcrhk_dso == NULL) | 517 | if(hwcrhk_dso == NULL) |
| 499 | { | 518 | { |
| 500 | HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_DSO_FAILURE); | 519 | HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_DSO_FAILURE); |
| @@ -586,6 +605,7 @@ err: | |||
| 586 | static int hwcrhk_finish(ENGINE *e) | 605 | static int hwcrhk_finish(ENGINE *e) |
| 587 | { | 606 | { |
| 588 | int to_return = 1; | 607 | int to_return = 1; |
| 608 | free_HWCRHK_LIBNAME(); | ||
| 589 | if(hwcrhk_dso == NULL) | 609 | if(hwcrhk_dso == NULL) |
| 590 | { | 610 | { |
| 591 | HWCRHKerr(HWCRHK_F_HWCRHK_FINISH,HWCRHK_R_NOT_LOADED); | 611 | HWCRHKerr(HWCRHK_F_HWCRHK_FINISH,HWCRHK_R_NOT_LOADED); |
| @@ -634,8 +654,7 @@ static int hwcrhk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 634 | HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,ERR_R_PASSED_NULL_PARAMETER); | 654 | HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,ERR_R_PASSED_NULL_PARAMETER); |
| 635 | return 0; | 655 | return 0; |
| 636 | } | 656 | } |
| 637 | HWCRHK_LIBNAME = (const char *)p; | 657 | return set_HWCRHK_LIBNAME((const char *)p); |
| 638 | return 1; | ||
| 639 | case ENGINE_CTRL_SET_LOGSTREAM: | 658 | case ENGINE_CTRL_SET_LOGSTREAM: |
| 640 | { | 659 | { |
| 641 | BIO *bio = (BIO *)p; | 660 | BIO *bio = (BIO *)p; |
| @@ -1040,6 +1059,7 @@ static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, | |||
| 1040 | return hwcrhk_mod_exp(r, a, p, m, ctx); | 1059 | return hwcrhk_mod_exp(r, a, p, m, ctx); |
| 1041 | } | 1060 | } |
| 1042 | 1061 | ||
| 1062 | #ifndef OPENSSL_NO_DH | ||
| 1043 | /* This function is aliased to mod_exp (with the dh and mont dropped). */ | 1063 | /* This function is aliased to mod_exp (with the dh and mont dropped). */ |
| 1044 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, | 1064 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, |
| 1045 | const BIGNUM *a, const BIGNUM *p, | 1065 | const BIGNUM *a, const BIGNUM *p, |
| @@ -1047,6 +1067,7 @@ static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, | |||
| 1047 | { | 1067 | { |
| 1048 | return hwcrhk_mod_exp(r, a, p, m, ctx); | 1068 | return hwcrhk_mod_exp(r, a, p, m, ctx); |
| 1049 | } | 1069 | } |
| 1070 | #endif | ||
| 1050 | 1071 | ||
| 1051 | /* Random bytes are good */ | 1072 | /* Random bytes are good */ |
| 1052 | static int hwcrhk_rand_bytes(unsigned char *buf, int num) | 1073 | static int hwcrhk_rand_bytes(unsigned char *buf, int num) |
diff --git a/src/lib/libcrypto/engine/hw_nuron.c b/src/lib/libcrypto/engine/hw_nuron.c index 2672012154..130b6d8b40 100644 --- a/src/lib/libcrypto/engine/hw_nuron.c +++ b/src/lib/libcrypto/engine/hw_nuron.c | |||
| @@ -69,8 +69,24 @@ | |||
| 69 | #define NURON_LIB_NAME "nuron engine" | 69 | #define NURON_LIB_NAME "nuron engine" |
| 70 | #include "hw_nuron_err.c" | 70 | #include "hw_nuron_err.c" |
| 71 | 71 | ||
| 72 | static const char def_NURON_LIBNAME[] = "nuronssl"; | 72 | static const char *NURON_LIBNAME = NULL; |
| 73 | static const char *NURON_LIBNAME = def_NURON_LIBNAME; | 73 | static const char *get_NURON_LIBNAME(void) |
| 74 | { | ||
| 75 | if(NURON_LIBNAME) | ||
| 76 | return NURON_LIBNAME; | ||
| 77 | return "nuronssl"; | ||
| 78 | } | ||
| 79 | static void free_NURON_LIBNAME(void) | ||
| 80 | { | ||
| 81 | if(NURON_LIBNAME) | ||
| 82 | OPENSSL_free((void*)NURON_LIBNAME); | ||
| 83 | NURON_LIBNAME = NULL; | ||
| 84 | } | ||
| 85 | static long set_NURON_LIBNAME(const char *name) | ||
| 86 | { | ||
| 87 | free_NURON_LIBNAME(); | ||
| 88 | return (((NURON_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 89 | } | ||
| 74 | static const char *NURON_F1 = "nuron_mod_exp"; | 90 | static const char *NURON_F1 = "nuron_mod_exp"; |
| 75 | 91 | ||
| 76 | /* The definitions for control commands specific to this engine */ | 92 | /* The definitions for control commands specific to this engine */ |
| @@ -90,6 +106,7 @@ static DSO *pvDSOHandle = NULL; | |||
| 90 | 106 | ||
| 91 | static int nuron_destroy(ENGINE *e) | 107 | static int nuron_destroy(ENGINE *e) |
| 92 | { | 108 | { |
| 109 | free_NURON_LIBNAME(); | ||
| 93 | ERR_unload_NURON_strings(); | 110 | ERR_unload_NURON_strings(); |
| 94 | return 1; | 111 | return 1; |
| 95 | } | 112 | } |
| @@ -102,7 +119,7 @@ static int nuron_init(ENGINE *e) | |||
| 102 | return 0; | 119 | return 0; |
| 103 | } | 120 | } |
| 104 | 121 | ||
| 105 | pvDSOHandle = DSO_load(NULL, NURON_LIBNAME, NULL, | 122 | pvDSOHandle = DSO_load(NULL, get_NURON_LIBNAME(), NULL, |
| 106 | DSO_FLAG_NAME_TRANSLATION_EXT_ONLY); | 123 | DSO_FLAG_NAME_TRANSLATION_EXT_ONLY); |
| 107 | if(!pvDSOHandle) | 124 | if(!pvDSOHandle) |
| 108 | { | 125 | { |
| @@ -122,6 +139,7 @@ static int nuron_init(ENGINE *e) | |||
| 122 | 139 | ||
| 123 | static int nuron_finish(ENGINE *e) | 140 | static int nuron_finish(ENGINE *e) |
| 124 | { | 141 | { |
| 142 | free_NURON_LIBNAME(); | ||
| 125 | if(pvDSOHandle == NULL) | 143 | if(pvDSOHandle == NULL) |
| 126 | { | 144 | { |
| 127 | NURONerr(NURON_F_NURON_FINISH,NURON_R_NOT_LOADED); | 145 | NURONerr(NURON_F_NURON_FINISH,NURON_R_NOT_LOADED); |
| @@ -153,8 +171,7 @@ static int nuron_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 153 | NURONerr(NURON_F_NURON_CTRL,NURON_R_ALREADY_LOADED); | 171 | NURONerr(NURON_F_NURON_CTRL,NURON_R_ALREADY_LOADED); |
| 154 | return 0; | 172 | return 0; |
| 155 | } | 173 | } |
| 156 | NURON_LIBNAME = (const char *)p; | 174 | return set_NURON_LIBNAME((const char *)p); |
| 157 | return 1; | ||
| 158 | default: | 175 | default: |
| 159 | break; | 176 | break; |
| 160 | } | 177 | } |
diff --git a/src/lib/libcrypto/engine/hw_ubsec.c b/src/lib/libcrypto/engine/hw_ubsec.c index 743c06043c..63397f868c 100644 --- a/src/lib/libcrypto/engine/hw_ubsec.c +++ b/src/lib/libcrypto/engine/hw_ubsec.c | |||
| @@ -304,7 +304,24 @@ static int max_key_len = 1024; /* ??? */ | |||
| 304 | * symbol names to bind to. | 304 | * symbol names to bind to. |
| 305 | */ | 305 | */ |
| 306 | 306 | ||
| 307 | static const char *UBSEC_LIBNAME = "ubsec"; | 307 | static const char *UBSEC_LIBNAME = NULL; |
| 308 | static const char *get_UBSEC_LIBNAME(void) | ||
| 309 | { | ||
| 310 | if(UBSEC_LIBNAME) | ||
| 311 | return UBSEC_LIBNAME; | ||
| 312 | return "ubsec"; | ||
| 313 | } | ||
| 314 | static void free_UBSEC_LIBNAME(void) | ||
| 315 | { | ||
| 316 | if(UBSEC_LIBNAME) | ||
| 317 | OPENSSL_free((void*)UBSEC_LIBNAME); | ||
| 318 | UBSEC_LIBNAME = NULL; | ||
| 319 | } | ||
| 320 | static long set_UBSEC_LIBNAME(const char *name) | ||
| 321 | { | ||
| 322 | free_UBSEC_LIBNAME(); | ||
| 323 | return (((UBSEC_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 324 | } | ||
| 308 | static const char *UBSEC_F1 = "ubsec_bytes_to_bits"; | 325 | static const char *UBSEC_F1 = "ubsec_bytes_to_bits"; |
| 309 | static const char *UBSEC_F2 = "ubsec_bits_to_bytes"; | 326 | static const char *UBSEC_F2 = "ubsec_bits_to_bytes"; |
| 310 | static const char *UBSEC_F3 = "ubsec_open"; | 327 | static const char *UBSEC_F3 = "ubsec_open"; |
| @@ -328,6 +345,7 @@ static const char *UBSEC_F13 = "ubsec_max_key_len_ioctl"; | |||
| 328 | /* Destructor (complements the "ENGINE_ubsec()" constructor) */ | 345 | /* Destructor (complements the "ENGINE_ubsec()" constructor) */ |
| 329 | static int ubsec_destroy(ENGINE *e) | 346 | static int ubsec_destroy(ENGINE *e) |
| 330 | { | 347 | { |
| 348 | free_UBSEC_LIBNAME(); | ||
| 331 | ERR_unload_UBSEC_strings(); | 349 | ERR_unload_UBSEC_strings(); |
| 332 | return 1; | 350 | return 1; |
| 333 | } | 351 | } |
| @@ -364,7 +382,7 @@ static int ubsec_init(ENGINE *e) | |||
| 364 | /* | 382 | /* |
| 365 | * Attempt to load libubsec.so/ubsec.dll/whatever. | 383 | * Attempt to load libubsec.so/ubsec.dll/whatever. |
| 366 | */ | 384 | */ |
| 367 | ubsec_dso = DSO_load(NULL, UBSEC_LIBNAME, NULL, 0); | 385 | ubsec_dso = DSO_load(NULL, get_UBSEC_LIBNAME(), NULL, 0); |
| 368 | if(ubsec_dso == NULL) | 386 | if(ubsec_dso == NULL) |
| 369 | { | 387 | { |
| 370 | UBSECerr(UBSEC_F_UBSEC_INIT, UBSEC_R_DSO_FAILURE); | 388 | UBSECerr(UBSEC_F_UBSEC_INIT, UBSEC_R_DSO_FAILURE); |
| @@ -459,6 +477,7 @@ err: | |||
| 459 | 477 | ||
| 460 | static int ubsec_finish(ENGINE *e) | 478 | static int ubsec_finish(ENGINE *e) |
| 461 | { | 479 | { |
| 480 | free_UBSEC_LIBNAME(); | ||
| 462 | if(ubsec_dso == NULL) | 481 | if(ubsec_dso == NULL) |
| 463 | { | 482 | { |
| 464 | UBSECerr(UBSEC_F_UBSEC_FINISH, UBSEC_R_NOT_LOADED); | 483 | UBSECerr(UBSEC_F_UBSEC_FINISH, UBSEC_R_NOT_LOADED); |
| @@ -508,8 +527,7 @@ static int ubsec_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 508 | UBSECerr(UBSEC_F_UBSEC_CTRL,UBSEC_R_ALREADY_LOADED); | 527 | UBSECerr(UBSEC_F_UBSEC_CTRL,UBSEC_R_ALREADY_LOADED); |
| 509 | return 0; | 528 | return 0; |
| 510 | } | 529 | } |
| 511 | UBSEC_LIBNAME = (const char *)p; | 530 | return set_UBSEC_LIBNAME((const char *)p); |
| 512 | return 1; | ||
| 513 | default: | 531 | default: |
| 514 | break; | 532 | break; |
| 515 | } | 533 | } |
diff --git a/src/lib/libcrypto/err/Makefile.ssl b/src/lib/libcrypto/err/Makefile.ssl index 1b3c58626c..f0c95e2ef2 100644 --- a/src/lib/libcrypto/err/Makefile.ssl +++ b/src/lib/libcrypto/err/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -85,24 +85,31 @@ err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | |||
| 85 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 85 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 86 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 86 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 87 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c | 87 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c |
| 88 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 88 | err_all.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 89 | err_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 89 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 90 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 90 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 91 | err_all.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 91 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 92 | err_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 92 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 93 | err_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 93 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/engine.h | 94 | err_all.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 94 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 95 | err_all.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
| 95 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 96 | err_all.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 97 | err_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 98 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 99 | err_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 100 | err_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 96 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 101 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 97 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 102 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 98 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h | 103 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h |
| 99 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 104 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 100 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 105 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 106 | err_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 107 | err_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 101 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 108 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 102 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 109 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 103 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | 110 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 104 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 111 | err_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 105 | err_all.o: err_all.c | 112 | err_all.o: ../../include/openssl/x509v3.h err_all.c |
| 106 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | 113 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h |
| 107 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 114 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 108 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 115 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
diff --git a/src/lib/libcrypto/err/err.c b/src/lib/libcrypto/err/err.c index 04773d65a6..5abe44e6d5 100644 --- a/src/lib/libcrypto/err/err.c +++ b/src/lib/libcrypto/err/err.c | |||
| @@ -166,6 +166,7 @@ static ERR_STRING_DATA ERR_str_functs[]= | |||
| 166 | {ERR_PACK(0,SYS_F_WSASTARTUP,0), "WSAstartup"}, | 166 | {ERR_PACK(0,SYS_F_WSASTARTUP,0), "WSAstartup"}, |
| 167 | #endif | 167 | #endif |
| 168 | {ERR_PACK(0,SYS_F_OPENDIR,0), "opendir"}, | 168 | {ERR_PACK(0,SYS_F_OPENDIR,0), "opendir"}, |
| 169 | {ERR_PACK(0,SYS_F_FREAD,0), "fread"}, | ||
| 169 | {0,NULL}, | 170 | {0,NULL}, |
| 170 | }; | 171 | }; |
| 171 | 172 | ||
diff --git a/src/lib/libcrypto/err/err.h b/src/lib/libcrypto/err/err.h index cc9bb649ea..988ef81aa0 100644 --- a/src/lib/libcrypto/err/err.h +++ b/src/lib/libcrypto/err/err.h | |||
| @@ -182,6 +182,7 @@ typedef struct err_state_st | |||
| 182 | #define SYS_F_ACCEPT 8 | 182 | #define SYS_F_ACCEPT 8 |
| 183 | #define SYS_F_WSASTARTUP 9 /* Winsock stuff */ | 183 | #define SYS_F_WSASTARTUP 9 /* Winsock stuff */ |
| 184 | #define SYS_F_OPENDIR 10 | 184 | #define SYS_F_OPENDIR 10 |
| 185 | #define SYS_F_FREAD 11 | ||
| 185 | 186 | ||
| 186 | 187 | ||
| 187 | /* reasons */ | 188 | /* reasons */ |
diff --git a/src/lib/libcrypto/evp/Makefile.ssl b/src/lib/libcrypto/evp/Makefile.ssl index 75f078af76..58843f61a9 100644 --- a/src/lib/libcrypto/evp/Makefile.ssl +++ b/src/lib/libcrypto/evp/Makefile.ssl | |||
| @@ -89,7 +89,7 @@ lint: | |||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 90 | 90 | ||
| 91 | depend: | 91 | depend: |
| 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 92 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 93 | 93 | ||
| 94 | dclean: | 94 | dclean: |
| 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -100,563 +100,961 @@ clean: | |||
| 100 | 100 | ||
| 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | 102 | ||
| 103 | bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h | 103 | bio_b64.o: ../../e_os.h ../../include/openssl/aes.h |
| 104 | bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 104 | bio_b64.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 105 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 105 | bio_b64.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 106 | bio_b64.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 106 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 107 | bio_b64.o: ../../include/openssl/evp.h ../../include/openssl/lhash.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 | ||
| 111 | bio_b64.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 112 | bio_b64.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 113 | bio_b64.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 108 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 114 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 109 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 115 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 110 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 116 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 117 | bio_b64.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 118 | bio_b64.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 119 | bio_b64.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 111 | bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.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 | ||
| 112 | bio_b64.o: ../cryptlib.h bio_b64.c | 122 | bio_b64.o: ../cryptlib.h bio_b64.c |
| 113 | bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h | 123 | bio_enc.o: ../../e_os.h ../../include/openssl/aes.h |
| 114 | bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 124 | bio_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 115 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 125 | bio_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 116 | bio_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 126 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 117 | bio_enc.o: ../../include/openssl/evp.h ../../include/openssl/lhash.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 | ||
| 131 | bio_enc.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 132 | bio_enc.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 133 | bio_enc.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 118 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 134 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 119 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 135 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 120 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 136 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 137 | bio_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.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 | ||
| 121 | bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.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 | ||
| 122 | bio_enc.o: ../cryptlib.h bio_enc.c | 142 | bio_enc.o: ../cryptlib.h bio_enc.c |
| 123 | bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 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 | ||
| 124 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 145 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 125 | bio_md.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 146 | bio_md.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 126 | bio_md.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 147 | bio_md.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 127 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.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 | ||
| 150 | bio_md.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 151 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 152 | bio_md.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 153 | bio_md.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 128 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 154 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 129 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 155 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 130 | bio_md.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 156 | bio_md.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 131 | bio_md.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_md.c | 157 | bio_md.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 132 | bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.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 | ||
| 133 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 164 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 134 | bio_ok.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 165 | bio_ok.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 135 | bio_ok.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 166 | bio_ok.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 136 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.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 | ||
| 169 | bio_ok.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 170 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 171 | bio_ok.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 172 | bio_ok.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 137 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 173 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 138 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 174 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 139 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 175 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 176 | bio_ok.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.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 | ||
| 140 | bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.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 | ||
| 141 | bio_ok.o: ../cryptlib.h bio_ok.c | 181 | bio_ok.o: ../cryptlib.h bio_ok.c |
| 142 | c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 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 | ||
| 143 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 184 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 144 | c_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 185 | c_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 145 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 186 | c_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 146 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 187 | c_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 188 | c_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 189 | c_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 190 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 191 | c_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 192 | c_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 147 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 193 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 148 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 194 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 149 | c_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 195 | c_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 150 | c_all.o: ../../include/openssl/symhacks.h ../cryptlib.h c_all.c | 196 | c_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 151 | c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 197 | c_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 198 | c_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 199 | c_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 200 | c_all.o: ../../include/openssl/ui_compat.h ../cryptlib.h c_all.c | ||
| 201 | c_allc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 202 | c_allc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 152 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 203 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 153 | c_allc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 204 | c_allc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 154 | c_allc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 205 | c_allc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 155 | c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 206 | c_allc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 156 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 207 | c_allc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 208 | c_allc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 209 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 210 | c_allc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 211 | c_allc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 157 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 212 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 158 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 213 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 159 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 214 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 215 | c_allc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 216 | c_allc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 160 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 217 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 161 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 218 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 162 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 219 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 220 | c_allc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 163 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c | 221 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c |
| 164 | c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 222 | c_alld.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 223 | c_alld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 165 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 224 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 166 | c_alld.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 225 | c_alld.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 167 | c_alld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 226 | c_alld.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 168 | c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 227 | c_alld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 169 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 228 | c_alld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 229 | c_alld.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 230 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 231 | c_alld.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 232 | c_alld.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 170 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 233 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 171 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 234 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 172 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 235 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 236 | c_alld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 237 | c_alld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 173 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 238 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 174 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 239 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 175 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 240 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 241 | c_alld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 176 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c | 242 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c |
| 177 | digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 243 | digest.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 244 | digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 178 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 245 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 179 | digest.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 246 | digest.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 180 | digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 247 | digest.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 181 | digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 248 | digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 182 | digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 249 | digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 250 | digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 251 | digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 252 | digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 253 | digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 183 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 254 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 184 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 255 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 185 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 256 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 257 | digest.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 258 | digest.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 186 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 259 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 187 | digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 260 | digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 188 | digest.o: ../../include/openssl/ui.h ../cryptlib.h digest.c | 261 | digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 262 | digest.o: ../../include/openssl/ui_compat.h ../cryptlib.h digest.c | ||
| 189 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 263 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 190 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 264 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 191 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 265 | e_aes.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 266 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 267 | e_aes.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 268 | e_aes.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 192 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 269 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 193 | e_aes.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 270 | e_aes.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 194 | e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 271 | e_aes.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 195 | e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 272 | e_aes.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 196 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 273 | e_aes.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 197 | e_aes.o: ../../include/openssl/symhacks.h e_aes.c evp_locl.h | 274 | e_aes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 198 | e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 275 | e_aes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 199 | e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 276 | e_aes.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 200 | e_bf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 277 | e_aes.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 278 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 279 | e_aes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 280 | e_aes.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h e_aes.c | ||
| 281 | e_aes.o: evp_locl.h | ||
| 282 | e_bf.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 283 | e_bf.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 284 | e_bf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 285 | e_bf.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 286 | e_bf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 287 | e_bf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 201 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 288 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 202 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 289 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 203 | e_bf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 290 | e_bf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 204 | e_bf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 291 | e_bf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 205 | e_bf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 292 | e_bf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 206 | e_bf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 293 | e_bf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 207 | e_bf.o: ../cryptlib.h e_bf.c evp_locl.h | 294 | e_bf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 208 | e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 295 | e_bf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 296 | e_bf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 297 | e_bf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 298 | e_bf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 299 | e_bf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 300 | e_bf.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_bf.c evp_locl.h | ||
| 301 | e_cast.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 302 | e_cast.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 209 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 303 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 210 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 304 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 305 | e_cast.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 306 | e_cast.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 211 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 307 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 212 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 308 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 213 | e_cast.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 309 | e_cast.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 214 | e_cast.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 310 | e_cast.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 215 | e_cast.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 311 | e_cast.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 216 | e_cast.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 312 | e_cast.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 217 | e_cast.o: ../cryptlib.h e_cast.c evp_locl.h | 313 | e_cast.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 218 | e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 314 | e_cast.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 315 | e_cast.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 316 | e_cast.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 317 | e_cast.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 318 | e_cast.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 319 | e_cast.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_cast.c evp_locl.h | ||
| 320 | e_des.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 321 | e_des.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 219 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 322 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 220 | e_des.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 323 | e_des.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 221 | e_des.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 324 | e_des.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 222 | e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 325 | e_des.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 223 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 326 | e_des.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 327 | e_des.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 328 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 329 | e_des.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 330 | e_des.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 224 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 331 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 225 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 332 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 226 | e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 333 | e_des.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 334 | e_des.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 335 | e_des.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 336 | e_des.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 227 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 337 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 228 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h | 338 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h |
| 229 | e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 339 | e_des3.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 340 | e_des3.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 230 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 341 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 231 | e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 342 | e_des3.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 232 | e_des3.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 343 | e_des3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 233 | e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 344 | e_des3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 234 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 345 | e_des3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 346 | e_des3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 347 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 348 | e_des3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 349 | e_des3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 235 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 350 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 236 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 351 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 237 | e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 352 | e_des3.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 353 | e_des3.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 354 | e_des3.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 355 | e_des3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 238 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 356 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 239 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h | 357 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h |
| 240 | e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 358 | e_idea.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 359 | e_idea.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 241 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 360 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 242 | e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 361 | e_idea.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 243 | e_idea.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 362 | e_idea.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 244 | e_idea.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 363 | e_idea.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 245 | e_idea.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 364 | e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 246 | e_idea.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 365 | e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 247 | e_idea.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 366 | e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 248 | e_idea.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 367 | e_idea.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 249 | e_idea.o: ../cryptlib.h e_idea.c evp_locl.h | 368 | e_idea.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 250 | e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 369 | e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 370 | e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 371 | e_idea.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 372 | e_idea.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 373 | e_idea.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 374 | e_idea.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 375 | e_idea.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 376 | e_idea.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_idea.c evp_locl.h | ||
| 377 | e_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 378 | e_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 251 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 379 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 252 | e_null.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 380 | e_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 253 | e_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 381 | e_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 254 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 382 | e_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 383 | e_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 384 | e_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 385 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 386 | e_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 387 | e_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 255 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 388 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 256 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 389 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 257 | e_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 390 | e_null.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 258 | e_null.o: ../../include/openssl/symhacks.h ../cryptlib.h e_null.c | 391 | e_null.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 259 | e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 392 | e_null.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 393 | e_null.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 394 | e_null.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 395 | e_null.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_null.c | ||
| 396 | e_rc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 397 | e_rc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 260 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 398 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 261 | e_rc2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 399 | e_rc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 262 | e_rc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 400 | e_rc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 263 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 401 | e_rc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 402 | e_rc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 403 | e_rc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 404 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 405 | e_rc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 406 | e_rc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 264 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 407 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 265 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 408 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 266 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h | 409 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 267 | e_rc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 410 | e_rc2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 268 | e_rc2.o: ../cryptlib.h e_rc2.c evp_locl.h | 411 | e_rc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 269 | e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 412 | e_rc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 413 | e_rc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 414 | e_rc2.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc2.c evp_locl.h | ||
| 415 | e_rc4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 416 | e_rc4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 270 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 417 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 271 | e_rc4.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 418 | e_rc4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 272 | e_rc4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 419 | e_rc4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 273 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 420 | e_rc4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 421 | e_rc4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 422 | e_rc4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 423 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 424 | e_rc4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 425 | e_rc4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 274 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 426 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 275 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 427 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 276 | e_rc4.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | 428 | e_rc4.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 277 | e_rc4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 429 | e_rc4.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 278 | e_rc4.o: ../cryptlib.h e_rc4.c | 430 | e_rc4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 279 | e_rc5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 431 | e_rc4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 432 | e_rc4.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 433 | e_rc4.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc4.c | ||
| 434 | e_rc5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 435 | e_rc5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 280 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 436 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 281 | e_rc5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 437 | e_rc5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 282 | e_rc5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 438 | e_rc5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 283 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 439 | e_rc5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 440 | e_rc5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 441 | e_rc5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 442 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 443 | e_rc5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 444 | e_rc5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 284 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 445 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 285 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 446 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 286 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/safestack.h | 447 | e_rc5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 287 | e_rc5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 448 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 288 | e_rc5.o: ../cryptlib.h e_rc5.c evp_locl.h | 449 | e_rc5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 289 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h | 450 | e_rc5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 290 | e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 451 | e_rc5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 291 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 452 | e_rc5.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc5.c evp_locl.h |
| 292 | e_xcbc_d.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 453 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/aes.h |
| 293 | e_xcbc_d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 454 | e_xcbc_d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 294 | e_xcbc_d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 455 | e_xcbc_d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 456 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 457 | e_xcbc_d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 458 | e_xcbc_d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 459 | e_xcbc_d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 460 | e_xcbc_d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 461 | e_xcbc_d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 462 | e_xcbc_d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 463 | e_xcbc_d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 295 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 464 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 296 | e_xcbc_d.o: ../../include/openssl/opensslconf.h | 465 | e_xcbc_d.o: ../../include/openssl/opensslconf.h |
| 297 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 466 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 298 | e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 467 | e_xcbc_d.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 468 | e_xcbc_d.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 469 | e_xcbc_d.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 470 | e_xcbc_d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 299 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 471 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 300 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c | 472 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c |
| 301 | encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 473 | encode.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 474 | encode.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 302 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 475 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 303 | encode.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 476 | encode.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 304 | encode.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 477 | encode.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 305 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 478 | encode.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 479 | encode.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 480 | encode.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 481 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 482 | encode.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 483 | encode.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 306 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 484 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 307 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 485 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 308 | encode.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 486 | encode.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 309 | encode.o: ../../include/openssl/symhacks.h ../cryptlib.h encode.c | 487 | encode.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 310 | evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h | 488 | encode.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 311 | evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 489 | encode.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 312 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 490 | encode.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 313 | evp_acnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 491 | encode.o: ../../include/openssl/ui_compat.h ../cryptlib.h encode.c |
| 314 | evp_acnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 492 | evp_acnf.o: ../../e_os.h ../../include/openssl/aes.h |
| 315 | evp_acnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 493 | evp_acnf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 316 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 494 | evp_acnf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 495 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 496 | evp_acnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 497 | evp_acnf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 498 | evp_acnf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 499 | evp_acnf.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 500 | evp_acnf.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 501 | evp_acnf.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 502 | evp_acnf.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 503 | evp_acnf.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 317 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 504 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 318 | evp_acnf.o: ../../include/openssl/opensslconf.h | 505 | evp_acnf.o: ../../include/openssl/opensslconf.h |
| 319 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 506 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 320 | evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 507 | evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 321 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 508 | evp_acnf.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 322 | evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 509 | evp_acnf.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 510 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 511 | evp_acnf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 512 | evp_acnf.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 323 | evp_acnf.o: ../cryptlib.h evp_acnf.c | 513 | evp_acnf.o: ../cryptlib.h evp_acnf.c |
| 324 | evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h | 514 | evp_enc.o: ../../e_os.h ../../include/openssl/aes.h |
| 325 | evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 515 | evp_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 326 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 516 | evp_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 327 | evp_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 517 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 328 | evp_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 518 | evp_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 329 | evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 519 | evp_enc.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 330 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 520 | evp_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 521 | evp_enc.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 522 | evp_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 523 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 524 | evp_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 525 | evp_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 331 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 526 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 332 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 527 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 333 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 528 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 334 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 529 | evp_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 335 | evp_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 530 | evp_enc.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 531 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 532 | evp_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 533 | evp_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 336 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h | 534 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h |
| 337 | evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 535 | evp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 338 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 536 | evp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 339 | evp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 537 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 340 | evp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 538 | evp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 539 | evp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 540 | evp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 541 | evp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 542 | evp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 543 | evp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 544 | evp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 341 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 545 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 342 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 546 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 343 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 547 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 548 | evp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 549 | evp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 550 | evp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 344 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 551 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 552 | evp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 345 | evp_err.o: evp_err.c | 553 | evp_err.o: evp_err.c |
| 346 | evp_key.o: ../../e_os.h ../../include/openssl/asn1.h | 554 | evp_key.o: ../../e_os.h ../../include/openssl/aes.h |
| 347 | evp_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 555 | evp_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 348 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 556 | evp_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 349 | evp_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 557 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 350 | evp_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 558 | evp_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 351 | evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 559 | evp_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 560 | evp_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 561 | evp_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 562 | evp_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 563 | evp_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 564 | evp_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 352 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 565 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 353 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 566 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 354 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 567 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 568 | evp_key.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 569 | evp_key.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 355 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 570 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 356 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 571 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 357 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 572 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 358 | evp_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 573 | evp_key.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 359 | evp_key.o: ../cryptlib.h evp_key.c | 574 | evp_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_key.c |
| 360 | evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 575 | evp_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 361 | evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 576 | evp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 362 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 577 | evp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 363 | evp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 578 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 364 | evp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 579 | evp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 580 | evp_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 581 | evp_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 582 | evp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 583 | evp_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 584 | evp_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 585 | evp_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 365 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 586 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 366 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 587 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 367 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 588 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 589 | evp_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 590 | evp_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 591 | evp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 368 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 592 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 593 | evp_lib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 369 | evp_lib.o: ../cryptlib.h evp_lib.c | 594 | evp_lib.o: ../cryptlib.h evp_lib.c |
| 370 | evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | 595 | evp_pbe.o: ../../e_os.h ../../include/openssl/aes.h |
| 371 | evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 596 | evp_pbe.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 372 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 597 | evp_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 373 | evp_pbe.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 598 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 374 | evp_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 599 | evp_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 375 | evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 600 | evp_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 601 | evp_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 602 | evp_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 603 | evp_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 604 | evp_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 605 | evp_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 376 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 606 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 377 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 607 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 378 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 608 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 609 | evp_pbe.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 610 | evp_pbe.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 379 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 611 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 380 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 612 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 381 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 613 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 614 | evp_pbe.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 382 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c | 615 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c |
| 383 | evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 616 | evp_pkey.o: ../../e_os.h ../../include/openssl/aes.h |
| 384 | evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 617 | evp_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 385 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 618 | evp_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 386 | evp_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 619 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 387 | evp_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 620 | evp_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 388 | evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 621 | evp_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 622 | evp_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 623 | evp_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 624 | evp_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 625 | evp_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 626 | evp_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 389 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 627 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 390 | evp_pkey.o: ../../include/openssl/opensslconf.h | 628 | evp_pkey.o: ../../include/openssl/opensslconf.h |
| 391 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 629 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 392 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 630 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 631 | evp_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 632 | evp_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 393 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 633 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 394 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 634 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 395 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 635 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 636 | evp_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 396 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c | 637 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c |
| 397 | m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 638 | m_dss.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 639 | m_dss.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 398 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 640 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 399 | m_dss.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 641 | m_dss.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 400 | m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 642 | m_dss.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 401 | m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 643 | m_dss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 402 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 644 | m_dss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 645 | m_dss.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 646 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 647 | m_dss.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 648 | m_dss.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 403 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 649 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 404 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 650 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 405 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 651 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 652 | m_dss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 653 | m_dss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 406 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 654 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 407 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 655 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 656 | m_dss.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 408 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 657 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 409 | m_dss.o: ../cryptlib.h m_dss.c | 658 | m_dss.o: ../cryptlib.h m_dss.c |
| 410 | m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 659 | m_dss1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 660 | m_dss1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 411 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 661 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 412 | m_dss1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 662 | m_dss1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 413 | m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 663 | m_dss1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 414 | m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 664 | m_dss1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 415 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 665 | m_dss1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 666 | m_dss1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 667 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 668 | m_dss1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 669 | m_dss1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 416 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 670 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 417 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 671 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 418 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 672 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 673 | m_dss1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 674 | m_dss1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 419 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 675 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 420 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 676 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 677 | m_dss1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 421 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 678 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 422 | m_dss1.o: ../cryptlib.h m_dss1.c | 679 | m_dss1.o: ../cryptlib.h m_dss1.c |
| 423 | m_md2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 680 | m_md2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 681 | m_md2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 424 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 682 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 425 | m_md2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 683 | m_md2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 426 | m_md2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 684 | m_md2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 427 | m_md2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 685 | m_md2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 686 | m_md2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 687 | m_md2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 428 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 688 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 429 | m_md2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 689 | m_md2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 430 | m_md2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 690 | m_md2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 431 | m_md2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 691 | m_md2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 432 | m_md2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 692 | m_md2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 433 | m_md2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 693 | m_md2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 434 | m_md2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 694 | m_md2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 435 | m_md2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md2.c | 695 | m_md2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 436 | m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 696 | m_md2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 697 | m_md2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 698 | m_md2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 699 | m_md2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 700 | m_md2.o: ../cryptlib.h m_md2.c | ||
| 701 | m_md4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 702 | m_md4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 437 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 703 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 438 | m_md4.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 704 | m_md4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 439 | m_md4.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 705 | m_md4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 440 | m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 706 | m_md4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 441 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h | 707 | m_md4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 442 | m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 708 | m_md4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 443 | m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 709 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 444 | m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 710 | m_md4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 445 | m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 711 | m_md4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 446 | m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 712 | m_md4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 447 | m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 713 | m_md4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 448 | m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md4.c | 714 | m_md4.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 449 | m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 715 | m_md4.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 716 | m_md4.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 717 | m_md4.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 718 | m_md4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 719 | m_md4.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 720 | m_md4.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 721 | m_md4.o: ../cryptlib.h m_md4.c | ||
| 722 | m_md5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 723 | m_md5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 450 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 724 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 451 | m_md5.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 725 | m_md5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 452 | m_md5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 726 | m_md5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 453 | m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 727 | m_md5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 454 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h | 728 | m_md5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 455 | m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 729 | m_md5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 456 | m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 730 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 457 | m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 731 | m_md5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 458 | m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 732 | m_md5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 459 | m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 733 | m_md5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 460 | m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 734 | m_md5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 461 | m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md5.c | 735 | m_md5.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 462 | m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 736 | m_md5.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 737 | m_md5.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 738 | m_md5.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 739 | m_md5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 740 | m_md5.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 741 | m_md5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 742 | m_md5.o: ../cryptlib.h m_md5.c | ||
| 743 | m_mdc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 744 | m_mdc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 463 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 745 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 464 | m_mdc2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 746 | m_mdc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 465 | m_mdc2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 747 | m_mdc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 466 | m_mdc2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 748 | m_mdc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 467 | m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 749 | m_mdc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 468 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | 750 | m_mdc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 469 | m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 751 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 470 | m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 752 | m_mdc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 471 | m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 753 | m_mdc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 472 | m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 754 | m_mdc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 473 | m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 755 | m_mdc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 474 | m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 756 | m_mdc2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 475 | m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 757 | m_mdc2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 476 | m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_mdc2.c | 758 | m_mdc2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 477 | m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 759 | m_mdc2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 760 | m_mdc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 761 | m_mdc2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 762 | m_mdc2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 763 | m_mdc2.o: ../cryptlib.h m_mdc2.c | ||
| 764 | m_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 765 | m_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 478 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 766 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 479 | m_null.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 767 | m_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 480 | m_null.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 768 | m_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 481 | m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 769 | m_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 482 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 770 | m_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 771 | m_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 772 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 773 | m_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 774 | m_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 483 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 775 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 484 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 776 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 485 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 777 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 778 | m_null.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 779 | m_null.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 486 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 780 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 487 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 781 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 782 | m_null.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 488 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 783 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 489 | m_null.o: ../cryptlib.h m_null.c | 784 | m_null.o: ../cryptlib.h m_null.c |
| 490 | m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h | 785 | m_ripemd.o: ../../e_os.h ../../include/openssl/aes.h |
| 491 | m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 786 | m_ripemd.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 492 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 787 | m_ripemd.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 493 | m_ripemd.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 788 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 494 | m_ripemd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 789 | m_ripemd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 495 | m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 790 | m_ripemd.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 791 | m_ripemd.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 792 | m_ripemd.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 793 | m_ripemd.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 794 | m_ripemd.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 795 | m_ripemd.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 496 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 796 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 497 | m_ripemd.o: ../../include/openssl/opensslconf.h | 797 | m_ripemd.o: ../../include/openssl/opensslconf.h |
| 498 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 798 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 499 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h | 799 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 500 | m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 800 | m_ripemd.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 501 | m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 801 | m_ripemd.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 502 | m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 802 | m_ripemd.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 503 | m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_ripemd.c | 803 | m_ripemd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 504 | m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 804 | m_ripemd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 805 | m_ripemd.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 806 | m_ripemd.o: ../cryptlib.h m_ripemd.c | ||
| 807 | m_sha.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 808 | m_sha.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 505 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 809 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 506 | m_sha.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 810 | m_sha.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 507 | m_sha.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 811 | m_sha.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 508 | m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 812 | m_sha.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 509 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 813 | m_sha.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 814 | m_sha.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 815 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 816 | m_sha.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 817 | m_sha.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 510 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 818 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 511 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 819 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 512 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 820 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 821 | m_sha.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 822 | m_sha.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 513 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 823 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 514 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 824 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 825 | m_sha.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 515 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 826 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 516 | m_sha.o: ../cryptlib.h m_sha.c | 827 | m_sha.o: ../cryptlib.h m_sha.c |
| 517 | m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 828 | m_sha1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 829 | m_sha1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 518 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 830 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 519 | m_sha1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 831 | m_sha1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 520 | m_sha1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 832 | m_sha1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 521 | m_sha1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 833 | m_sha1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 522 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 834 | m_sha1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 835 | m_sha1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 836 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 837 | m_sha1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 838 | m_sha1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 523 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 839 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 524 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 840 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 525 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 841 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 842 | m_sha1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 843 | m_sha1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 526 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 844 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 527 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 845 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 846 | m_sha1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 528 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 847 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 529 | m_sha1.o: ../cryptlib.h m_sha1.c | 848 | m_sha1.o: ../cryptlib.h m_sha1.c |
| 530 | names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 849 | names.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 850 | names.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 531 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 851 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 532 | names.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 852 | names.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 533 | names.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 853 | names.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 534 | names.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 854 | names.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 535 | names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 855 | names.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 856 | names.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 857 | names.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 858 | names.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 859 | names.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 536 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 860 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 537 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 861 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 538 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 862 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 863 | names.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 864 | names.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 539 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 865 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 540 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 866 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 867 | names.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 541 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 868 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 542 | names.o: ../cryptlib.h names.c | 869 | names.o: ../cryptlib.h names.c |
| 543 | p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h | 870 | p5_crpt.o: ../../e_os.h ../../include/openssl/aes.h |
| 544 | p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 871 | p5_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 545 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 872 | p5_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 546 | p5_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 873 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 547 | p5_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 874 | p5_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 548 | p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 875 | p5_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 876 | p5_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 877 | p5_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 878 | p5_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 879 | p5_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 880 | p5_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 549 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 881 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 550 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 882 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 551 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 883 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 884 | p5_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 885 | p5_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 552 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 886 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 553 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 887 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 554 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 888 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 889 | p5_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 555 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c | 890 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c |
| 556 | p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h | 891 | p5_crpt2.o: ../../e_os.h ../../include/openssl/aes.h |
| 557 | p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 892 | p5_crpt2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 558 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 893 | p5_crpt2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 559 | p5_crpt2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 894 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 560 | p5_crpt2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 895 | p5_crpt2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 561 | p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | 896 | p5_crpt2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 562 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 897 | p5_crpt2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 898 | p5_crpt2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 899 | p5_crpt2.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
| 900 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 901 | p5_crpt2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 902 | p5_crpt2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 563 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 903 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 564 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 904 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 565 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 905 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 906 | p5_crpt2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 907 | p5_crpt2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 566 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 908 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 567 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 909 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 910 | p5_crpt2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 568 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 911 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 569 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c | 912 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c |
| 570 | p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 913 | p_dec.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 914 | p_dec.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 571 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 915 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 572 | p_dec.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 916 | p_dec.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 573 | p_dec.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 917 | p_dec.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 574 | p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 918 | p_dec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 575 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 919 | p_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 920 | p_dec.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 921 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 922 | p_dec.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 923 | p_dec.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 576 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 924 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 577 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 925 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 578 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 926 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 927 | p_dec.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 928 | p_dec.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 579 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 929 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 580 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 930 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 581 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 931 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 932 | p_dec.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 582 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c | 933 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c |
| 583 | p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 934 | p_enc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 935 | p_enc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 584 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 936 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 585 | p_enc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 937 | p_enc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 586 | p_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 938 | p_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 587 | p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 939 | p_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 588 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 940 | p_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 941 | p_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 942 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 943 | p_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 944 | p_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 589 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 945 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 590 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 946 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 591 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 947 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 948 | p_enc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 949 | p_enc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 592 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 950 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 593 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 951 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 594 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 952 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 953 | p_enc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 595 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c | 954 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c |
| 596 | p_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 955 | p_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 597 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 956 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 598 | p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 957 | p_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 599 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 958 | p_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 959 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 960 | p_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 600 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 961 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 601 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 962 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 602 | p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 963 | p_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 603 | p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 964 | p_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 604 | p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 965 | p_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 605 | p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 966 | p_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 606 | p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 967 | p_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 607 | p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 968 | p_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 608 | p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 969 | p_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 609 | p_lib.o: ../cryptlib.h p_lib.c | 970 | p_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 610 | p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 971 | p_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 972 | p_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 973 | p_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 974 | p_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 975 | p_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_lib.c | ||
| 976 | p_open.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 977 | p_open.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 611 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 978 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 612 | p_open.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 979 | p_open.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 613 | p_open.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 980 | p_open.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 614 | p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 981 | p_open.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 615 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 982 | p_open.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 983 | p_open.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 984 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 985 | p_open.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 986 | p_open.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 616 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 987 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 617 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 988 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 618 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 989 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 990 | p_open.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 991 | p_open.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 619 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 992 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 620 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 993 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 994 | p_open.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 621 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 995 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 622 | p_open.o: ../cryptlib.h p_open.c | 996 | p_open.o: ../cryptlib.h p_open.c |
| 623 | p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 997 | p_seal.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 998 | p_seal.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 624 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 999 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 625 | p_seal.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1000 | p_seal.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 626 | p_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1001 | p_seal.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 627 | p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1002 | p_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 628 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1003 | p_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1004 | p_seal.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1005 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1006 | p_seal.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1007 | p_seal.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 629 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1008 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 630 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1009 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 631 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 1010 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 1011 | p_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1012 | p_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 632 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 1013 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 633 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 1014 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 634 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 1015 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 1016 | p_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 635 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c | 1017 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c |
| 636 | p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 1018 | p_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 1019 | p_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 637 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1020 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 638 | p_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1021 | p_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 639 | p_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1022 | p_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 640 | p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1023 | p_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 641 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1024 | p_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1025 | p_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1026 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1027 | p_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1028 | p_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 642 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1029 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 643 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1030 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 644 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1031 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1032 | p_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1033 | p_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 645 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1034 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 646 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1035 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1036 | p_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 647 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1037 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 648 | p_sign.o: ../cryptlib.h p_sign.c | 1038 | p_sign.o: ../cryptlib.h p_sign.c |
| 649 | p_verify.o: ../../e_os.h ../../include/openssl/asn1.h | 1039 | p_verify.o: ../../e_os.h ../../include/openssl/aes.h |
| 650 | p_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 1040 | p_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 651 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 1041 | p_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 652 | p_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 1042 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 653 | p_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 1043 | p_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 654 | p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 1044 | p_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 1045 | p_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1046 | p_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1047 | p_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1048 | p_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1049 | p_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 655 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 1050 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 656 | p_verify.o: ../../include/openssl/opensslconf.h | 1051 | p_verify.o: ../../include/openssl/opensslconf.h |
| 657 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1052 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 658 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1053 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1054 | p_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1055 | p_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 659 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1056 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 660 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1057 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1058 | p_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 661 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1059 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 662 | p_verify.o: ../cryptlib.h p_verify.c | 1060 | p_verify.o: ../cryptlib.h p_verify.c |
diff --git a/src/lib/libcrypto/evp/c_all.c b/src/lib/libcrypto/evp/c_all.c index 3d390dfbf1..3d59812e20 100644 --- a/src/lib/libcrypto/evp/c_all.c +++ b/src/lib/libcrypto/evp/c_all.c | |||
| @@ -60,12 +60,14 @@ | |||
| 60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
| 61 | #include <openssl/evp.h> | 61 | #include <openssl/evp.h> |
| 62 | 62 | ||
| 63 | #if 0 | ||
| 63 | #undef OpenSSL_add_all_algorithms | 64 | #undef OpenSSL_add_all_algorithms |
| 64 | 65 | ||
| 65 | void OpenSSL_add_all_algorithms(void) | 66 | void OpenSSL_add_all_algorithms(void) |
| 66 | { | 67 | { |
| 67 | OPENSSL_add_all_algorithms_noconf(); | 68 | OPENSSL_add_all_algorithms_noconf(); |
| 68 | } | 69 | } |
| 70 | #endif | ||
| 69 | 71 | ||
| 70 | void OPENSSL_add_all_algorithms_noconf(void) | 72 | void OPENSSL_add_all_algorithms_noconf(void) |
| 71 | { | 73 | { |
diff --git a/src/lib/libcrypto/evp/evp.h b/src/lib/libcrypto/evp/evp.h index fb16de6852..7051fe2816 100644 --- a/src/lib/libcrypto/evp/evp.h +++ b/src/lib/libcrypto/evp/evp.h | |||
| @@ -74,6 +74,51 @@ | |||
| 74 | #ifndef OPENSSL_NO_BIO | 74 | #ifndef OPENSSL_NO_BIO |
| 75 | #include <openssl/bio.h> | 75 | #include <openssl/bio.h> |
| 76 | #endif | 76 | #endif |
| 77 | #ifndef OPENSSL_NO_MD2 | ||
| 78 | #include <openssl/md2.h> | ||
| 79 | #endif | ||
| 80 | #ifndef OPENSSL_NO_MD4 | ||
| 81 | #include <openssl/md4.h> | ||
| 82 | #endif | ||
| 83 | #ifndef OPENSSL_NO_MD5 | ||
| 84 | #include <openssl/md5.h> | ||
| 85 | #endif | ||
| 86 | #ifndef OPENSSL_NO_SHA | ||
| 87 | #include <openssl/sha.h> | ||
| 88 | #endif | ||
| 89 | #ifndef OPENSSL_NO_RIPEMD | ||
| 90 | #include <openssl/ripemd.h> | ||
| 91 | #endif | ||
| 92 | #ifndef OPENSSL_NO_DES | ||
| 93 | #include <openssl/des.h> | ||
| 94 | #endif | ||
| 95 | #ifndef OPENSSL_NO_RC4 | ||
| 96 | #include <openssl/rc4.h> | ||
| 97 | #endif | ||
| 98 | #ifndef OPENSSL_NO_RC2 | ||
| 99 | #include <openssl/rc2.h> | ||
| 100 | #endif | ||
| 101 | #ifndef OPENSSL_NO_RC5 | ||
| 102 | #include <openssl/rc5.h> | ||
| 103 | #endif | ||
| 104 | #ifndef OPENSSL_NO_BF | ||
| 105 | #include <openssl/blowfish.h> | ||
| 106 | #endif | ||
| 107 | #ifndef OPENSSL_NO_CAST | ||
| 108 | #include <openssl/cast.h> | ||
| 109 | #endif | ||
| 110 | #ifndef OPENSSL_NO_IDEA | ||
| 111 | #include <openssl/idea.h> | ||
| 112 | #endif | ||
| 113 | #if 0 | ||
| 114 | /* mdc2 uses the new DES_ API, but DES_ is not defined if kerberos is used, too */ | ||
| 115 | #ifndef OPENSSL_NO_MDC2 | ||
| 116 | #include <openssl/mdc2.h> | ||
| 117 | #endif | ||
| 118 | #endif | ||
| 119 | #ifndef OPENSSL_NO_AES | ||
| 120 | #include <openssl/aes.h> | ||
| 121 | #endif | ||
| 77 | 122 | ||
| 78 | /* | 123 | /* |
| 79 | #define EVP_RC2_KEY_SIZE 16 | 124 | #define EVP_RC2_KEY_SIZE 16 |
| @@ -91,6 +136,18 @@ | |||
| 91 | /* Default PKCS#5 iteration count */ | 136 | /* Default PKCS#5 iteration count */ |
| 92 | #define PKCS5_DEFAULT_ITER 2048 | 137 | #define PKCS5_DEFAULT_ITER 2048 |
| 93 | 138 | ||
| 139 | #ifndef OPENSSL_NO_RSA | ||
| 140 | #include <openssl/rsa.h> | ||
| 141 | #endif | ||
| 142 | |||
| 143 | #ifndef OPENSSL_NO_DSA | ||
| 144 | #include <openssl/dsa.h> | ||
| 145 | #endif | ||
| 146 | |||
| 147 | #ifndef OPENSSL_NO_DH | ||
| 148 | #include <openssl/dh.h> | ||
| 149 | #endif | ||
| 150 | |||
| 94 | #include <openssl/objects.h> | 151 | #include <openssl/objects.h> |
| 95 | 152 | ||
| 96 | #define EVP_PK_RSA 0x0001 | 153 | #define EVP_PK_RSA 0x0001 |
| @@ -582,6 +639,8 @@ const EVP_CIPHER *EVP_enc_null(void); /* does nothing :-) */ | |||
| 582 | const EVP_CIPHER *EVP_des_ecb(void); | 639 | const EVP_CIPHER *EVP_des_ecb(void); |
| 583 | const EVP_CIPHER *EVP_des_ede(void); | 640 | const EVP_CIPHER *EVP_des_ede(void); |
| 584 | const EVP_CIPHER *EVP_des_ede3(void); | 641 | const EVP_CIPHER *EVP_des_ede3(void); |
| 642 | const EVP_CIPHER *EVP_des_ede_ecb(void); | ||
| 643 | const EVP_CIPHER *EVP_des_ede3_ecb(void); | ||
| 585 | const EVP_CIPHER *EVP_des_cfb(void); | 644 | const EVP_CIPHER *EVP_des_cfb(void); |
| 586 | const EVP_CIPHER *EVP_des_ede_cfb(void); | 645 | const EVP_CIPHER *EVP_des_ede_cfb(void); |
| 587 | const EVP_CIPHER *EVP_des_ede3_cfb(void); | 646 | const EVP_CIPHER *EVP_des_ede3_cfb(void); |
diff --git a/src/lib/libcrypto/evp/evp_pbe.c b/src/lib/libcrypto/evp/evp_pbe.c index 06afb9d152..bcd4d29f85 100644 --- a/src/lib/libcrypto/evp/evp_pbe.c +++ b/src/lib/libcrypto/evp/evp_pbe.c | |||
| @@ -57,9 +57,9 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "cryptlib.h" | ||
| 60 | #include <openssl/evp.h> | 61 | #include <openssl/evp.h> |
| 61 | #include <openssl/x509.h> | 62 | #include <openssl/x509.h> |
| 62 | #include "cryptlib.h" | ||
| 63 | 63 | ||
| 64 | /* Password based encryption (PBE) functions */ | 64 | /* Password based encryption (PBE) functions */ |
| 65 | 65 | ||
diff --git a/src/lib/libcrypto/evp/evp_test.c b/src/lib/libcrypto/evp/evp_test.c index 1bfffb34cf..90294ef686 100644 --- a/src/lib/libcrypto/evp/evp_test.c +++ b/src/lib/libcrypto/evp/evp_test.c | |||
| @@ -118,7 +118,7 @@ static char *sstrsep(char **string, const char *delim) | |||
| 118 | } | 118 | } |
| 119 | 119 | ||
| 120 | static unsigned char *ustrsep(char **p,const char *sep) | 120 | static unsigned char *ustrsep(char **p,const char *sep) |
| 121 | { return (unsigned char *)sstrsep((char **)p,sep); } | 121 | { return (unsigned char *)sstrsep(p,sep); } |
| 122 | 122 | ||
| 123 | static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, | 123 | static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, |
| 124 | const unsigned char *iv,int in, | 124 | const unsigned char *iv,int in, |
| @@ -358,7 +358,7 @@ int main(int argc,char **argv) | |||
| 358 | p[-1] = '\0'; | 358 | p[-1] = '\0'; |
| 359 | encdec = -1; | 359 | encdec = -1; |
| 360 | } else { | 360 | } else { |
| 361 | encdec = atoi(strsep(&p,"\n")); | 361 | encdec = atoi(sstrsep(&p,"\n")); |
| 362 | } | 362 | } |
| 363 | 363 | ||
| 364 | 364 | ||
diff --git a/src/lib/libcrypto/evp/p5_crpt.c b/src/lib/libcrypto/evp/p5_crpt.c index 113c60fedb..27a8286489 100644 --- a/src/lib/libcrypto/evp/p5_crpt.c +++ b/src/lib/libcrypto/evp/p5_crpt.c | |||
| @@ -58,9 +58,9 @@ | |||
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <stdlib.h> | 60 | #include <stdlib.h> |
| 61 | #include "cryptlib.h" | ||
| 61 | #include <openssl/x509.h> | 62 | #include <openssl/x509.h> |
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include "cryptlib.h" | ||
| 64 | 64 | ||
| 65 | /* PKCS#5 v1.5 compatible PBE functions: see PKCS#5 v2.0 for more info. | 65 | /* PKCS#5 v1.5 compatible PBE functions: see PKCS#5 v2.0 for more info. |
| 66 | */ | 66 | */ |
diff --git a/src/lib/libcrypto/evp/p5_crpt2.c b/src/lib/libcrypto/evp/p5_crpt2.c index 7881860b53..7485d6a278 100644 --- a/src/lib/libcrypto/evp/p5_crpt2.c +++ b/src/lib/libcrypto/evp/p5_crpt2.c | |||
| @@ -58,10 +58,10 @@ | |||
| 58 | #if !defined(OPENSSL_NO_HMAC) && !defined(OPENSSL_NO_SHA) | 58 | #if !defined(OPENSSL_NO_HMAC) && !defined(OPENSSL_NO_SHA) |
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <stdlib.h> | 60 | #include <stdlib.h> |
| 61 | #include "cryptlib.h" | ||
| 61 | #include <openssl/x509.h> | 62 | #include <openssl/x509.h> |
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include <openssl/hmac.h> | 64 | #include <openssl/hmac.h> |
| 64 | #include "cryptlib.h" | ||
| 65 | 65 | ||
| 66 | /* set this to print out info about the keygen algorithm */ | 66 | /* set this to print out info about the keygen algorithm */ |
| 67 | /* #define DEBUG_PKCS5V2 */ | 67 | /* #define DEBUG_PKCS5V2 */ |
diff --git a/src/lib/libcrypto/hmac/Makefile.ssl b/src/lib/libcrypto/hmac/Makefile.ssl index 93312d4918..2bb3264f0e 100644 --- a/src/lib/libcrypto/hmac/Makefile.ssl +++ b/src/lib/libcrypto/hmac/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -79,11 +79,21 @@ clean: | |||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | 81 | ||
| 82 | hmac.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 82 | hmac.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 83 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 83 | hmac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 84 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 84 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 85 | hmac.o: ../../include/openssl/hmac.h ../../include/openssl/obj_mac.h | 85 | hmac.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 86 | hmac.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 87 | hmac.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 88 | hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | ||
| 89 | hmac.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | ||
| 90 | hmac.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 91 | hmac.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 86 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 92 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 87 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 93 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 88 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 94 | hmac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 89 | hmac.o: ../../include/openssl/symhacks.h hmac.c | 95 | hmac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 96 | hmac.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 97 | hmac.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 98 | hmac.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 99 | hmac.o: ../../include/openssl/ui_compat.h hmac.c | ||
diff --git a/src/lib/libcrypto/idea/Makefile.ssl b/src/lib/libcrypto/idea/Makefile.ssl index d87863d133..87c9aa484b 100644 --- a/src/lib/libcrypto/idea/Makefile.ssl +++ b/src/lib/libcrypto/idea/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/krb5/Makefile.ssl b/src/lib/libcrypto/krb5/Makefile.ssl index ab90580b46..caf111be8d 100644 --- a/src/lib/libcrypto/krb5/Makefile.ssl +++ b/src/lib/libcrypto/krb5/Makefile.ssl | |||
| @@ -69,7 +69,7 @@ lint: | |||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 70 | 70 | ||
| 71 | depend: | 71 | depend: |
| 72 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 72 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 73 | 73 | ||
| 74 | dclean: | 74 | dclean: |
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/lhash/Makefile.ssl b/src/lib/libcrypto/lhash/Makefile.ssl index 324e360143..b3ad272cf7 100644 --- a/src/lib/libcrypto/lhash/Makefile.ssl +++ b/src/lib/libcrypto/lhash/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/md2/Makefile.ssl b/src/lib/libcrypto/md2/Makefile.ssl index 62a7fe6198..e89a17f3a4 100644 --- a/src/lib/libcrypto/md2/Makefile.ssl +++ b/src/lib/libcrypto/md2/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/md4/Makefile.ssl b/src/lib/libcrypto/md4/Makefile.ssl index 9e38bf607f..1de72571d8 100644 --- a/src/lib/libcrypto/md4/Makefile.ssl +++ b/src/lib/libcrypto/md4/Makefile.ssl | |||
| @@ -69,7 +69,7 @@ lint: | |||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 70 | 70 | ||
| 71 | depend: | 71 | depend: |
| 72 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 72 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 73 | 73 | ||
| 74 | dclean: | 74 | dclean: |
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/md5/Makefile.ssl b/src/lib/libcrypto/md5/Makefile.ssl index a7a92e9588..5f1bbfb8ff 100644 --- a/src/lib/libcrypto/md5/Makefile.ssl +++ b/src/lib/libcrypto/md5/Makefile.ssl | |||
| @@ -118,7 +118,7 @@ lint: | |||
| 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 119 | 119 | ||
| 120 | depend: | 120 | depend: |
| 121 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 121 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 122 | 122 | ||
| 123 | dclean: | 123 | dclean: |
| 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/mdc2/Makefile.ssl b/src/lib/libcrypto/mdc2/Makefile.ssl index d8b512d2d6..087b8eb9ee 100644 --- a/src/lib/libcrypto/mdc2/Makefile.ssl +++ b/src/lib/libcrypto/mdc2/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/objects/Makefile.ssl b/src/lib/libcrypto/objects/Makefile.ssl index a9f01ffc0d..cd5cbc95ce 100644 --- a/src/lib/libcrypto/objects/Makefile.ssl +++ b/src/lib/libcrypto/objects/Makefile.ssl | |||
| @@ -76,7 +76,7 @@ lint: | |||
| 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 77 | 77 | ||
| 78 | depend: | 78 | depend: |
| 79 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 79 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 80 | 80 | ||
| 81 | dclean: | 81 | dclean: |
| 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/objects/obj_mac.num b/src/lib/libcrypto/objects/obj_mac.num index 02b39062fe..1486199661 100644 --- a/src/lib/libcrypto/objects/obj_mac.num +++ b/src/lib/libcrypto/objects/obj_mac.num | |||
| @@ -507,3 +507,141 @@ mime_mhs_bodies 506 | |||
| 507 | id_hex_partial_message 507 | 507 | id_hex_partial_message 507 |
| 508 | id_hex_multipart_message 508 | 508 | id_hex_multipart_message 508 |
| 509 | generationQualifier 509 | 509 | generationQualifier 509 |
| 510 | pseudonym 510 | ||
| 511 | InternationalRA 511 | ||
| 512 | id_set 512 | ||
| 513 | set_ctype 513 | ||
| 514 | set_msgExt 514 | ||
| 515 | set_attr 515 | ||
| 516 | set_policy 516 | ||
| 517 | set_certExt 517 | ||
| 518 | set_brand 518 | ||
| 519 | setct_PANData 519 | ||
| 520 | setct_PANToken 520 | ||
| 521 | setct_PANOnly 521 | ||
| 522 | setct_OIData 522 | ||
| 523 | setct_PI 523 | ||
| 524 | setct_PIData 524 | ||
| 525 | setct_PIDataUnsigned 525 | ||
| 526 | setct_HODInput 526 | ||
| 527 | setct_AuthResBaggage 527 | ||
| 528 | setct_AuthRevReqBaggage 528 | ||
| 529 | setct_AuthRevResBaggage 529 | ||
| 530 | setct_CapTokenSeq 530 | ||
| 531 | setct_PInitResData 531 | ||
| 532 | setct_PI_TBS 532 | ||
| 533 | setct_PResData 533 | ||
| 534 | setct_AuthReqTBS 534 | ||
| 535 | setct_AuthResTBS 535 | ||
| 536 | setct_AuthResTBSX 536 | ||
| 537 | setct_AuthTokenTBS 537 | ||
| 538 | setct_CapTokenData 538 | ||
| 539 | setct_CapTokenTBS 539 | ||
| 540 | setct_AcqCardCodeMsg 540 | ||
| 541 | setct_AuthRevReqTBS 541 | ||
| 542 | setct_AuthRevResData 542 | ||
| 543 | setct_AuthRevResTBS 543 | ||
| 544 | setct_CapReqTBS 544 | ||
| 545 | setct_CapReqTBSX 545 | ||
| 546 | setct_CapResData 546 | ||
| 547 | setct_CapRevReqTBS 547 | ||
| 548 | setct_CapRevReqTBSX 548 | ||
| 549 | setct_CapRevResData 549 | ||
| 550 | setct_CredReqTBS 550 | ||
| 551 | setct_CredReqTBSX 551 | ||
| 552 | setct_CredResData 552 | ||
| 553 | setct_CredRevReqTBS 553 | ||
| 554 | setct_CredRevReqTBSX 554 | ||
| 555 | setct_CredRevResData 555 | ||
| 556 | setct_PCertReqData 556 | ||
| 557 | setct_PCertResTBS 557 | ||
| 558 | setct_BatchAdminReqData 558 | ||
| 559 | setct_BatchAdminResData 559 | ||
| 560 | setct_CardCInitResTBS 560 | ||
| 561 | setct_MeAqCInitResTBS 561 | ||
| 562 | setct_RegFormResTBS 562 | ||
| 563 | setct_CertReqData 563 | ||
| 564 | setct_CertReqTBS 564 | ||
| 565 | setct_CertResData 565 | ||
| 566 | setct_CertInqReqTBS 566 | ||
| 567 | setct_ErrorTBS 567 | ||
| 568 | setct_PIDualSignedTBE 568 | ||
| 569 | setct_PIUnsignedTBE 569 | ||
| 570 | setct_AuthReqTBE 570 | ||
| 571 | setct_AuthResTBE 571 | ||
| 572 | setct_AuthResTBEX 572 | ||
| 573 | setct_AuthTokenTBE 573 | ||
| 574 | setct_CapTokenTBE 574 | ||
| 575 | setct_CapTokenTBEX 575 | ||
| 576 | setct_AcqCardCodeMsgTBE 576 | ||
| 577 | setct_AuthRevReqTBE 577 | ||
| 578 | setct_AuthRevResTBE 578 | ||
| 579 | setct_AuthRevResTBEB 579 | ||
| 580 | setct_CapReqTBE 580 | ||
| 581 | setct_CapReqTBEX 581 | ||
| 582 | setct_CapResTBE 582 | ||
| 583 | setct_CapRevReqTBE 583 | ||
| 584 | setct_CapRevReqTBEX 584 | ||
| 585 | setct_CapRevResTBE 585 | ||
| 586 | setct_CredReqTBE 586 | ||
| 587 | setct_CredReqTBEX 587 | ||
| 588 | setct_CredResTBE 588 | ||
| 589 | setct_CredRevReqTBE 589 | ||
| 590 | setct_CredRevReqTBEX 590 | ||
| 591 | setct_CredRevResTBE 591 | ||
| 592 | setct_BatchAdminReqTBE 592 | ||
| 593 | setct_BatchAdminResTBE 593 | ||
| 594 | setct_RegFormReqTBE 594 | ||
| 595 | setct_CertReqTBE 595 | ||
| 596 | setct_CertReqTBEX 596 | ||
| 597 | setct_CertResTBE 597 | ||
| 598 | setct_CRLNotificationTBS 598 | ||
| 599 | setct_CRLNotificationResTBS 599 | ||
| 600 | setct_BCIDistributionTBS 600 | ||
| 601 | setext_genCrypt 601 | ||
| 602 | setext_miAuth 602 | ||
| 603 | setext_pinSecure 603 | ||
| 604 | setext_pinAny 604 | ||
| 605 | setext_track2 605 | ||
| 606 | setext_cv 606 | ||
| 607 | set_policy_root 607 | ||
| 608 | setCext_hashedRoot 608 | ||
| 609 | setCext_certType 609 | ||
| 610 | setCext_merchData 610 | ||
| 611 | setCext_cCertRequired 611 | ||
| 612 | setCext_tunneling 612 | ||
| 613 | setCext_setExt 613 | ||
| 614 | setCext_setQualf 614 | ||
| 615 | setCext_PGWYcapabilities 615 | ||
| 616 | setCext_TokenIdentifier 616 | ||
| 617 | setCext_Track2Data 617 | ||
| 618 | setCext_TokenType 618 | ||
| 619 | setCext_IssuerCapabilities 619 | ||
| 620 | setAttr_Cert 620 | ||
| 621 | setAttr_PGWYcap 621 | ||
| 622 | setAttr_TokenType 622 | ||
| 623 | setAttr_IssCap 623 | ||
| 624 | set_rootKeyThumb 624 | ||
| 625 | set_addPolicy 625 | ||
| 626 | setAttr_Token_EMV 626 | ||
| 627 | setAttr_Token_B0Prime 627 | ||
| 628 | setAttr_IssCap_CVM 628 | ||
| 629 | setAttr_IssCap_T2 629 | ||
| 630 | setAttr_IssCap_Sig 630 | ||
| 631 | setAttr_GenCryptgrm 631 | ||
| 632 | setAttr_T2Enc 632 | ||
| 633 | setAttr_T2cleartxt 633 | ||
| 634 | setAttr_TokICCsig 634 | ||
| 635 | setAttr_SecDevSig 635 | ||
| 636 | set_brand_IATA_ATA 636 | ||
| 637 | set_brand_Diners 637 | ||
| 638 | set_brand_AmericanExpress 638 | ||
| 639 | set_brand_JCB 639 | ||
| 640 | set_brand_Visa 640 | ||
| 641 | set_brand_MasterCard 641 | ||
| 642 | set_brand_Novus 642 | ||
| 643 | des_cdmf 643 | ||
| 644 | rsaOAEPEncryptionSET 644 | ||
| 645 | itu_t 645 | ||
| 646 | joint_iso_itu_t 646 | ||
| 647 | international_organizations 647 | ||
diff --git a/src/lib/libcrypto/objects/objects.txt b/src/lib/libcrypto/objects/objects.txt index 65d0b15629..71a4908485 100644 --- a/src/lib/libcrypto/objects/objects.txt +++ b/src/lib/libcrypto/objects/objects.txt | |||
| @@ -542,6 +542,7 @@ X509 43 : : initials | |||
| 542 | X509 44 : : generationQualifier | 542 | X509 44 : : generationQualifier |
| 543 | X509 45 : : x500UniqueIdentifier | 543 | X509 45 : : x500UniqueIdentifier |
| 544 | X509 46 : dnQualifier : dnQualifier | 544 | X509 46 : dnQualifier : dnQualifier |
| 545 | X509 65 : : pseudonym | ||
| 545 | X509 72 : role : role | 546 | X509 72 : role : role |
| 546 | 547 | ||
| 547 | X500 8 : X500algorithms : directory services - algorithms | 548 | X500 8 : X500algorithms : directory services - algorithms |
| @@ -762,3 +763,150 @@ pilotAttributeType 53 : : personalSignature | |||
| 762 | pilotAttributeType 54 : : dITRedirect | 763 | pilotAttributeType 54 : : dITRedirect |
| 763 | pilotAttributeType 55 : audio | 764 | pilotAttributeType 55 : audio |
| 764 | pilotAttributeType 56 : : documentPublisher | 765 | pilotAttributeType 56 : : documentPublisher |
| 766 | |||
| 767 | 2 23 42 : id-set : Secure Electronic Transactions | ||
| 768 | |||
| 769 | id-set 0 : set-ctype : content types | ||
| 770 | id-set 1 : set-msgExt : message extensions | ||
| 771 | id-set 3 : set-attr | ||
| 772 | id-set 5 : set-policy | ||
| 773 | id-set 7 : set-certExt : certificate extensions | ||
| 774 | id-set 8 : set-brand | ||
| 775 | |||
| 776 | set-ctype 0 : setct-PANData | ||
| 777 | set-ctype 1 : setct-PANToken | ||
| 778 | set-ctype 2 : setct-PANOnly | ||
| 779 | set-ctype 3 : setct-OIData | ||
| 780 | set-ctype 4 : setct-PI | ||
| 781 | set-ctype 5 : setct-PIData | ||
| 782 | set-ctype 6 : setct-PIDataUnsigned | ||
| 783 | set-ctype 7 : setct-HODInput | ||
| 784 | set-ctype 8 : setct-AuthResBaggage | ||
| 785 | set-ctype 9 : setct-AuthRevReqBaggage | ||
| 786 | set-ctype 10 : setct-AuthRevResBaggage | ||
| 787 | set-ctype 11 : setct-CapTokenSeq | ||
| 788 | set-ctype 12 : setct-PInitResData | ||
| 789 | set-ctype 13 : setct-PI-TBS | ||
| 790 | set-ctype 14 : setct-PResData | ||
| 791 | set-ctype 16 : setct-AuthReqTBS | ||
| 792 | set-ctype 17 : setct-AuthResTBS | ||
| 793 | set-ctype 18 : setct-AuthResTBSX | ||
| 794 | set-ctype 19 : setct-AuthTokenTBS | ||
| 795 | set-ctype 20 : setct-CapTokenData | ||
| 796 | set-ctype 21 : setct-CapTokenTBS | ||
| 797 | set-ctype 22 : setct-AcqCardCodeMsg | ||
| 798 | set-ctype 23 : setct-AuthRevReqTBS | ||
| 799 | set-ctype 24 : setct-AuthRevResData | ||
| 800 | set-ctype 25 : setct-AuthRevResTBS | ||
| 801 | set-ctype 26 : setct-CapReqTBS | ||
| 802 | set-ctype 27 : setct-CapReqTBSX | ||
| 803 | set-ctype 28 : setct-CapResData | ||
| 804 | set-ctype 29 : setct-CapRevReqTBS | ||
| 805 | set-ctype 30 : setct-CapRevReqTBSX | ||
| 806 | set-ctype 31 : setct-CapRevResData | ||
| 807 | set-ctype 32 : setct-CredReqTBS | ||
| 808 | set-ctype 33 : setct-CredReqTBSX | ||
| 809 | set-ctype 34 : setct-CredResData | ||
| 810 | set-ctype 35 : setct-CredRevReqTBS | ||
| 811 | set-ctype 36 : setct-CredRevReqTBSX | ||
| 812 | set-ctype 37 : setct-CredRevResData | ||
| 813 | set-ctype 38 : setct-PCertReqData | ||
| 814 | set-ctype 39 : setct-PCertResTBS | ||
| 815 | set-ctype 40 : setct-BatchAdminReqData | ||
| 816 | set-ctype 41 : setct-BatchAdminResData | ||
| 817 | set-ctype 42 : setct-CardCInitResTBS | ||
| 818 | set-ctype 43 : setct-MeAqCInitResTBS | ||
| 819 | set-ctype 44 : setct-RegFormResTBS | ||
| 820 | set-ctype 45 : setct-CertReqData | ||
| 821 | set-ctype 46 : setct-CertReqTBS | ||
| 822 | set-ctype 47 : setct-CertResData | ||
| 823 | set-ctype 48 : setct-CertInqReqTBS | ||
| 824 | set-ctype 49 : setct-ErrorTBS | ||
| 825 | set-ctype 50 : setct-PIDualSignedTBE | ||
| 826 | set-ctype 51 : setct-PIUnsignedTBE | ||
| 827 | set-ctype 52 : setct-AuthReqTBE | ||
| 828 | set-ctype 53 : setct-AuthResTBE | ||
| 829 | set-ctype 54 : setct-AuthResTBEX | ||
| 830 | set-ctype 55 : setct-AuthTokenTBE | ||
| 831 | set-ctype 56 : setct-CapTokenTBE | ||
| 832 | set-ctype 57 : setct-CapTokenTBEX | ||
| 833 | set-ctype 58 : setct-AcqCardCodeMsgTBE | ||
| 834 | set-ctype 59 : setct-AuthRevReqTBE | ||
| 835 | set-ctype 60 : setct-AuthRevResTBE | ||
| 836 | set-ctype 61 : setct-AuthRevResTBEB | ||
| 837 | set-ctype 62 : setct-CapReqTBE | ||
| 838 | set-ctype 63 : setct-CapReqTBEX | ||
| 839 | set-ctype 64 : setct-CapResTBE | ||
| 840 | set-ctype 65 : setct-CapRevReqTBE | ||
| 841 | set-ctype 66 : setct-CapRevReqTBEX | ||
| 842 | set-ctype 67 : setct-CapRevResTBE | ||
| 843 | set-ctype 68 : setct-CredReqTBE | ||
| 844 | set-ctype 69 : setct-CredReqTBEX | ||
| 845 | set-ctype 70 : setct-CredResTBE | ||
| 846 | set-ctype 71 : setct-CredRevReqTBE | ||
| 847 | set-ctype 72 : setct-CredRevReqTBEX | ||
| 848 | set-ctype 73 : setct-CredRevResTBE | ||
| 849 | set-ctype 74 : setct-BatchAdminReqTBE | ||
| 850 | set-ctype 75 : setct-BatchAdminResTBE | ||
| 851 | set-ctype 76 : setct-RegFormReqTBE | ||
| 852 | set-ctype 77 : setct-CertReqTBE | ||
| 853 | set-ctype 78 : setct-CertReqTBEX | ||
| 854 | set-ctype 79 : setct-CertResTBE | ||
| 855 | set-ctype 80 : setct-CRLNotificationTBS | ||
| 856 | set-ctype 81 : setct-CRLNotificationResTBS | ||
| 857 | set-ctype 82 : setct-BCIDistributionTBS | ||
| 858 | |||
| 859 | set-msgExt 1 : setext-genCrypt : generic cryptogram | ||
| 860 | set-msgExt 3 : setext-miAuth : merchant initiated auth | ||
| 861 | set-msgExt 4 : setext-pinSecure | ||
| 862 | set-msgExt 5 : setext-pinAny | ||
| 863 | set-msgExt 7 : setext-track2 | ||
| 864 | set-msgExt 8 : setext-cv : additional verification | ||
| 865 | |||
| 866 | set-policy 0 : set-policy-root | ||
| 867 | |||
| 868 | set-certExt 0 : setCext-hashedRoot | ||
| 869 | set-certExt 1 : setCext-certType | ||
| 870 | set-certExt 2 : setCext-merchData | ||
| 871 | set-certExt 3 : setCext-cCertRequired | ||
| 872 | set-certExt 4 : setCext-tunneling | ||
| 873 | set-certExt 5 : setCext-setExt | ||
| 874 | set-certExt 6 : setCext-setQualf | ||
| 875 | set-certExt 7 : setCext-PGWYcapabilities | ||
| 876 | set-certExt 8 : setCext-TokenIdentifier | ||
| 877 | set-certExt 9 : setCext-Track2Data | ||
| 878 | set-certExt 10 : setCext-TokenType | ||
| 879 | set-certExt 11 : setCext-IssuerCapabilities | ||
| 880 | |||
| 881 | set-attr 0 : setAttr-Cert | ||
| 882 | set-attr 1 : setAttr-PGWYcap : payment gateway capabilities | ||
| 883 | set-attr 2 : setAttr-TokenType | ||
| 884 | set-attr 3 : setAttr-IssCap : issuer capabilities | ||
| 885 | |||
| 886 | setAttr-Cert 0 : set-rootKeyThumb | ||
| 887 | setAttr-Cert 1 : set-addPolicy | ||
| 888 | |||
| 889 | setAttr-TokenType 1 : setAttr-Token-EMV | ||
| 890 | setAttr-TokenType 2 : setAttr-Token-B0Prime | ||
| 891 | |||
| 892 | setAttr-IssCap 3 : setAttr-IssCap-CVM | ||
| 893 | setAttr-IssCap 4 : setAttr-IssCap-T2 | ||
| 894 | setAttr-IssCap 5 : setAttr-IssCap-Sig | ||
| 895 | |||
| 896 | setAttr-IssCap-CVM 1 : setAttr-GenCryptgrm : generate cryptogram | ||
| 897 | setAttr-IssCap-T2 1 : setAttr-T2Enc : encrypted track 2 | ||
| 898 | setAttr-IssCap-T2 2 : setAttr-T2cleartxt : cleartext track 2 | ||
| 899 | |||
| 900 | setAttr-IssCap-Sig 1 : setAttr-TokICCsig : ICC or token signature | ||
| 901 | setAttr-IssCap-Sig 2 : setAttr-SecDevSig : secure device signature | ||
| 902 | |||
| 903 | set-brand 1 : set-brand-IATA-ATA | ||
| 904 | set-brand 30 : set-brand-Diners | ||
| 905 | set-brand 34 : set-brand-AmericanExpress | ||
| 906 | set-brand 35 : set-brand-JCB | ||
| 907 | set-brand 4 : set-brand-Visa | ||
| 908 | set-brand 5 : set-brand-MasterCard | ||
| 909 | set-brand 6011 : set-brand-Novus | ||
| 910 | |||
| 911 | rsadsi 3 10 : DES-CDMF : des-cdmf | ||
| 912 | rsadsi 1 1 6 : rsaOAEPEncryptionSET | ||
diff --git a/src/lib/libcrypto/ocsp/Makefile.ssl b/src/lib/libcrypto/ocsp/Makefile.ssl index 381c824e45..44eacbbb13 100644 --- a/src/lib/libcrypto/ocsp/Makefile.ssl +++ b/src/lib/libcrypto/ocsp/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -82,140 +82,212 @@ clean: | |||
| 82 | 82 | ||
| 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | 84 | ||
| 85 | ocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 85 | ocsp_asn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 86 | ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 86 | ocsp_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 87 | ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 87 | ocsp_asn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 88 | ocsp_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 88 | ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 89 | ocsp_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 89 | ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 90 | ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 90 | ocsp_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 91 | ocsp_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 92 | ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 93 | ocsp_asn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 94 | ocsp_asn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 95 | ocsp_asn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 91 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 96 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 92 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 97 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 93 | ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 98 | ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 94 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 99 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 100 | ocsp_asn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 101 | ocsp_asn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 95 | ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 102 | ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 96 | ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 103 | ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 104 | ocsp_asn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 97 | ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 105 | ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 98 | ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c | 106 | ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c |
| 99 | ocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h | 107 | ocsp_cl.o: ../../e_os.h ../../include/openssl/aes.h |
| 100 | ocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 108 | ocsp_cl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 101 | ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 109 | ocsp_cl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 102 | ocsp_cl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 110 | ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 103 | ocsp_cl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 111 | ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 104 | ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 112 | ocsp_cl.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 105 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 113 | ocsp_cl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 114 | ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 115 | ocsp_cl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 116 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 117 | ocsp_cl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 118 | ocsp_cl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 106 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 119 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 107 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 120 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 108 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 121 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 109 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 122 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 110 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 123 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 124 | ocsp_cl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 125 | ocsp_cl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 111 | ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 126 | ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 112 | ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 127 | ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 128 | ocsp_cl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 113 | ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 129 | ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 114 | ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c | 130 | ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c |
| 115 | ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 131 | ocsp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 132 | ocsp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 116 | ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 133 | ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 117 | ocsp_err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 134 | ocsp_err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 118 | ocsp_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 135 | ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 119 | ocsp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 136 | ocsp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 120 | ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 137 | ocsp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 138 | ocsp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 139 | ocsp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 140 | ocsp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 141 | ocsp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 121 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 142 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 122 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 143 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 123 | ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 144 | ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 124 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 145 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 146 | ocsp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 147 | ocsp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 125 | ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 148 | ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 126 | ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 149 | ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 150 | ocsp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 127 | ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 151 | ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 128 | ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c | 152 | ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c |
| 129 | ocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h | 153 | ocsp_ext.o: ../../e_os.h ../../include/openssl/aes.h |
| 130 | ocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 154 | ocsp_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 131 | ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 155 | ocsp_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 132 | ocsp_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 156 | ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 133 | ocsp_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 157 | ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 134 | ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 158 | ocsp_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 135 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 159 | ocsp_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 160 | ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 161 | ocsp_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 162 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 163 | ocsp_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 164 | ocsp_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 136 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 165 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 137 | ocsp_ext.o: ../../include/openssl/opensslconf.h | 166 | ocsp_ext.o: ../../include/openssl/opensslconf.h |
| 138 | ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 167 | ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 139 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 168 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 169 | ocsp_ext.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 170 | ocsp_ext.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 140 | ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 171 | ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 141 | ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 172 | ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 142 | ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 173 | ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 174 | ocsp_ext.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 143 | ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 175 | ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 144 | ocsp_ext.o: ../cryptlib.h ocsp_ext.c | 176 | ocsp_ext.o: ../cryptlib.h ocsp_ext.c |
| 145 | ocsp_ht.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 177 | ocsp_ht.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 178 | ocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 146 | ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 179 | ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 147 | ocsp_ht.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 180 | ocsp_ht.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 148 | ocsp_ht.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 181 | ocsp_ht.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 149 | ocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 182 | ocsp_ht.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 150 | ocsp_ht.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 183 | ocsp_ht.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 184 | ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 185 | ocsp_ht.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 186 | ocsp_ht.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 187 | ocsp_ht.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 151 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 188 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 152 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 189 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 153 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 190 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 154 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 191 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 192 | ocsp_ht.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 193 | ocsp_ht.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 155 | ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 194 | ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 156 | ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 195 | ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 196 | ocsp_ht.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 157 | ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 197 | ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 158 | ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c | 198 | ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c |
| 159 | ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 199 | ocsp_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 160 | ocsp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 200 | ocsp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 161 | ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 201 | ocsp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 162 | ocsp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 202 | ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 163 | ocsp_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 203 | ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 164 | ocsp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 204 | ocsp_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 165 | ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 205 | ocsp_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 206 | ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 207 | ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 208 | ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 209 | ocsp_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 210 | ocsp_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 166 | ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 211 | ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 167 | ocsp_lib.o: ../../include/openssl/opensslconf.h | 212 | ocsp_lib.o: ../../include/openssl/opensslconf.h |
| 168 | ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 213 | ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 169 | ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 214 | ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 170 | ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 215 | ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 216 | ocsp_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 217 | ocsp_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 171 | ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 218 | ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 172 | ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 219 | ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 173 | ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 220 | ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 221 | ocsp_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 174 | ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 222 | ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 175 | ocsp_lib.o: ../cryptlib.h ocsp_lib.c | 223 | ocsp_lib.o: ../cryptlib.h ocsp_lib.c |
| 176 | ocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 224 | ocsp_prn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 225 | ocsp_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 177 | ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 226 | ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 178 | ocsp_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 227 | ocsp_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 179 | ocsp_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 228 | ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 180 | ocsp_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 229 | ocsp_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 181 | ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 230 | ocsp_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 231 | ocsp_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 232 | ocsp_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 233 | ocsp_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 234 | ocsp_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 182 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 235 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 183 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 236 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 184 | ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 237 | ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 185 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 238 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 186 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 239 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 240 | ocsp_prn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 241 | ocsp_prn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 187 | ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 242 | ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 188 | ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 243 | ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 244 | ocsp_prn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 189 | ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 245 | ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 190 | ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c | 246 | ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c |
| 191 | ocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h | 247 | ocsp_srv.o: ../../e_os.h ../../include/openssl/aes.h |
| 192 | ocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 248 | ocsp_srv.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 193 | ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 249 | ocsp_srv.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 194 | ocsp_srv.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 250 | ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 195 | ocsp_srv.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 251 | ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 196 | ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 252 | ocsp_srv.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 197 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 253 | ocsp_srv.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 254 | ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 255 | ocsp_srv.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 256 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 257 | ocsp_srv.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 258 | ocsp_srv.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 198 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 259 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 199 | ocsp_srv.o: ../../include/openssl/opensslconf.h | 260 | ocsp_srv.o: ../../include/openssl/opensslconf.h |
| 200 | ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 261 | ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 201 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 262 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 202 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 263 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 264 | ocsp_srv.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 265 | ocsp_srv.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 203 | ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 266 | ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 204 | ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 267 | ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 205 | ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 268 | ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 269 | ocsp_srv.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 206 | ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 270 | ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 207 | ocsp_srv.o: ../cryptlib.h ocsp_srv.c | 271 | ocsp_srv.o: ../cryptlib.h ocsp_srv.c |
| 208 | ocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 272 | ocsp_vfy.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 273 | ocsp_vfy.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 209 | ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 274 | ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 210 | ocsp_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 275 | ocsp_vfy.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 211 | ocsp_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 276 | ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 212 | ocsp_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 277 | ocsp_vfy.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 213 | ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 278 | ocsp_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 279 | ocsp_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 280 | ocsp_vfy.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 281 | ocsp_vfy.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 282 | ocsp_vfy.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 214 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 283 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 215 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 284 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 216 | ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 285 | ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 217 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 286 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 287 | ocsp_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 288 | ocsp_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 218 | ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 289 | ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 219 | ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 290 | ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 291 | ocsp_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 220 | ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 292 | ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 221 | ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c | 293 | ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c |
diff --git a/src/lib/libcrypto/opensslv.h b/src/lib/libcrypto/opensslv.h index 0d23a02fb2..9689b49c5b 100644 --- a/src/lib/libcrypto/opensslv.h +++ b/src/lib/libcrypto/opensslv.h | |||
| @@ -25,8 +25,8 @@ | |||
| 25 | * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for | 25 | * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for |
| 26 | * major minor fix final patch/beta) | 26 | * major minor fix final patch/beta) |
| 27 | */ | 27 | */ |
| 28 | #define OPENSSL_VERSION_NUMBER 0x00907001L | 28 | #define OPENSSL_VERSION_NUMBER 0x00907003L |
| 29 | #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.7-beta1 01 Jun 2002" | 29 | #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.7-beta3 30 Jul 2002" |
| 30 | #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT | 30 | #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT |
| 31 | 31 | ||
| 32 | 32 | ||
diff --git a/src/lib/libcrypto/pem/Makefile.ssl b/src/lib/libcrypto/pem/Makefile.ssl index 27be11dfc0..5075d9107b 100644 --- a/src/lib/libcrypto/pem/Makefile.ssl +++ b/src/lib/libcrypto/pem/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -82,169 +82,255 @@ clean: | |||
| 82 | 82 | ||
| 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | 84 | ||
| 85 | pem_all.o: ../../e_os.h ../../include/openssl/asn1.h | 85 | pem_all.o: ../../e_os.h ../../include/openssl/aes.h |
| 86 | pem_all.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 86 | pem_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 87 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 87 | pem_all.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 88 | pem_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 88 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 89 | pem_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 89 | pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 90 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 90 | pem_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 91 | pem_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 92 | pem_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 93 | pem_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 94 | pem_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 95 | pem_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 91 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 96 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 92 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 97 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 93 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 98 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 94 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 99 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 100 | pem_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 101 | pem_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 95 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 102 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 96 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 103 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 97 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 104 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 105 | pem_all.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 98 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c | 106 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c |
| 99 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 107 | pem_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 108 | pem_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 100 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 109 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 101 | pem_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 110 | pem_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 102 | pem_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 111 | pem_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 103 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 112 | pem_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 104 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 113 | pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 114 | pem_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 115 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 116 | pem_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 117 | pem_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 105 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 118 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 106 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 119 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 107 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 120 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 108 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 121 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 122 | pem_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 123 | pem_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 109 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 124 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 110 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 125 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 126 | pem_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 111 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 127 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 112 | pem_err.o: pem_err.c | 128 | pem_err.o: pem_err.c |
| 113 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h | 129 | pem_info.o: ../../e_os.h ../../include/openssl/aes.h |
| 114 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 130 | pem_info.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 115 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 131 | pem_info.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 116 | pem_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 132 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 117 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 133 | pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 118 | pem_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 134 | pem_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 135 | pem_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 136 | pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 137 | pem_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 138 | pem_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 139 | pem_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 119 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 140 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 120 | pem_info.o: ../../include/openssl/opensslconf.h | 141 | pem_info.o: ../../include/openssl/opensslconf.h |
| 121 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 142 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 122 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 143 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 123 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 144 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 145 | pem_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 146 | pem_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 124 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 147 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 125 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 148 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 149 | pem_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 126 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 150 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 127 | pem_info.o: ../cryptlib.h pem_info.c | 151 | pem_info.o: ../cryptlib.h pem_info.c |
| 128 | pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 152 | pem_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 129 | pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 153 | pem_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 130 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 154 | pem_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 131 | pem_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 155 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 132 | pem_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 156 | pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 133 | pem_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 157 | pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 134 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 158 | pem_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 159 | pem_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 160 | pem_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 161 | pem_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 162 | pem_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 135 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 163 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 136 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 164 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 137 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 165 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 138 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 166 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h |
| 139 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 167 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 168 | pem_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 169 | pem_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 140 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 170 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 141 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 171 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 142 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 172 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 143 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 173 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 144 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | 174 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c |
| 145 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h | 175 | pem_oth.o: ../../e_os.h ../../include/openssl/aes.h |
| 146 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 176 | pem_oth.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 147 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 177 | pem_oth.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 148 | pem_oth.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 178 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 149 | pem_oth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 179 | pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 150 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 180 | pem_oth.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 181 | pem_oth.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 182 | pem_oth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 183 | pem_oth.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 184 | pem_oth.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 185 | pem_oth.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 151 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 186 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 152 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 187 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 153 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 188 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 154 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 189 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 155 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 190 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 191 | pem_oth.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 192 | pem_oth.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 156 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 193 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 157 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 194 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 195 | pem_oth.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 158 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 196 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 159 | pem_oth.o: ../cryptlib.h pem_oth.c | 197 | pem_oth.o: ../cryptlib.h pem_oth.c |
| 160 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h | 198 | pem_pk8.o: ../../e_os.h ../../include/openssl/aes.h |
| 161 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 199 | pem_pk8.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 162 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 200 | pem_pk8.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 163 | pem_pk8.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 201 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 164 | pem_pk8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 202 | pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 165 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 203 | pem_pk8.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 204 | pem_pk8.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 205 | pem_pk8.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 206 | pem_pk8.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 207 | pem_pk8.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 208 | pem_pk8.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 166 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 209 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 167 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 210 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 168 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 211 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 169 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 212 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h |
| 170 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 213 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 214 | pem_pk8.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 215 | pem_pk8.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 171 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 216 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 172 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 217 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 173 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 218 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 219 | pem_pk8.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 174 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | 220 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c |
| 175 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 221 | pem_pkey.o: ../../e_os.h ../../include/openssl/aes.h |
| 176 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 222 | pem_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 177 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 223 | pem_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 178 | pem_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 224 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 179 | pem_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 225 | pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 180 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 226 | pem_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 227 | pem_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 228 | pem_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 229 | pem_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 230 | pem_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 231 | pem_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 181 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 232 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 182 | pem_pkey.o: ../../include/openssl/opensslconf.h | 233 | pem_pkey.o: ../../include/openssl/opensslconf.h |
| 183 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 234 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 184 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 235 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 185 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 236 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 186 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 237 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 238 | pem_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 239 | pem_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 187 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 240 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 188 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 241 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 242 | pem_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 189 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 243 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 190 | pem_pkey.o: ../cryptlib.h pem_pkey.c | 244 | pem_pkey.o: ../cryptlib.h pem_pkey.c |
| 191 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h | 245 | pem_seal.o: ../../e_os.h ../../include/openssl/aes.h |
| 192 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 246 | pem_seal.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 193 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 247 | pem_seal.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 194 | pem_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 248 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 195 | pem_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 249 | pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 196 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 250 | pem_seal.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 251 | pem_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 252 | pem_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 253 | pem_seal.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 254 | pem_seal.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 255 | pem_seal.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 197 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 256 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 198 | pem_seal.o: ../../include/openssl/opensslconf.h | 257 | pem_seal.o: ../../include/openssl/opensslconf.h |
| 199 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 258 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 200 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 259 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 201 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 260 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 261 | pem_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 262 | pem_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 202 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 263 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 203 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 264 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 204 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 265 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 266 | pem_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 205 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | 267 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c |
| 206 | pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h | 268 | pem_sign.o: ../../e_os.h ../../include/openssl/aes.h |
| 207 | pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 269 | pem_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 208 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 270 | pem_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 209 | pem_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 271 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 210 | pem_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 272 | pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 211 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 273 | pem_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 274 | pem_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 275 | pem_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 276 | pem_sign.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 277 | pem_sign.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 278 | pem_sign.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 212 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 279 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 213 | pem_sign.o: ../../include/openssl/opensslconf.h | 280 | pem_sign.o: ../../include/openssl/opensslconf.h |
| 214 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 281 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 215 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 282 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 216 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 283 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 284 | pem_sign.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 285 | pem_sign.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 217 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 286 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 218 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 287 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 219 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 288 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 289 | pem_sign.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 220 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | 290 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c |
| 221 | pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h | 291 | pem_x509.o: ../../e_os.h ../../include/openssl/aes.h |
| 222 | pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 292 | pem_x509.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 223 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 293 | pem_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 224 | pem_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 294 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 225 | pem_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 295 | pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 226 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 296 | pem_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 297 | pem_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 298 | pem_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 299 | pem_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 300 | pem_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 301 | pem_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 227 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 302 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 228 | pem_x509.o: ../../include/openssl/opensslconf.h | 303 | pem_x509.o: ../../include/openssl/opensslconf.h |
| 229 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 304 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 230 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 305 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 231 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 306 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 307 | pem_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 308 | pem_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 232 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 309 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 233 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 310 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 311 | pem_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 234 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 312 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 235 | pem_x509.o: ../cryptlib.h pem_x509.c | 313 | pem_x509.o: ../cryptlib.h pem_x509.c |
| 236 | pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h | 314 | pem_xaux.o: ../../e_os.h ../../include/openssl/aes.h |
| 237 | pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 315 | pem_xaux.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 238 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 316 | pem_xaux.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 239 | pem_xaux.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 317 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 240 | pem_xaux.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 318 | pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 241 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 319 | pem_xaux.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 320 | pem_xaux.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 321 | pem_xaux.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 322 | pem_xaux.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 323 | pem_xaux.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 324 | pem_xaux.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 242 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 325 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 243 | pem_xaux.o: ../../include/openssl/opensslconf.h | 326 | pem_xaux.o: ../../include/openssl/opensslconf.h |
| 244 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 327 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 245 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 328 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 246 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 329 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 330 | pem_xaux.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 331 | pem_xaux.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 247 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 332 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 248 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 333 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 334 | pem_xaux.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 249 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 335 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 250 | pem_xaux.o: ../cryptlib.h pem_xaux.c | 336 | pem_xaux.o: ../cryptlib.h pem_xaux.c |
diff --git a/src/lib/libcrypto/pem/pem2.h b/src/lib/libcrypto/pem/pem2.h index 4e484bcd82..f31790d69c 100644 --- a/src/lib/libcrypto/pem/pem2.h +++ b/src/lib/libcrypto/pem/pem2.h | |||
| @@ -61,7 +61,9 @@ | |||
| 61 | extern "C" { | 61 | extern "C" { |
| 62 | #endif | 62 | #endif |
| 63 | 63 | ||
| 64 | #ifndef HEADER_PEM_H | ||
| 64 | void ERR_load_PEM_strings(void); | 65 | void ERR_load_PEM_strings(void); |
| 66 | #endif | ||
| 65 | 67 | ||
| 66 | #ifdef __cplusplus | 68 | #ifdef __cplusplus |
| 67 | } | 69 | } |
diff --git a/src/lib/libcrypto/perlasm/x86asm.pl b/src/lib/libcrypto/perlasm/x86asm.pl index 81c6e64e87..9a3d85b098 100644 --- a/src/lib/libcrypto/perlasm/x86asm.pl +++ b/src/lib/libcrypto/perlasm/x86asm.pl | |||
| @@ -87,6 +87,12 @@ $tmp | |||
| 87 | #ifdef OUT | 87 | #ifdef OUT |
| 88 | #define OK 1 | 88 | #define OK 1 |
| 89 | #define ALIGN 4 | 89 | #define ALIGN 4 |
| 90 | #if defined(__CYGWIN__) || defined(__DJGPP__) | ||
| 91 | #undef SIZE | ||
| 92 | #undef TYPE | ||
| 93 | #define SIZE(a,b) | ||
| 94 | #define TYPE(a,b) | ||
| 95 | #endif /* __CYGWIN || __DJGPP */ | ||
| 90 | #endif | 96 | #endif |
| 91 | 97 | ||
| 92 | #if defined(BSDI) && !defined(ELF) | 98 | #if defined(BSDI) && !defined(ELF) |
diff --git a/src/lib/libcrypto/perlasm/x86nasm.pl b/src/lib/libcrypto/perlasm/x86nasm.pl index b4da364bbf..519d8a5867 100644 --- a/src/lib/libcrypto/perlasm/x86nasm.pl +++ b/src/lib/libcrypto/perlasm/x86nasm.pl | |||
| @@ -209,7 +209,7 @@ sub using486 | |||
| 209 | 209 | ||
| 210 | sub main'file | 210 | sub main'file |
| 211 | { | 211 | { |
| 212 | push(@out, "segment .text\n"); | 212 | push(@out, "segment .text use32\n"); |
| 213 | } | 213 | } |
| 214 | 214 | ||
| 215 | sub main'function_begin | 215 | sub main'function_begin |
diff --git a/src/lib/libcrypto/pkcs12/Makefile.ssl b/src/lib/libcrypto/pkcs12/Makefile.ssl index 94089bc4b2..2b1d175157 100644 --- a/src/lib/libcrypto/pkcs12/Makefile.ssl +++ b/src/lib/libcrypto/pkcs12/Makefile.ssl | |||
| @@ -74,7 +74,7 @@ lint: | |||
| 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 75 | 75 | ||
| 76 | depend: | 76 | depend: |
| 77 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 77 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 78 | 78 | ||
| 79 | dclean: | 79 | dclean: |
| 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -85,213 +85,333 @@ clean: | |||
| 85 | 85 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 87 | 87 | ||
| 88 | p12_add.o: ../../e_os.h ../../include/openssl/asn1.h | 88 | p12_add.o: ../../e_os.h ../../include/openssl/aes.h |
| 89 | p12_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 89 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 90 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 90 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 91 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 92 | p12_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 92 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 93 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 93 | p12_add.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 94 | p12_add.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 95 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 96 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 97 | p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 98 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 94 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 99 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 95 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 100 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 96 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 101 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 97 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 102 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 103 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 104 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 98 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 105 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 99 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 106 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 107 | p12_add.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 100 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 108 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 101 | p12_add.o: ../cryptlib.h p12_add.c | 109 | p12_add.o: ../cryptlib.h p12_add.c |
| 102 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h | 110 | p12_asn.o: ../../e_os.h ../../include/openssl/aes.h |
| 103 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 111 | p12_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 112 | p12_asn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 104 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 113 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 105 | p12_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 114 | p12_asn.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 106 | p12_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 115 | p12_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 107 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 116 | p12_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 108 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 117 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 118 | p12_asn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 119 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 120 | p12_asn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 121 | p12_asn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 109 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 122 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 110 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 123 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 111 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 124 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 125 | p12_asn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 126 | p12_asn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 112 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 127 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 113 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 128 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 114 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 129 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 130 | p12_asn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 115 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | 131 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c |
| 116 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h | 132 | p12_attr.o: ../../e_os.h ../../include/openssl/aes.h |
| 117 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 133 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 118 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 134 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 119 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 135 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 120 | p12_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 136 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 121 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 137 | p12_attr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 138 | p12_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 139 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 140 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 141 | p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 142 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 122 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 143 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 123 | p12_attr.o: ../../include/openssl/opensslconf.h | 144 | p12_attr.o: ../../include/openssl/opensslconf.h |
| 124 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 145 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 146 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 147 | p12_attr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 148 | p12_attr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 126 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 149 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 127 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 128 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 151 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 152 | p12_attr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 129 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c | 153 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c |
| 130 | p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h | 154 | p12_crpt.o: ../../e_os.h ../../include/openssl/aes.h |
| 131 | p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 155 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 132 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 156 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 133 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 157 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 134 | p12_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 158 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 135 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 159 | p12_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 160 | p12_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 161 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 162 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 163 | p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 164 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 136 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 165 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 137 | p12_crpt.o: ../../include/openssl/opensslconf.h | 166 | p12_crpt.o: ../../include/openssl/opensslconf.h |
| 138 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 167 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 139 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 168 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 169 | p12_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 170 | p12_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 140 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 171 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 141 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 172 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 142 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 173 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 174 | p12_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 143 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c | 175 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c |
| 144 | p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h | 176 | p12_crt.o: ../../e_os.h ../../include/openssl/aes.h |
| 145 | p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 177 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 146 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 178 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 147 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 179 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 148 | p12_crt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 180 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 149 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 181 | p12_crt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 182 | p12_crt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 183 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 184 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 185 | p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 186 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 150 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 187 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 151 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 188 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 152 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 189 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 153 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 190 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 191 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 192 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 154 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 193 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 155 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 194 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 195 | p12_crt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 156 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 196 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 157 | p12_crt.o: ../cryptlib.h p12_crt.c | 197 | p12_crt.o: ../cryptlib.h p12_crt.c |
| 158 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h | 198 | p12_decr.o: ../../e_os.h ../../include/openssl/aes.h |
| 159 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 199 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 160 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 200 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 161 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 201 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 162 | p12_decr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 202 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 163 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 203 | p12_decr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 204 | p12_decr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 205 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 206 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 207 | p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 208 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 164 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 209 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 165 | p12_decr.o: ../../include/openssl/opensslconf.h | 210 | p12_decr.o: ../../include/openssl/opensslconf.h |
| 166 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 211 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 167 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 212 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 213 | p12_decr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 214 | p12_decr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 168 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 215 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 169 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 216 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 170 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 217 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 218 | p12_decr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 171 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c | 219 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c |
| 172 | p12_init.o: ../../e_os.h ../../include/openssl/asn1.h | 220 | p12_init.o: ../../e_os.h ../../include/openssl/aes.h |
| 173 | p12_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 221 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 174 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 222 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 175 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 223 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 176 | p12_init.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 224 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 177 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 225 | p12_init.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 226 | p12_init.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 227 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 228 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 229 | p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 230 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 178 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 231 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 179 | p12_init.o: ../../include/openssl/opensslconf.h | 232 | p12_init.o: ../../include/openssl/opensslconf.h |
| 180 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 233 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 181 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 234 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 235 | p12_init.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 236 | p12_init.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 182 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 237 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 183 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 238 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 184 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 239 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 240 | p12_init.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 185 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c | 241 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c |
| 186 | p12_key.o: ../../e_os.h ../../include/openssl/asn1.h | 242 | p12_key.o: ../../e_os.h ../../include/openssl/aes.h |
| 187 | p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 243 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 188 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 244 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 189 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 245 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 190 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 246 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 191 | p12_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 247 | p12_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 248 | p12_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 249 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 250 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 251 | p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 252 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 192 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 253 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 193 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 254 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 194 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 255 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 195 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 256 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 257 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 258 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 196 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 259 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 197 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 260 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 261 | p12_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 198 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 262 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 199 | p12_key.o: ../cryptlib.h p12_key.c | 263 | p12_key.o: ../cryptlib.h p12_key.c |
| 200 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h | 264 | p12_kiss.o: ../../e_os.h ../../include/openssl/aes.h |
| 201 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 265 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 202 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 266 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 203 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 267 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 204 | p12_kiss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 268 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 205 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 269 | p12_kiss.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 270 | p12_kiss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 271 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 272 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 273 | p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 274 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 206 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 275 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 207 | p12_kiss.o: ../../include/openssl/opensslconf.h | 276 | p12_kiss.o: ../../include/openssl/opensslconf.h |
| 208 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 277 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 209 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 278 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 279 | p12_kiss.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 280 | p12_kiss.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 210 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 281 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 211 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 282 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 212 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 283 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 284 | p12_kiss.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 213 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c | 285 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c |
| 214 | p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h | 286 | p12_mutl.o: ../../e_os.h ../../include/openssl/aes.h |
| 215 | p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 287 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 216 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 288 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 217 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 289 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 218 | p12_mutl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 290 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 219 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | 291 | p12_mutl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 220 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 292 | p12_mutl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 293 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 294 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
| 295 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 296 | p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 297 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 221 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 298 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 222 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 299 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 223 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 300 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 224 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 301 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 302 | p12_mutl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 303 | p12_mutl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 225 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 304 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 226 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 305 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 306 | p12_mutl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 227 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 307 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 228 | p12_mutl.o: ../cryptlib.h p12_mutl.c | 308 | p12_mutl.o: ../cryptlib.h p12_mutl.c |
| 229 | p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 309 | p12_npas.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 310 | p12_npas.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 230 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 311 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 231 | p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 312 | p12_npas.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 232 | p12_npas.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 313 | p12_npas.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 233 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 314 | p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 234 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 315 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 316 | p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 317 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 318 | p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 319 | p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 235 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 320 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 236 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 321 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 237 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 322 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 238 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 323 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 324 | p12_npas.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 325 | p12_npas.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 239 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 326 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 240 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 327 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 241 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 328 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 329 | p12_npas.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 242 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c | 330 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c |
| 243 | p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h | 331 | p12_p8d.o: ../../e_os.h ../../include/openssl/aes.h |
| 244 | p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 332 | p12_p8d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 245 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 333 | p12_p8d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 246 | p12_p8d.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 334 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 247 | p12_p8d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 335 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 248 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 336 | p12_p8d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 337 | p12_p8d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 338 | p12_p8d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 339 | p12_p8d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 340 | p12_p8d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 341 | p12_p8d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 249 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 342 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 250 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 343 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 251 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 344 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 252 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 345 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 346 | p12_p8d.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 347 | p12_p8d.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 253 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 348 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 254 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 349 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 350 | p12_p8d.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 255 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 351 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 256 | p12_p8d.o: ../cryptlib.h p12_p8d.c | 352 | p12_p8d.o: ../cryptlib.h p12_p8d.c |
| 257 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h | 353 | p12_p8e.o: ../../e_os.h ../../include/openssl/aes.h |
| 258 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 354 | p12_p8e.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 259 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 355 | p12_p8e.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 260 | p12_p8e.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 356 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 261 | p12_p8e.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 357 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 262 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 358 | p12_p8e.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 359 | p12_p8e.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 360 | p12_p8e.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 361 | p12_p8e.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 362 | p12_p8e.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 363 | p12_p8e.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 263 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 364 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 264 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 365 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 265 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 366 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 266 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 367 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 368 | p12_p8e.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 369 | p12_p8e.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 267 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 370 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 268 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 371 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 372 | p12_p8e.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 269 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 373 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 270 | p12_p8e.o: ../cryptlib.h p12_p8e.c | 374 | p12_p8e.o: ../cryptlib.h p12_p8e.c |
| 271 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h | 375 | p12_utl.o: ../../e_os.h ../../include/openssl/aes.h |
| 272 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 376 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 273 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 377 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 274 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 378 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 275 | p12_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 379 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 276 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 380 | p12_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 381 | p12_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 382 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 383 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 384 | p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 385 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 277 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 386 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 278 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 387 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 279 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 388 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 280 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 389 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 390 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 391 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 281 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 392 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 282 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 393 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 394 | p12_utl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 283 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 395 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 284 | p12_utl.o: ../cryptlib.h p12_utl.c | 396 | p12_utl.o: ../cryptlib.h p12_utl.c |
| 285 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 397 | pk12err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 398 | pk12err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 286 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 399 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 287 | pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 400 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 288 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 401 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 289 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 402 | pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 290 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 403 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 404 | pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 405 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 406 | pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 407 | pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 291 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 408 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 292 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 409 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 293 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 410 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 411 | pk12err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 412 | pk12err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 294 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 413 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 295 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 414 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 296 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 415 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 416 | pk12err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 297 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c | 417 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c |
diff --git a/src/lib/libcrypto/pkcs12/pkcs12.h b/src/lib/libcrypto/pkcs12/pkcs12.h index 1786b6d4f3..dd338f266c 100644 --- a/src/lib/libcrypto/pkcs12/pkcs12.h +++ b/src/lib/libcrypto/pkcs12/pkcs12.h | |||
| @@ -156,8 +156,8 @@ union { | |||
| 156 | #define M_PKCS12_decrypt_skey PKCS12_decrypt_skey | 156 | #define M_PKCS12_decrypt_skey PKCS12_decrypt_skey |
| 157 | #define M_PKCS8_decrypt PKCS8_decrypt | 157 | #define M_PKCS8_decrypt PKCS8_decrypt |
| 158 | 158 | ||
| 159 | #define M_PKCS12_bag_type(bag) OBJ_obj2nid(bag->type) | 159 | #define M_PKCS12_bag_type(bg) OBJ_obj2nid((bg)->type) |
| 160 | #define M_PKCS12_cert_bag_type(bag) OBJ_obj2nid(bag->value.bag->type) | 160 | #define M_PKCS12_cert_bag_type(bg) OBJ_obj2nid((bg)->value.bag->type) |
| 161 | #define M_PKCS12_crl_bag_type M_PKCS12_cert_bag_type | 161 | #define M_PKCS12_crl_bag_type M_PKCS12_cert_bag_type |
| 162 | 162 | ||
| 163 | #define PKCS12_get_attr(bag, attr_nid) \ | 163 | #define PKCS12_get_attr(bag, attr_nid) \ |
diff --git a/src/lib/libcrypto/pkcs7/Makefile.ssl b/src/lib/libcrypto/pkcs7/Makefile.ssl index d2afd977e1..1302469def 100644 --- a/src/lib/libcrypto/pkcs7/Makefile.ssl +++ b/src/lib/libcrypto/pkcs7/Makefile.ssl | |||
| @@ -89,7 +89,7 @@ lint: | |||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 90 | 90 | ||
| 91 | depend: | 91 | depend: |
| 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 92 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 93 | 93 | ||
| 94 | dclean: | 94 | dclean: |
| 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -100,89 +100,137 @@ clean: | |||
| 100 | 100 | ||
| 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | 102 | ||
| 103 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 103 | pk7_asn1.o: ../../e_os.h ../../include/openssl/aes.h |
| 104 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 104 | pk7_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 105 | pk7_asn1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 105 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 106 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 106 | pk7_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 107 | pk7_asn1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 107 | pk7_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 108 | pk7_asn1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 108 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 109 | pk7_asn1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 110 | pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 111 | pk7_asn1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 112 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 113 | pk7_asn1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 114 | pk7_asn1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 110 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 115 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 111 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 116 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 112 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 117 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 118 | pk7_asn1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 119 | pk7_asn1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 113 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 120 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 114 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 121 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 122 | pk7_asn1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 115 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 123 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 116 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c | 124 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c |
| 117 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 125 | pk7_attr.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 126 | pk7_attr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 118 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 127 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 119 | pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 128 | pk7_attr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 120 | pk7_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 129 | pk7_attr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 121 | pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 130 | pk7_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 122 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 131 | pk7_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 132 | pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 133 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 134 | pk7_attr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 135 | pk7_attr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 123 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 136 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 124 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 137 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 138 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 126 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 139 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 140 | pk7_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 141 | pk7_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 127 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 142 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 128 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 143 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 144 | pk7_attr.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 129 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 145 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 130 | pk7_attr.o: pk7_attr.c | 146 | pk7_attr.o: pk7_attr.c |
| 131 | pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h | 147 | pk7_doit.o: ../../e_os.h ../../include/openssl/aes.h |
| 132 | pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 148 | pk7_doit.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 133 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 149 | pk7_doit.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 134 | pk7_doit.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 150 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 135 | pk7_doit.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 151 | pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 136 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 152 | pk7_doit.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 137 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 153 | pk7_doit.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 154 | pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 155 | pk7_doit.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 156 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 157 | pk7_doit.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 158 | pk7_doit.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 138 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 159 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 139 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 160 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 140 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 161 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 162 | pk7_doit.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 163 | pk7_doit.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 141 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 164 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 142 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 165 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 143 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 166 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 167 | pk7_doit.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 144 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 168 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 145 | pk7_doit.o: ../cryptlib.h pk7_doit.c | 169 | pk7_doit.o: ../cryptlib.h pk7_doit.c |
| 146 | pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 170 | pk7_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 147 | pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 171 | pk7_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 148 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 172 | pk7_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 149 | pk7_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 173 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 150 | pk7_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 174 | pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 151 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 175 | pk7_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 176 | pk7_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 177 | pk7_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 178 | pk7_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 179 | pk7_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 180 | pk7_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 152 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 181 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 153 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 182 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 154 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 183 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 184 | pk7_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 185 | pk7_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 155 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 186 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 156 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 187 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 157 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 188 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 189 | pk7_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 158 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | 190 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c |
| 159 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h | 191 | pk7_mime.o: ../../e_os.h ../../include/openssl/aes.h |
| 160 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 192 | pk7_mime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 161 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 193 | pk7_mime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 162 | pk7_mime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 194 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 163 | pk7_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 195 | pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 164 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 196 | pk7_mime.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 197 | pk7_mime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 198 | pk7_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 199 | pk7_mime.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 200 | pk7_mime.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 201 | pk7_mime.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 165 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 202 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 166 | pk7_mime.o: ../../include/openssl/opensslconf.h | 203 | pk7_mime.o: ../../include/openssl/opensslconf.h |
| 167 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 204 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 168 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 205 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 206 | pk7_mime.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 207 | pk7_mime.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 169 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 208 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 170 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 209 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 171 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 210 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 211 | pk7_mime.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 172 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c | 212 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c |
| 173 | pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h | 213 | pk7_smime.o: ../../e_os.h ../../include/openssl/aes.h |
| 174 | pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 214 | pk7_smime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 175 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 215 | pk7_smime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 176 | pk7_smime.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 216 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 177 | pk7_smime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 217 | pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 178 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 218 | pk7_smime.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 179 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 219 | pk7_smime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 220 | pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 221 | pk7_smime.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 222 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 223 | pk7_smime.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 224 | pk7_smime.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 180 | pk7_smime.o: ../../include/openssl/objects.h | 225 | pk7_smime.o: ../../include/openssl/objects.h |
| 181 | pk7_smime.o: ../../include/openssl/opensslconf.h | 226 | pk7_smime.o: ../../include/openssl/opensslconf.h |
| 182 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 227 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 183 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 228 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 229 | pk7_smime.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 230 | pk7_smime.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 184 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 231 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 185 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 232 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 233 | pk7_smime.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 186 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 234 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 187 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c | 235 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c |
| 188 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 236 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
diff --git a/src/lib/libcrypto/pkcs7/verify.c b/src/lib/libcrypto/pkcs7/verify.c index 5f7afe8933..b40f26032e 100644 --- a/src/lib/libcrypto/pkcs7/verify.c +++ b/src/lib/libcrypto/pkcs7/verify.c | |||
| @@ -179,10 +179,11 @@ char *argv[]; | |||
| 179 | { | 179 | { |
| 180 | ASN1_UTCTIME *tm; | 180 | ASN1_UTCTIME *tm; |
| 181 | char *str1,*str2; | 181 | char *str1,*str2; |
| 182 | int rc; | ||
| 182 | 183 | ||
| 183 | si=sk_PKCS7_SIGNER_INFO_value(sk,i); | 184 | si=sk_PKCS7_SIGNER_INFO_value(sk,i); |
| 184 | i=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si); | 185 | rc=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si); |
| 185 | if (i <= 0) | 186 | if (rc <= 0) |
| 186 | goto err; | 187 | goto err; |
| 187 | printf("signer info\n"); | 188 | printf("signer info\n"); |
| 188 | if ((tm=get_signed_time(si)) != NULL) | 189 | if ((tm=get_signed_time(si)) != NULL) |
diff --git a/src/lib/libcrypto/rand/Makefile.ssl b/src/lib/libcrypto/rand/Makefile.ssl index 4d73d4f7e8..73b5f568e8 100644 --- a/src/lib/libcrypto/rand/Makefile.ssl +++ b/src/lib/libcrypto/rand/Makefile.ssl | |||
| @@ -70,7 +70,7 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 71 | ||
| 72 | depend: | 72 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 74 | ||
| 75 | dclean: | 75 | dclean: |
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -81,16 +81,26 @@ clean: | |||
| 81 | 81 | ||
| 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 83 | 83 | ||
| 84 | md_rand.o: ../../e_os.h ../../include/openssl/asn1.h | 84 | md_rand.o: ../../e_os.h ../../include/openssl/aes.h |
| 85 | md_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 85 | md_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 86 | md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 86 | md_rand.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 87 | md_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 87 | md_rand.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 88 | md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 88 | md_rand.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 89 | md_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 90 | md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 91 | md_rand.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 92 | md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 93 | md_rand.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 94 | md_rand.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 89 | md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 95 | md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 90 | md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 96 | md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 91 | md_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 97 | md_rand.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 92 | md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 98 | md_rand.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 93 | md_rand.o: ../../include/openssl/symhacks.h md_rand.c rand_lcl.h | 99 | md_rand.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 100 | md_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 101 | md_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 102 | md_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 103 | md_rand.o: md_rand.c rand_lcl.h | ||
| 94 | rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 104 | rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
| 95 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 105 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 96 | rand_egd.o: rand_egd.c | 106 | rand_egd.o: rand_egd.c |
| @@ -113,42 +123,69 @@ rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 113 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 123 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 114 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 124 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 115 | rand_lib.o: ../cryptlib.h rand_lib.c | 125 | rand_lib.o: ../cryptlib.h rand_lib.c |
| 116 | rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h | 126 | rand_os2.o: ../../e_os.h ../../include/openssl/aes.h |
| 117 | rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 127 | rand_os2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 118 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 128 | rand_os2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 119 | rand_os2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 129 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 120 | rand_os2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 130 | rand_os2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 131 | rand_os2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 132 | rand_os2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 133 | rand_os2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 134 | rand_os2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 135 | rand_os2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 136 | rand_os2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 121 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 137 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 122 | rand_os2.o: ../../include/openssl/opensslconf.h | 138 | rand_os2.o: ../../include/openssl/opensslconf.h |
| 123 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 139 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 124 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 140 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 125 | rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 141 | rand_os2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 126 | rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | 142 | rand_os2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 127 | rand_os2.o: rand_os2.c | 143 | rand_os2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 128 | rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h | 144 | rand_os2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 129 | rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 145 | rand_os2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 130 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 146 | rand_os2.o: ../cryptlib.h rand_lcl.h rand_os2.c |
| 131 | rand_unix.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 147 | rand_unix.o: ../../e_os.h ../../include/openssl/aes.h |
| 132 | rand_unix.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 148 | rand_unix.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | rand_unix.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 150 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 151 | rand_unix.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 152 | rand_unix.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 153 | rand_unix.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 154 | rand_unix.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 155 | rand_unix.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 156 | rand_unix.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 157 | rand_unix.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 133 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 158 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 134 | rand_unix.o: ../../include/openssl/opensslconf.h | 159 | rand_unix.o: ../../include/openssl/opensslconf.h |
| 135 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 160 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 136 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 161 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 137 | rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 162 | rand_unix.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 138 | rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | 163 | rand_unix.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 139 | rand_unix.o: rand_unix.c | 164 | rand_unix.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 140 | rand_win.o: ../../e_os.h ../../include/openssl/asn1.h | 165 | rand_unix.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 141 | rand_win.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 166 | rand_unix.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 142 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 167 | rand_unix.o: ../cryptlib.h rand_lcl.h rand_unix.c |
| 143 | rand_win.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 168 | rand_win.o: ../../e_os.h ../../include/openssl/aes.h |
| 144 | rand_win.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 169 | rand_win.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 170 | rand_win.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 171 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 172 | rand_win.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 173 | rand_win.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 174 | rand_win.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 175 | rand_win.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 176 | rand_win.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 177 | rand_win.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 178 | rand_win.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 145 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 179 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 146 | rand_win.o: ../../include/openssl/opensslconf.h | 180 | rand_win.o: ../../include/openssl/opensslconf.h |
| 147 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 181 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 148 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 182 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 149 | rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 183 | rand_win.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 150 | rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | 184 | rand_win.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 151 | rand_win.o: rand_win.c | 185 | rand_win.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 186 | rand_win.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 187 | rand_win.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 188 | rand_win.o: ../cryptlib.h rand_lcl.h rand_win.c | ||
| 152 | randfile.o: ../../e_os.h ../../include/openssl/crypto.h | 189 | randfile.o: ../../e_os.h ../../include/openssl/crypto.h |
| 153 | randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 190 | randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
| 154 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 191 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
diff --git a/src/lib/libcrypto/rand/rand.h b/src/lib/libcrypto/rand/rand.h index e17aa7a9f7..66e39991ec 100644 --- a/src/lib/libcrypto/rand/rand.h +++ b/src/lib/libcrypto/rand/rand.h | |||
| @@ -61,6 +61,11 @@ | |||
| 61 | 61 | ||
| 62 | #include <stdlib.h> | 62 | #include <stdlib.h> |
| 63 | #include <openssl/ossl_typ.h> | 63 | #include <openssl/ossl_typ.h> |
| 64 | #include <openssl/e_os2.h> | ||
| 65 | |||
| 66 | #if defined(OPENSSL_SYS_WINDOWS) | ||
| 67 | #include <windows.h> | ||
| 68 | #endif | ||
| 64 | 69 | ||
| 65 | #ifdef __cplusplus | 70 | #ifdef __cplusplus |
| 66 | extern "C" { | 71 | extern "C" { |
diff --git a/src/lib/libcrypto/rand/rand_egd.c b/src/lib/libcrypto/rand/rand_egd.c index 97ed12cf67..abc3ac27d5 100644 --- a/src/lib/libcrypto/rand/rand_egd.c +++ b/src/lib/libcrypto/rand/rand_egd.c | |||
| @@ -94,7 +94,7 @@ | |||
| 94 | * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255. | 94 | * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255. |
| 95 | */ | 95 | */ |
| 96 | 96 | ||
| 97 | #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) | 97 | #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(__DJGPP__) |
| 98 | int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) | 98 | int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) |
| 99 | { | 99 | { |
| 100 | return(-1); | 100 | return(-1); |
diff --git a/src/lib/libcrypto/rand/rand_unix.c b/src/lib/libcrypto/rand/rand_unix.c index 0b29235130..a7f66c6dfe 100644 --- a/src/lib/libcrypto/rand/rand_unix.c +++ b/src/lib/libcrypto/rand/rand_unix.c | |||
| @@ -109,6 +109,8 @@ | |||
| 109 | * | 109 | * |
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #define USE_SOCKETS | ||
| 113 | #include "e_os.h" | ||
| 112 | #include "cryptlib.h" | 114 | #include "cryptlib.h" |
| 113 | #include <openssl/rand.h> | 115 | #include <openssl/rand.h> |
| 114 | #include "rand_lcl.h" | 116 | #include "rand_lcl.h" |
diff --git a/src/lib/libcrypto/rand/randfile.c b/src/lib/libcrypto/rand/randfile.c index 1c3e68ef31..215c2616eb 100644 --- a/src/lib/libcrypto/rand/randfile.c +++ b/src/lib/libcrypto/rand/randfile.c | |||
| @@ -144,7 +144,7 @@ int RAND_write_file(const char *file) | |||
| 144 | FILE *out = NULL; | 144 | FILE *out = NULL; |
| 145 | int n; | 145 | int n; |
| 146 | struct stat sb; | 146 | struct stat sb; |
| 147 | 147 | ||
| 148 | i=stat(file,&sb); | 148 | i=stat(file,&sb); |
| 149 | if (i != -1) { | 149 | if (i != -1) { |
| 150 | if (sb.st_mode & (S_IFBLK | S_IFCHR)) { | 150 | if (sb.st_mode & (S_IFBLK | S_IFCHR)) { |
diff --git a/src/lib/libcrypto/rc2/Makefile.ssl b/src/lib/libcrypto/rc2/Makefile.ssl index 6aa921c863..88e41bb98e 100644 --- a/src/lib/libcrypto/rc2/Makefile.ssl +++ b/src/lib/libcrypto/rc2/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/rc4/Makefile.ssl b/src/lib/libcrypto/rc4/Makefile.ssl index c779728af8..6e5bbf9894 100644 --- a/src/lib/libcrypto/rc4/Makefile.ssl +++ b/src/lib/libcrypto/rc4/Makefile.ssl | |||
| @@ -97,7 +97,7 @@ lint: | |||
| 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 98 | 98 | ||
| 99 | depend: | 99 | depend: |
| 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 101 | 101 | ||
| 102 | dclean: | 102 | dclean: |
| 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/rc5/Makefile.ssl b/src/lib/libcrypto/rc5/Makefile.ssl index 01d08c7d43..ff31ab47a9 100644 --- a/src/lib/libcrypto/rc5/Makefile.ssl +++ b/src/lib/libcrypto/rc5/Makefile.ssl | |||
| @@ -94,7 +94,7 @@ lint: | |||
| 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 95 | 95 | ||
| 96 | depend: | 96 | depend: |
| 97 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 97 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 98 | 98 | ||
| 99 | dclean: | 99 | dclean: |
| 100 | $(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 |
diff --git a/src/lib/libcrypto/rijndael/Makefile.ssl b/src/lib/libcrypto/rijndael/Makefile.ssl index 7f57f174fd..6b098203b9 100644 --- a/src/lib/libcrypto/rijndael/Makefile.ssl +++ b/src/lib/libcrypto/rijndael/Makefile.ssl | |||
| @@ -75,7 +75,7 @@ lint: | |||
| 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 76 | 76 | ||
| 77 | depend: | 77 | depend: |
| 78 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 78 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 79 | 79 | ||
| 80 | dclean: | 80 | dclean: |
| 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/ripemd/Makefile.ssl b/src/lib/libcrypto/ripemd/Makefile.ssl index a58662a69f..7ab5d2fc9e 100644 --- a/src/lib/libcrypto/ripemd/Makefile.ssl +++ b/src/lib/libcrypto/ripemd/Makefile.ssl | |||
| @@ -92,7 +92,7 @@ lint: | |||
| 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 93 | 93 | ||
| 94 | depend: | 94 | depend: |
| 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 96 | 96 | ||
| 97 | dclean: | 97 | dclean: |
| 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/rsa/Makefile.ssl b/src/lib/libcrypto/rsa/Makefile.ssl index ddd138acd2..8c44b7f142 100644 --- a/src/lib/libcrypto/rsa/Makefile.ssl +++ b/src/lib/libcrypto/rsa/Makefile.ssl | |||
| @@ -72,7 +72,7 @@ lint: | |||
| 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 73 | 73 | ||
| 74 | depend: | 74 | depend: |
| 75 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 76 | 76 | ||
| 77 | dclean: | 77 | dclean: |
| 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -158,17 +158,26 @@ rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 160 | 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 |
| 161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h | 161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/aes.h |
| 162 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 162 | rsa_oaep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 163 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 163 | rsa_oaep.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 164 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 164 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 165 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 165 | rsa_oaep.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 166 | rsa_oaep.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 167 | rsa_oaep.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 168 | rsa_oaep.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 169 | rsa_oaep.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 171 | rsa_oaep.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 166 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 172 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 167 | rsa_oaep.o: ../../include/openssl/opensslconf.h | 173 | rsa_oaep.o: ../../include/openssl/opensslconf.h |
| 168 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 174 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 169 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 175 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 176 | rsa_oaep.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 177 | rsa_oaep.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 178 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 171 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 179 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 180 | rsa_oaep.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 172 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | 181 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c |
| 173 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | 182 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h |
| 174 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 183 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| @@ -179,35 +188,50 @@ rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 179 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 188 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 180 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 189 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 181 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | 190 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c |
| 182 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h | 191 | rsa_saos.o: ../../e_os.h ../../include/openssl/aes.h |
| 183 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 192 | rsa_saos.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 184 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 193 | rsa_saos.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 185 | rsa_saos.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 194 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 186 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 195 | rsa_saos.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 187 | rsa_saos.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 196 | rsa_saos.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 197 | rsa_saos.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 198 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 199 | rsa_saos.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 200 | rsa_saos.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 201 | rsa_saos.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 188 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 202 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 189 | rsa_saos.o: ../../include/openssl/opensslconf.h | 203 | rsa_saos.o: ../../include/openssl/opensslconf.h |
| 190 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 204 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 191 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 205 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 206 | rsa_saos.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 207 | rsa_saos.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 192 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 208 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 193 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 209 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 210 | rsa_saos.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 194 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 211 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 195 | rsa_saos.o: ../cryptlib.h rsa_saos.c | 212 | rsa_saos.o: ../cryptlib.h rsa_saos.c |
| 196 | rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | 213 | rsa_sign.o: ../../e_os.h ../../include/openssl/aes.h |
| 197 | rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 214 | rsa_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 198 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 215 | rsa_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 199 | rsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 216 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 200 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 217 | rsa_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 201 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 218 | rsa_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 202 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 219 | rsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 220 | rsa_sign.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 221 | rsa_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 222 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 223 | rsa_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 224 | rsa_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 203 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 225 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 204 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 226 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 205 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 227 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 228 | rsa_sign.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 229 | rsa_sign.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 206 | rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 230 | rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 207 | rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 231 | rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 208 | rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 232 | rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 209 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 233 | rsa_sign.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 210 | rsa_sign.o: ../cryptlib.h rsa_sign.c | 234 | rsa_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h rsa_sign.c |
| 211 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | 235 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h |
| 212 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 236 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 213 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 237 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
diff --git a/src/lib/libcrypto/rsa/rsa.h b/src/lib/libcrypto/rsa/rsa.h index 030a6c88e5..98b3bd7cc5 100644 --- a/src/lib/libcrypto/rsa/rsa.h +++ b/src/lib/libcrypto/rsa/rsa.h | |||
| @@ -276,6 +276,9 @@ int RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | |||
| 276 | int RSA_set_ex_data(RSA *r,int idx,void *arg); | 276 | int RSA_set_ex_data(RSA *r,int idx,void *arg); |
| 277 | void *RSA_get_ex_data(const RSA *r, int idx); | 277 | void *RSA_get_ex_data(const RSA *r, int idx); |
| 278 | 278 | ||
| 279 | RSA *RSAPublicKey_dup(RSA *rsa); | ||
| 280 | RSA *RSAPrivateKey_dup(RSA *rsa); | ||
| 281 | |||
| 279 | /* BEGIN ERROR CODES */ | 282 | /* BEGIN ERROR CODES */ |
| 280 | /* The following lines are auto generated by the script mkerr.pl. Any changes | 283 | /* The following lines are auto generated by the script mkerr.pl. Any changes |
| 281 | * made after this point may be overwritten when the script is next run. | 284 | * made after this point may be overwritten when the script is next run. |
diff --git a/src/lib/libcrypto/sha/Makefile.ssl b/src/lib/libcrypto/sha/Makefile.ssl index 482ff192b1..0aa678d6f4 100644 --- a/src/lib/libcrypto/sha/Makefile.ssl +++ b/src/lib/libcrypto/sha/Makefile.ssl | |||
| @@ -92,7 +92,7 @@ lint: | |||
| 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 93 | 93 | ||
| 94 | depend: | 94 | depend: |
| 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 96 | 96 | ||
| 97 | dclean: | 97 | dclean: |
| 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/stack/Makefile.ssl b/src/lib/libcrypto/stack/Makefile.ssl index e04066dcd6..8574739c76 100644 --- a/src/lib/libcrypto/stack/Makefile.ssl +++ b/src/lib/libcrypto/stack/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/symhacks.h b/src/lib/libcrypto/symhacks.h index de0f452b47..774162fec9 100644 --- a/src/lib/libcrypto/symhacks.h +++ b/src/lib/libcrypto/symhacks.h | |||
| @@ -247,7 +247,7 @@ | |||
| 247 | 247 | ||
| 248 | 248 | ||
| 249 | /* Case insensiteve linking causes problems.... */ | 249 | /* Case insensiteve linking causes problems.... */ |
| 250 | #if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_VMS) | 250 | #if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_OS2) |
| 251 | #undef ERR_load_CRYPTO_strings | 251 | #undef ERR_load_CRYPTO_strings |
| 252 | #define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings | 252 | #define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings |
| 253 | #undef OCSP_crlID_new | 253 | #undef OCSP_crlID_new |
diff --git a/src/lib/libcrypto/txt_db/Makefile.ssl b/src/lib/libcrypto/txt_db/Makefile.ssl index 8e697fc863..61ff361348 100644 --- a/src/lib/libcrypto/txt_db/Makefile.ssl +++ b/src/lib/libcrypto/txt_db/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/ui/Makefile.ssl b/src/lib/libcrypto/ui/Makefile.ssl index 7de1d0022b..57b2e38335 100644 --- a/src/lib/libcrypto/ui/Makefile.ssl +++ b/src/lib/libcrypto/ui/Makefile.ssl | |||
| @@ -72,7 +72,7 @@ lint: | |||
| 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 73 | 73 | ||
| 74 | depend: | 74 | depend: |
| 75 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 76 | 76 | ||
| 77 | dclean: | 77 | dclean: |
| 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libcrypto/ui/ui_openssl.c b/src/lib/libcrypto/ui/ui_openssl.c index 821dd29eaa..f47ed31cb0 100644 --- a/src/lib/libcrypto/ui/ui_openssl.c +++ b/src/lib/libcrypto/ui/ui_openssl.c | |||
| @@ -269,7 +269,7 @@ static long tty_orig[3], tty_new[3]; /* XXX Is there any guarantee that this w | |||
| 269 | static long status; | 269 | static long status; |
| 270 | static unsigned short channel = 0; | 270 | static unsigned short channel = 0; |
| 271 | #else | 271 | #else |
| 272 | #ifndef OPENSSL_SYS_MSDOS | 272 | #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) |
| 273 | static TTY_STRUCT tty_orig,tty_new; | 273 | static TTY_STRUCT tty_orig,tty_new; |
| 274 | #endif | 274 | #endif |
| 275 | #endif | 275 | #endif |
diff --git a/src/lib/libcrypto/ui/ui_util.c b/src/lib/libcrypto/ui/ui_util.c index 7c6f7d3a73..f05573df33 100644 --- a/src/lib/libcrypto/ui/ui_util.c +++ b/src/lib/libcrypto/ui/ui_util.c | |||
| @@ -71,12 +71,15 @@ int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) | |||
| 71 | int ok = 0; | 71 | int ok = 0; |
| 72 | UI *ui; | 72 | UI *ui; |
| 73 | 73 | ||
| 74 | if (size < 1) | ||
| 75 | return -1; | ||
| 76 | |||
| 74 | ui = UI_new(); | 77 | ui = UI_new(); |
| 75 | if (ui) | 78 | if (ui) |
| 76 | { | 79 | { |
| 77 | ok = UI_add_input_string(ui,prompt,0,buf,0,BUFSIZ-1); | 80 | ok = UI_add_input_string(ui,prompt,0,buf,0,size-1); |
| 78 | if (ok == 0 && verify) | 81 | if (ok == 0 && verify) |
| 79 | ok = UI_add_verify_string(ui,prompt,0,buff,0,BUFSIZ-1, | 82 | ok = UI_add_verify_string(ui,prompt,0,buff,0,size-1, |
| 80 | buf); | 83 | buf); |
| 81 | if (ok == 0) | 84 | if (ok == 0) |
| 82 | ok=UI_process(ui); | 85 | ok=UI_process(ui); |
diff --git a/src/lib/libcrypto/util/domd b/src/lib/libcrypto/util/domd index aa99cb0523..8cbe383c16 100644 --- a/src/lib/libcrypto/util/domd +++ b/src/lib/libcrypto/util/domd | |||
| @@ -18,11 +18,11 @@ if [ "$MAKEDEPEND" = "gcc" ]; then | |||
| 18 | sed -e '/^# DO NOT DELETE.*/,$d' < Makefile.ssl > Makefile.tmp | 18 | sed -e '/^# DO NOT DELETE.*/,$d' < Makefile.ssl > Makefile.tmp |
| 19 | echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp | 19 | echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp |
| 20 | gcc -D OPENSSL_DOING_MAKEDEPEND -M $@ >> Makefile.tmp | 20 | gcc -D OPENSSL_DOING_MAKEDEPEND -M $@ >> Makefile.tmp |
| 21 | perl $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new | 21 | ${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new |
| 22 | rm -f Makefile.tmp | 22 | rm -f Makefile.tmp |
| 23 | else | 23 | else |
| 24 | ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -f Makefile.ssl $@ | 24 | ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -f Makefile.ssl $@ |
| 25 | perl $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new | 25 | ${PERL} $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new |
| 26 | fi | 26 | fi |
| 27 | mv Makefile.new Makefile.ssl | 27 | mv Makefile.new Makefile.ssl |
| 28 | # unfake the presence of Kerberos | 28 | # unfake the presence of Kerberos |
diff --git a/src/lib/libcrypto/util/libeay.num b/src/lib/libcrypto/util/libeay.num index 4845158158..512185e257 100644 --- a/src/lib/libcrypto/util/libeay.num +++ b/src/lib/libcrypto/util/libeay.num | |||
| @@ -701,7 +701,7 @@ bn_mul_words 707 EXIST::FUNCTION: | |||
| 701 | BN_uadd 708 EXIST::FUNCTION: | 701 | BN_uadd 708 EXIST::FUNCTION: |
| 702 | BN_usub 709 EXIST::FUNCTION: | 702 | BN_usub 709 EXIST::FUNCTION: |
| 703 | bn_sqr_words 710 EXIST::FUNCTION: | 703 | bn_sqr_words 710 EXIST::FUNCTION: |
| 704 | _ossl_old_crypt 711 EXIST:!NeXT,!PERL5,!__FreeBSD__:FUNCTION:DES | 704 | _ossl_old_crypt 711 EXIST:!NeXT,!PERL5:FUNCTION:DES |
| 705 | d2i_ASN1_BIT_STRING 712 EXIST::FUNCTION: | 705 | d2i_ASN1_BIT_STRING 712 EXIST::FUNCTION: |
| 706 | d2i_ASN1_BOOLEAN 713 EXIST::FUNCTION: | 706 | d2i_ASN1_BOOLEAN 713 EXIST::FUNCTION: |
| 707 | d2i_ASN1_HEADER 714 EXIST::FUNCTION: | 707 | d2i_ASN1_HEADER 714 EXIST::FUNCTION: |
| @@ -984,8 +984,8 @@ BIO_ghbn_ctrl 1003 EXIST::FUNCTION: | |||
| 984 | CRYPTO_free_ex_data 1004 EXIST::FUNCTION: | 984 | CRYPTO_free_ex_data 1004 EXIST::FUNCTION: |
| 985 | CRYPTO_get_ex_data 1005 EXIST::FUNCTION: | 985 | CRYPTO_get_ex_data 1005 EXIST::FUNCTION: |
| 986 | CRYPTO_set_ex_data 1007 EXIST::FUNCTION: | 986 | CRYPTO_set_ex_data 1007 EXIST::FUNCTION: |
| 987 | ERR_load_CRYPTO_strings 1009 EXIST:!VMS,!WIN16:FUNCTION: | 987 | ERR_load_CRYPTO_strings 1009 EXIST:!OS2,!VMS,!WIN16:FUNCTION: |
| 988 | ERR_load_CRYPTOlib_strings 1009 EXIST:VMS,WIN16:FUNCTION: | 988 | ERR_load_CRYPTOlib_strings 1009 EXIST:OS2,VMS,WIN16:FUNCTION: |
| 989 | EVP_PKEY_bits 1010 EXIST::FUNCTION: | 989 | EVP_PKEY_bits 1010 EXIST::FUNCTION: |
| 990 | MD5_Transform 1011 EXIST::FUNCTION:MD5 | 990 | MD5_Transform 1011 EXIST::FUNCTION:MD5 |
| 991 | SHA1_Transform 1012 EXIST::FUNCTION:SHA,SHA1 | 991 | SHA1_Transform 1012 EXIST::FUNCTION:SHA,SHA1 |
| @@ -1216,7 +1216,7 @@ name_cmp 1239 EXIST::FUNCTION: | |||
| 1216 | str_dup 1240 NOEXIST::FUNCTION: | 1216 | str_dup 1240 NOEXIST::FUNCTION: |
| 1217 | i2s_ASN1_ENUMERATED 1241 EXIST::FUNCTION: | 1217 | i2s_ASN1_ENUMERATED 1241 EXIST::FUNCTION: |
| 1218 | i2s_ASN1_ENUMERATED_TABLE 1242 EXIST::FUNCTION: | 1218 | i2s_ASN1_ENUMERATED_TABLE 1242 EXIST::FUNCTION: |
| 1219 | BIO_s_log 1243 EXIST:!WIN16,!WIN32,!macintosh:FUNCTION: | 1219 | BIO_s_log 1243 EXIST:!OS2,!WIN16,!WIN32,!macintosh:FUNCTION: |
| 1220 | BIO_f_reliable 1244 EXIST::FUNCTION:BIO | 1220 | BIO_f_reliable 1244 EXIST::FUNCTION:BIO |
| 1221 | PKCS7_dataFinal 1245 EXIST::FUNCTION: | 1221 | PKCS7_dataFinal 1245 EXIST::FUNCTION: |
| 1222 | PKCS7_dataDecode 1246 EXIST::FUNCTION: | 1222 | PKCS7_dataDecode 1246 EXIST::FUNCTION: |
| @@ -2732,8 +2732,8 @@ EC_POINT_point2oct 3178 EXIST::FUNCTION:EC | |||
| 2732 | KRB5_APREQ_free 3179 EXIST::FUNCTION: | 2732 | KRB5_APREQ_free 3179 EXIST::FUNCTION: |
| 2733 | ASN1_OBJECT_it 3180 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: | 2733 | ASN1_OBJECT_it 3180 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: |
| 2734 | ASN1_OBJECT_it 3180 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: | 2734 | ASN1_OBJECT_it 3180 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: |
| 2735 | OCSP_crlID_new 3181 EXIST:!VMS,!WIN16:FUNCTION: | 2735 | OCSP_crlID_new 3181 EXIST:!OS2,!VMS,!WIN16:FUNCTION: |
| 2736 | OCSP_crlID2_new 3181 EXIST:VMS,WIN16:FUNCTION: | 2736 | OCSP_crlID2_new 3181 EXIST:OS2,VMS,WIN16:FUNCTION: |
| 2737 | CONF_modules_load_file 3182 EXIST::FUNCTION: | 2737 | CONF_modules_load_file 3182 EXIST::FUNCTION: |
| 2738 | CONF_imodule_set_usr_data 3183 EXIST::FUNCTION: | 2738 | CONF_imodule_set_usr_data 3183 EXIST::FUNCTION: |
| 2739 | ENGINE_set_default_string 3184 EXIST::FUNCTION: | 2739 | ENGINE_set_default_string 3184 EXIST::FUNCTION: |
| @@ -2780,3 +2780,15 @@ EVP_aes_128_cfb 3222 EXIST::FUNCTION:AES | |||
| 2780 | EVP_aes_256_cfb 3223 EXIST::FUNCTION:AES | 2780 | EVP_aes_256_cfb 3223 EXIST::FUNCTION:AES |
| 2781 | EVP_aes_128_ofb 3224 EXIST::FUNCTION:AES | 2781 | EVP_aes_128_ofb 3224 EXIST::FUNCTION:AES |
| 2782 | EVP_aes_192_cfb 3225 EXIST::FUNCTION:AES | 2782 | EVP_aes_192_cfb 3225 EXIST::FUNCTION:AES |
| 2783 | CONF_modules_free 3226 EXIST::FUNCTION: | ||
| 2784 | NCONF_default 3227 EXIST::FUNCTION: | ||
| 2785 | OPENSSL_no_config 3228 EXIST::FUNCTION: | ||
| 2786 | NCONF_WIN32 3229 EXIST::FUNCTION: | ||
| 2787 | ASN1_UNIVERSALSTRING_new 3230 EXIST::FUNCTION: | ||
| 2788 | EVP_des_ede_ecb 3231 EXIST::FUNCTION:DES | ||
| 2789 | i2d_ASN1_UNIVERSALSTRING 3232 EXIST::FUNCTION: | ||
| 2790 | ASN1_UNIVERSALSTRING_free 3233 EXIST::FUNCTION: | ||
| 2791 | ASN1_UNIVERSALSTRING_it 3234 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: | ||
| 2792 | ASN1_UNIVERSALSTRING_it 3234 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: | ||
| 2793 | d2i_ASN1_UNIVERSALSTRING 3235 EXIST::FUNCTION: | ||
| 2794 | EVP_des_ede3_ecb 3236 EXIST::FUNCTION:DES | ||
diff --git a/src/lib/libcrypto/util/mk1mf.pl b/src/lib/libcrypto/util/mk1mf.pl index 8b6b2e668a..c9271bbffe 100644 --- a/src/lib/libcrypto/util/mk1mf.pl +++ b/src/lib/libcrypto/util/mk1mf.pl | |||
| @@ -100,7 +100,7 @@ $out_def="out"; | |||
| 100 | $inc_def="outinc"; | 100 | $inc_def="outinc"; |
| 101 | $tmp_def="tmp"; | 101 | $tmp_def="tmp"; |
| 102 | 102 | ||
| 103 | $mkdir="mkdir"; | 103 | $mkdir="-mkdir"; |
| 104 | 104 | ||
| 105 | ($ssl,$crypto)=("ssl","crypto"); | 105 | ($ssl,$crypto)=("ssl","crypto"); |
| 106 | $ranlib="echo ranlib"; | 106 | $ranlib="echo ranlib"; |
diff --git a/src/lib/libcrypto/util/mkdef.pl b/src/lib/libcrypto/util/mkdef.pl index ecba93cd94..adfd447dd3 100644 --- a/src/lib/libcrypto/util/mkdef.pl +++ b/src/lib/libcrypto/util/mkdef.pl | |||
| @@ -58,6 +58,7 @@ my $debug=0; | |||
| 58 | 58 | ||
| 59 | my $crypto_num= "util/libeay.num"; | 59 | my $crypto_num= "util/libeay.num"; |
| 60 | my $ssl_num= "util/ssleay.num"; | 60 | my $ssl_num= "util/ssleay.num"; |
| 61 | my $libname; | ||
| 61 | 62 | ||
| 62 | my $do_update = 0; | 63 | my $do_update = 0; |
| 63 | my $do_rewrite = 1; | 64 | my $do_rewrite = 1; |
| @@ -73,12 +74,13 @@ my $VMS=0; | |||
| 73 | my $W32=0; | 74 | my $W32=0; |
| 74 | my $W16=0; | 75 | my $W16=0; |
| 75 | my $NT=0; | 76 | my $NT=0; |
| 77 | my $OS2=0; | ||
| 76 | # Set this to make typesafe STACK definitions appear in DEF | 78 | # Set this to make typesafe STACK definitions appear in DEF |
| 77 | my $safe_stack_def = 0; | 79 | my $safe_stack_def = 0; |
| 78 | 80 | ||
| 79 | my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT", | 81 | my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT", |
| 80 | "EXPORT_VAR_AS_FUNCTION" ); | 82 | "EXPORT_VAR_AS_FUNCTION" ); |
| 81 | my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT" ); | 83 | my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT", "OS2" ); |
| 82 | my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", | 84 | my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", |
| 83 | "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", | 85 | "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", |
| 84 | "RIPEMD", | 86 | "RIPEMD", |
| @@ -126,11 +128,18 @@ foreach (@ARGV, split(/ /, $options)) | |||
| 126 | $VMSAlpha=1; | 128 | $VMSAlpha=1; |
| 127 | } | 129 | } |
| 128 | $VMS=1 if $_ eq "VMS"; | 130 | $VMS=1 if $_ eq "VMS"; |
| 131 | $OS2=1 if $_ eq "OS2"; | ||
| 129 | 132 | ||
| 130 | $do_ssl=1 if $_ eq "ssleay"; | 133 | $do_ssl=1 if $_ eq "ssleay"; |
| 131 | $do_ssl=1 if $_ eq "ssl"; | 134 | if ($_ eq "ssl") { |
| 135 | $do_ssl=1; | ||
| 136 | $libname=$_ | ||
| 137 | } | ||
| 132 | $do_crypto=1 if $_ eq "libeay"; | 138 | $do_crypto=1 if $_ eq "libeay"; |
| 133 | $do_crypto=1 if $_ eq "crypto"; | 139 | if ($_ eq "crypto") { |
| 140 | $do_crypto=1; | ||
| 141 | $libname=$_; | ||
| 142 | } | ||
| 134 | $do_update=1 if $_ eq "update"; | 143 | $do_update=1 if $_ eq "update"; |
| 135 | $do_rewrite=1 if $_ eq "rewrite"; | 144 | $do_rewrite=1 if $_ eq "rewrite"; |
| 136 | $do_ctest=1 if $_ eq "ctest"; | 145 | $do_ctest=1 if $_ eq "ctest"; |
| @@ -170,8 +179,17 @@ foreach (@ARGV, split(/ /, $options)) | |||
| 170 | } | 179 | } |
| 171 | 180 | ||
| 172 | 181 | ||
| 182 | if (!$libname) { | ||
| 183 | if ($do_ssl) { | ||
| 184 | $libname="SSLEAY"; | ||
| 185 | } | ||
| 186 | if ($do_crypto) { | ||
| 187 | $libname="LIBEAY"; | ||
| 188 | } | ||
| 189 | } | ||
| 190 | |||
| 173 | # If no platform is given, assume WIN32 | 191 | # If no platform is given, assume WIN32 |
| 174 | if ($W32 + $W16 + $VMS == 0) { | 192 | if ($W32 + $W16 + $VMS + $OS2 == 0) { |
| 175 | $W32 = 1; | 193 | $W32 = 1; |
| 176 | } | 194 | } |
| 177 | 195 | ||
| @@ -182,7 +200,7 @@ if ($W16) { | |||
| 182 | 200 | ||
| 183 | if (!$do_ssl && !$do_crypto) | 201 | if (!$do_ssl && !$do_crypto) |
| 184 | { | 202 | { |
| 185 | print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT ]\n"; | 203 | print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 ]\n"; |
| 186 | exit(1); | 204 | exit(1); |
| 187 | } | 205 | } |
| 188 | 206 | ||
| @@ -305,10 +323,10 @@ EOF | |||
| 305 | 323 | ||
| 306 | } else { | 324 | } else { |
| 307 | 325 | ||
| 308 | &print_def_file(*STDOUT,"SSLEAY",*ssl_list,@ssl_symbols) | 326 | &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols) |
| 309 | if $do_ssl == 1; | 327 | if $do_ssl == 1; |
| 310 | 328 | ||
| 311 | &print_def_file(*STDOUT,"LIBEAY",*crypto_list,@crypto_symbols) | 329 | &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols) |
| 312 | if $do_crypto == 1; | 330 | if $do_crypto == 1; |
| 313 | 331 | ||
| 314 | } | 332 | } |
| @@ -995,6 +1013,7 @@ sub is_valid | |||
| 995 | if ($keyword eq "WIN32" && $W32) { return 1; } | 1013 | if ($keyword eq "WIN32" && $W32) { return 1; } |
| 996 | if ($keyword eq "WIN16" && $W16) { return 1; } | 1014 | if ($keyword eq "WIN16" && $W16) { return 1; } |
| 997 | if ($keyword eq "WINNT" && $NT) { return 1; } | 1015 | if ($keyword eq "WINNT" && $NT) { return 1; } |
| 1016 | if ($keyword eq "OS2" && $OS2) { return 1; } | ||
| 998 | # Special platforms: | 1017 | # Special platforms: |
| 999 | # EXPORT_VAR_AS_FUNCTION means that global variables | 1018 | # EXPORT_VAR_AS_FUNCTION means that global variables |
| 1000 | # will be represented as functions. This currently | 1019 | # will be represented as functions. This currently |
| @@ -1092,24 +1111,27 @@ sub print_def_file | |||
| 1092 | { | 1111 | { |
| 1093 | (*OUT,my $name,*nums,my @symbols)=@_; | 1112 | (*OUT,my $name,*nums,my @symbols)=@_; |
| 1094 | my $n = 1; my @e; my @r; my @v; my $prev=""; | 1113 | my $n = 1; my @e; my @r; my @v; my $prev=""; |
| 1114 | my $liboptions=""; | ||
| 1095 | 1115 | ||
| 1096 | if ($W32) | 1116 | if ($W32) |
| 1097 | { $name.="32"; } | 1117 | { $name.="32"; } |
| 1098 | else | 1118 | elsif ($W16) |
| 1099 | { $name.="16"; } | 1119 | { $name.="16"; } |
| 1120 | elsif ($OS2) | ||
| 1121 | { $liboptions = "INITINSTANCE\nDATA NONSHARED"; } | ||
| 1100 | 1122 | ||
| 1101 | print OUT <<"EOF"; | 1123 | print OUT <<"EOF"; |
| 1102 | ; | 1124 | ; |
| 1103 | ; Definition file for the DLL version of the $name library from OpenSSL | 1125 | ; Definition file for the DLL version of the $name library from OpenSSL |
| 1104 | ; | 1126 | ; |
| 1105 | 1127 | ||
| 1106 | LIBRARY $name | 1128 | LIBRARY $name $liboptions |
| 1107 | 1129 | ||
| 1108 | DESCRIPTION 'OpenSSL $name - http://www.openssl.org/' | 1130 | DESCRIPTION 'OpenSSL $name - http://www.openssl.org/' |
| 1109 | 1131 | ||
| 1110 | EOF | 1132 | EOF |
| 1111 | 1133 | ||
| 1112 | if (!$W32) { | 1134 | if ($W16) { |
| 1113 | print <<"EOF"; | 1135 | print <<"EOF"; |
| 1114 | CODE PRELOAD MOVEABLE | 1136 | CODE PRELOAD MOVEABLE |
| 1115 | DATA PRELOAD MOVEABLE SINGLE | 1137 | DATA PRELOAD MOVEABLE SINGLE |
| @@ -1148,10 +1170,10 @@ EOF | |||
| 1148 | print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n"; | 1170 | print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n"; |
| 1149 | } | 1171 | } |
| 1150 | $prev = $s2; # To warn about duplicates... | 1172 | $prev = $s2; # To warn about duplicates... |
| 1151 | if($v) { | 1173 | if($v && !$OS2) { |
| 1152 | printf OUT " %s%-39s @%-8d DATA\n",($W32)?"":"_",$s2,$n; | 1174 | printf OUT " %s%-39s @%-8d DATA\n",($W32)?"":"_",$s2,$n; |
| 1153 | } else { | 1175 | } else { |
| 1154 | printf OUT " %s%-39s @%d\n",($W32)?"":"_",$s2,$n; | 1176 | printf OUT " %s%-39s @%d\n",($W32||$OS2)?"":"_",$s2,$n; |
| 1155 | } | 1177 | } |
| 1156 | } | 1178 | } |
| 1157 | } | 1179 | } |
diff --git a/src/lib/libcrypto/util/mklink.pl b/src/lib/libcrypto/util/mklink.pl index 9e9c9a5146..9386da7aa4 100644 --- a/src/lib/libcrypto/util/mklink.pl +++ b/src/lib/libcrypto/util/mklink.pl | |||
| @@ -18,10 +18,10 @@ | |||
| 18 | my $from = shift; | 18 | my $from = shift; |
| 19 | my @files = @ARGV; | 19 | my @files = @ARGV; |
| 20 | 20 | ||
| 21 | my @from_path = split(/\//, $from); | 21 | my @from_path = split(/[\\\/]/, $from); |
| 22 | my $pwd = `pwd`; | 22 | my $pwd = `pwd`; |
| 23 | chop($pwd); | 23 | chop($pwd); |
| 24 | my @pwd_path = split(/\//, $pwd); | 24 | my @pwd_path = split(/[\\\/]/, $pwd); |
| 25 | 25 | ||
| 26 | my @to_path = (); | 26 | my @to_path = (); |
| 27 | 27 | ||
| @@ -54,7 +54,16 @@ foreach $file (@files) { | |||
| 54 | if ($symlink_exists) { | 54 | if ($symlink_exists) { |
| 55 | symlink("$to/$file", "$from/$file") or $err = " [$!]"; | 55 | symlink("$to/$file", "$from/$file") or $err = " [$!]"; |
| 56 | } else { | 56 | } else { |
| 57 | system ("cp", "$file", "$from/$file") and $err = " [$!]"; | 57 | unlink "$from/$file"; |
| 58 | open (OLD, "<$file") or die "Can't open $file: $!"; | ||
| 59 | open (NEW, ">$from/$file") or die "Can't open $from/$file: $!"; | ||
| 60 | binmode(OLD); | ||
| 61 | binmode(NEW); | ||
| 62 | while (<OLD>) { | ||
| 63 | print NEW $_; | ||
| 64 | } | ||
| 65 | close (OLD) or die "Can't close $file: $!"; | ||
| 66 | close (NEW) or die "Can't close $from/$file: $!"; | ||
| 58 | } | 67 | } |
| 59 | print $file . " => $from/$file$err\n"; | 68 | print $file . " => $from/$file$err\n"; |
| 60 | } | 69 | } |
diff --git a/src/lib/libcrypto/util/pl/BC-32.pl b/src/lib/libcrypto/util/pl/BC-32.pl index 78d60616a6..bd7a9d9301 100644 --- a/src/lib/libcrypto/util/pl/BC-32.pl +++ b/src/lib/libcrypto/util/pl/BC-32.pl | |||
| @@ -18,7 +18,7 @@ $out_def="out32"; | |||
| 18 | $tmp_def="tmp32"; | 18 | $tmp_def="tmp32"; |
| 19 | $inc_def="inc32"; | 19 | $inc_def="inc32"; |
| 20 | #enable max error messages, disable most common warnings | 20 | #enable max error messages, disable most common warnings |
| 21 | $cflags="-DWIN32_LEAN_AND_MEAN -q -w-aus -w-par -w-inl -c -tWC -tWM -DOPENSSL_SYSNAME_WIN32 -DL_ENDIAN -DDSO_WIN32 "; | 21 | $cflags="-DWIN32_LEAN_AND_MEAN -q -w-aus -w-par -w-inl -c -tWC -tWM -DOPENSSL_SYSNAME_WIN32 -DL_ENDIAN -DDSO_WIN32 -D_stricmp=stricmp "; |
| 22 | if ($debug) | 22 | if ($debug) |
| 23 | { | 23 | { |
| 24 | $cflags.="-Od -y -v -vi- -D_DEBUG"; | 24 | $cflags.="-Od -y -v -vi- -D_DEBUG"; |
| @@ -51,9 +51,9 @@ $lfile=''; | |||
| 51 | $shlib_ex_obj=""; | 51 | $shlib_ex_obj=""; |
| 52 | $app_ex_obj="c0x32.obj"; | 52 | $app_ex_obj="c0x32.obj"; |
| 53 | 53 | ||
| 54 | $asm='n_o_T_a_s_m'; | 54 | $asm='nasmw'; |
| 55 | $asm.=" /Zi" if $debug; | 55 | $asm.=" /Zi" if $debug; |
| 56 | $afile='/Fo'; | 56 | $afile='-f obj -o'; |
| 57 | 57 | ||
| 58 | $bn_mulw_obj=''; | 58 | $bn_mulw_obj=''; |
| 59 | $bn_mulw_src=''; | 59 | $bn_mulw_src=''; |
| @@ -64,24 +64,24 @@ $bf_enc_src=''; | |||
| 64 | 64 | ||
| 65 | if (!$no_asm) | 65 | if (!$no_asm) |
| 66 | { | 66 | { |
| 67 | $bn_mulw_obj='crypto\bn\asm\bn-win32.obj'; | 67 | $bn_mulw_obj='crypto\bn\asm\bn_win32.obj'; |
| 68 | $bn_mulw_src='crypto\bn\asm\bn-win32.asm'; | 68 | $bn_mulw_src='crypto\bn\asm\bn_win32.asm'; |
| 69 | $des_enc_obj='crypto\des\asm\d-win32.obj crypto\des\asm\y-win32.obj'; | 69 | $des_enc_obj='crypto\des\asm\d_win32.obj crypto\des\asm\y_win32.obj'; |
| 70 | $des_enc_src='crypto\des\asm\d-win32.asm crypto\des\asm\y-win32.asm'; | 70 | $des_enc_src='crypto\des\asm\d_win32.asm crypto\des\asm\y_win32.asm'; |
| 71 | $bf_enc_obj='crypto\bf\asm\b-win32.obj'; | 71 | $bf_enc_obj='crypto\bf\asm\b_win32.obj'; |
| 72 | $bf_enc_src='crypto\bf\asm\b-win32.asm'; | 72 | $bf_enc_src='crypto\bf\asm\b_win32.asm'; |
| 73 | $cast_enc_obj='crypto\cast\asm\c-win32.obj'; | 73 | $cast_enc_obj='crypto\cast\asm\c_win32.obj'; |
| 74 | $cast_enc_src='crypto\cast\asm\c-win32.asm'; | 74 | $cast_enc_src='crypto\cast\asm\c_win32.asm'; |
| 75 | $rc4_enc_obj='crypto\rc4\asm\r4-win32.obj'; | 75 | $rc4_enc_obj='crypto\rc4\asm\r4_win32.obj'; |
| 76 | $rc4_enc_src='crypto\rc4\asm\r4-win32.asm'; | 76 | $rc4_enc_src='crypto\rc4\asm\r4_win32.asm'; |
| 77 | $rc5_enc_obj='crypto\rc5\asm\r5-win32.obj'; | 77 | $rc5_enc_obj='crypto\rc5\asm\r5_win32.obj'; |
| 78 | $rc5_enc_src='crypto\rc5\asm\r5-win32.asm'; | 78 | $rc5_enc_src='crypto\rc5\asm\r5_win32.asm'; |
| 79 | $md5_asm_obj='crypto\md5\asm\m5-win32.obj'; | 79 | $md5_asm_obj='crypto\md5\asm\m5_win32.obj'; |
| 80 | $md5_asm_src='crypto\md5\asm\m5-win32.asm'; | 80 | $md5_asm_src='crypto\md5\asm\m5_win32.asm'; |
| 81 | $sha1_asm_obj='crypto\sha\asm\s1-win32.obj'; | 81 | $sha1_asm_obj='crypto\sha\asm\s1_win32.obj'; |
| 82 | $sha1_asm_src='crypto\sha\asm\s1-win32.asm'; | 82 | $sha1_asm_src='crypto\sha\asm\s1_win32.asm'; |
| 83 | $rmd160_asm_obj='crypto\ripemd\asm\rm-win32.obj'; | 83 | $rmd160_asm_obj='crypto\ripemd\asm\rm_win32.obj'; |
| 84 | $rmd160_asm_src='crypto\ripemd\asm\rm-win32.asm'; | 84 | $rmd160_asm_src='crypto\ripemd\asm\rm_win32.asm'; |
| 85 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; | 85 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; |
| 86 | } | 86 | } |
| 87 | 87 | ||
diff --git a/src/lib/libcrypto/util/pl/OS2-EMX.pl b/src/lib/libcrypto/util/pl/OS2-EMX.pl index 57180556ca..d695dda623 100644 --- a/src/lib/libcrypto/util/pl/OS2-EMX.pl +++ b/src/lib/libcrypto/util/pl/OS2-EMX.pl | |||
| @@ -10,18 +10,20 @@ $rm='rm -f'; | |||
| 10 | # C compiler stuff | 10 | # C compiler stuff |
| 11 | 11 | ||
| 12 | $cc='gcc'; | 12 | $cc='gcc'; |
| 13 | $cflags="-DL_ENDIAN -O3 -fomit-frame-pointer -m486 -Zmt -Wall "; | 13 | $cflags="-DL_ENDIAN -O3 -fomit-frame-pointer -m486 -Zmtd -Wall "; |
| 14 | $cflags.="-Zomf " if $shlib; | ||
| 15 | $shl_cflag="-Zdll"; | ||
| 14 | 16 | ||
| 15 | if ($debug) { | 17 | if ($debug) { |
| 16 | $cflags.="-g "; | 18 | $cflags.="-g "; |
| 17 | } | 19 | } |
| 18 | 20 | ||
| 19 | $obj='.o'; | 21 | $obj=$shlib ? '.obj' : '.o'; |
| 20 | $ofile='-o '; | 22 | $ofile='-o '; |
| 21 | 23 | ||
| 22 | # EXE linking stuff | 24 | # EXE linking stuff |
| 23 | $link='${CC}'; | 25 | $link='${CC}'; |
| 24 | $lflags='${CFLAGS} -Zbsd-signals'; | 26 | $lflags='${CFLAGS} -Zbsd-signals -s'; |
| 25 | $efile='-o '; | 27 | $efile='-o '; |
| 26 | $exep='.exe'; | 28 | $exep='.exe'; |
| 27 | $ex_libs="-lsocket"; | 29 | $ex_libs="-lsocket"; |
| @@ -30,12 +32,12 @@ $ex_libs="-lsocket"; | |||
| 30 | $mklib='ar r'; | 32 | $mklib='ar r'; |
| 31 | $mlflags=''; | 33 | $mlflags=''; |
| 32 | $ranlib="ar s"; | 34 | $ranlib="ar s"; |
| 33 | $plib='lib'; | 35 | $plib=''; |
| 34 | $libp=".a"; | 36 | $libp=$shlib ? ".lib" : ".a"; |
| 35 | $shlibp=".a"; | 37 | $shlibp=$shlib ? ".dll" : ".a"; |
| 36 | $lfile=''; | 38 | $lfile=''; |
| 37 | 39 | ||
| 38 | $asm='as'; | 40 | $asm=$shlib ? 'as -Zomf' : 'as'; |
| 39 | $afile='-o '; | 41 | $afile='-o '; |
| 40 | $bn_asm_obj=""; | 42 | $bn_asm_obj=""; |
| 41 | $bn_asm_src=""; | 43 | $bn_asm_src=""; |
| @@ -46,24 +48,32 @@ $bf_enc_src=""; | |||
| 46 | 48 | ||
| 47 | if (!$no_asm) | 49 | if (!$no_asm) |
| 48 | { | 50 | { |
| 49 | $bn_asm_obj='crypto\bn\asm\bn-os2.o crypto\bn\asm\co-os2.o'; | 51 | $bn_asm_obj="crypto\\bn\\asm\\bn-os2$obj crypto\\bn\\asm\\co-os2$obj"; |
| 50 | $bn_asm_src='crypto\bn\asm\bn-os2.asm crypto\bn\asm\co-os2.asm'; | 52 | $bn_asm_src="crypto\\bn\\asm\\bn-os2.asm crypto\\bn\\asm\\co-os2.asm"; |
| 51 | $des_enc_obj='crypto\des\asm\d-os2.o crypto\des\asm\y-os2.o'; | 53 | $des_enc_obj="crypto\\des\\asm\\d-os2$obj crypto\\des\\asm\\y-os2$obj"; |
| 52 | $des_enc_src='crypto\des\asm\d-os2.asm crypto\des\asm\y-os2.asm'; | 54 | $des_enc_src="crypto\\des\\asm\\d-os2.asm crypto\\des\\asm\\y-os2.asm"; |
| 53 | $bf_enc_obj='crypto\bf\asm\b-os2.o'; | 55 | $bf_enc_obj="crypto\\bf\\asm\\b-os2$obj"; |
| 54 | $bf_enc_src='crypto\bf\asm\b-os2.asm'; | 56 | $bf_enc_src="crypto\\bf\\asm\\b-os2.asm"; |
| 55 | $cast_enc_obj='crypto\cast\asm\c-os2.o'; | 57 | $cast_enc_obj="crypto\\cast\\asm\\c-os2$obj"; |
| 56 | $cast_enc_src='crypto\cast\asm\c-os2.asm'; | 58 | $cast_enc_src="crypto\\cast\\asm\\c-os2.asm"; |
| 57 | $rc4_enc_obj='crypto\rc4\asm\r4-os2.o'; | 59 | $rc4_enc_obj="crypto\\rc4\\asm\\r4-os2$obj"; |
| 58 | $rc4_enc_src='crypto\rc4\asm\r4-os2.asm'; | 60 | $rc4_enc_src="crypto\\rc4\\asm\\r4-os2.asm"; |
| 59 | $rc5_enc_obj='crypto\rc5\asm\r5-os2.o'; | 61 | $rc5_enc_obj="crypto\\rc5\\asm\\r5-os2$obj"; |
| 60 | $rc5_enc_src='crypto\rc5\asm\r5-os2.asm'; | 62 | $rc5_enc_src="crypto\\rc5\\asm\\r5-os2.asm"; |
| 61 | $md5_asm_obj='crypto\md5\asm\m5-os2.o'; | 63 | $md5_asm_obj="crypto\\md5\\asm\\m5-os2$obj"; |
| 62 | $md5_asm_src='crypto\md5\asm\m5-os2.asm'; | 64 | $md5_asm_src="crypto\\md5\\asm\\m5-os2.asm"; |
| 63 | $sha1_asm_obj='crypto\sha\asm\s1-os2.o'; | 65 | $sha1_asm_obj="crypto\\sha\\asm\\s1-os2$obj"; |
| 64 | $sha1_asm_src='crypto\sha\asm\s1-os2.asm'; | 66 | $sha1_asm_src="crypto\\sha\\asm\\s1-os2.asm"; |
| 65 | $rmd160_asm_obj='crypto\ripemd\asm\rm-os2.o'; | 67 | $rmd160_asm_obj="crypto\\ripemd\\asm\\rm-os2$obj"; |
| 66 | $rmd160_asm_src='crypto\ripemd\asm\rm-os2.asm'; | 68 | $rmd160_asm_src="crypto\\ripemd\\asm\\rm-os2.asm"; |
| 69 | } | ||
| 70 | |||
| 71 | if ($shlib) | ||
| 72 | { | ||
| 73 | $mlflags.=" $lflags -Zdll"; | ||
| 74 | $lib_cflag=" -D_DLL"; | ||
| 75 | $out_def="out_dll"; | ||
| 76 | $tmp_def="tmp_dll"; | ||
| 67 | } | 77 | } |
| 68 | 78 | ||
| 69 | sub do_lib_rule | 79 | sub do_lib_rule |
| @@ -76,9 +86,20 @@ sub do_lib_rule | |||
| 76 | ($Name=$name) =~ tr/a-z/A-Z/; | 86 | ($Name=$name) =~ tr/a-z/A-Z/; |
| 77 | 87 | ||
| 78 | $ret.="$target: \$(${Name}OBJ)\n"; | 88 | $ret.="$target: \$(${Name}OBJ)\n"; |
| 79 | $ret.="\t\$(RM) $target\n"; | 89 | if (!$shlib) |
| 80 | $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n"; | 90 | { |
| 81 | $ret.="\t\$(RANLIB) $target\n\n"; | 91 | $ret.="\t\$(RM) $target\n"; |
| 92 | $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n"; | ||
| 93 | $ret.="\t\$(RANLIB) $target\n\n"; | ||
| 94 | } | ||
| 95 | else | ||
| 96 | { | ||
| 97 | local($ex)=($target =~ /O_SSL/)?' $(L_CRYPTO)':''; | ||
| 98 | $ex.=' -lsocket'; | ||
| 99 | $ret.="\t\$(LINK) \$(SHLIB_CFLAGS) \$(MLFLAGS) $efile$target \$(SHLIB_EX_OBJ) \$(${Name}OBJ) $ex os2/${Name}.def\n"; | ||
| 100 | $ret.="\temximp -o $out_def/$name.a os2/${Name}.def\n"; | ||
| 101 | $ret.="\temximp -o $out_def/$name.lib os2/${Name}.def\n\n"; | ||
| 102 | } | ||
| 82 | } | 103 | } |
| 83 | 104 | ||
| 84 | sub do_link_rule | 105 | sub do_link_rule |
| @@ -89,7 +110,7 @@ sub do_link_rule | |||
| 89 | $file =~ s/\//$o/g if $o ne '/'; | 110 | $file =~ s/\//$o/g if $o ne '/'; |
| 90 | $n=&bname($target); | 111 | $n=&bname($target); |
| 91 | $ret.="$target: $files $dep_libs\n"; | 112 | $ret.="$target: $files $dep_libs\n"; |
| 92 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n"; | 113 | $ret.="\t\$(LINK) ${efile}$target \$(CFLAG) \$(LFLAGS) $files $libs\n\n"; |
| 93 | return($ret); | 114 | return($ret); |
| 94 | } | 115 | } |
| 95 | 116 | ||
diff --git a/src/lib/libcrypto/util/pl/VC-32.pl b/src/lib/libcrypto/util/pl/VC-32.pl index 50bfb34385..d6e3a11530 100644 --- a/src/lib/libcrypto/util/pl/VC-32.pl +++ b/src/lib/libcrypto/util/pl/VC-32.pl | |||
| @@ -66,24 +66,24 @@ $bf_enc_src=''; | |||
| 66 | 66 | ||
| 67 | if (!$no_asm) | 67 | if (!$no_asm) |
| 68 | { | 68 | { |
| 69 | $bn_asm_obj='crypto\bn\asm\bn-win32.obj'; | 69 | $bn_asm_obj='crypto\bn\asm\bn_win32.obj'; |
| 70 | $bn_asm_src='crypto\bn\asm\bn-win32.asm'; | 70 | $bn_asm_src='crypto\bn\asm\bn_win32.asm'; |
| 71 | $des_enc_obj='crypto\des\asm\d-win32.obj crypto\des\asm\y-win32.obj'; | 71 | $des_enc_obj='crypto\des\asm\d_win32.obj crypto\des\asm\y_win32.obj'; |
| 72 | $des_enc_src='crypto\des\asm\d-win32.asm crypto\des\asm\y-win32.asm'; | 72 | $des_enc_src='crypto\des\asm\d_win32.asm crypto\des\asm\y_win32.asm'; |
| 73 | $bf_enc_obj='crypto\bf\asm\b-win32.obj'; | 73 | $bf_enc_obj='crypto\bf\asm\b_win32.obj'; |
| 74 | $bf_enc_src='crypto\bf\asm\b-win32.asm'; | 74 | $bf_enc_src='crypto\bf\asm\b_win32.asm'; |
| 75 | $cast_enc_obj='crypto\cast\asm\c-win32.obj'; | 75 | $cast_enc_obj='crypto\cast\asm\c_win32.obj'; |
| 76 | $cast_enc_src='crypto\cast\asm\c-win32.asm'; | 76 | $cast_enc_src='crypto\cast\asm\c_win32.asm'; |
| 77 | $rc4_enc_obj='crypto\rc4\asm\r4-win32.obj'; | 77 | $rc4_enc_obj='crypto\rc4\asm\r4_win32.obj'; |
| 78 | $rc4_enc_src='crypto\rc4\asm\r4-win32.asm'; | 78 | $rc4_enc_src='crypto\rc4\asm\r4_win32.asm'; |
| 79 | $rc5_enc_obj='crypto\rc5\asm\r5-win32.obj'; | 79 | $rc5_enc_obj='crypto\rc5\asm\r5_win32.obj'; |
| 80 | $rc5_enc_src='crypto\rc5\asm\r5-win32.asm'; | 80 | $rc5_enc_src='crypto\rc5\asm\r5_win32.asm'; |
| 81 | $md5_asm_obj='crypto\md5\asm\m5-win32.obj'; | 81 | $md5_asm_obj='crypto\md5\asm\m5_win32.obj'; |
| 82 | $md5_asm_src='crypto\md5\asm\m5-win32.asm'; | 82 | $md5_asm_src='crypto\md5\asm\m5_win32.asm'; |
| 83 | $sha1_asm_obj='crypto\sha\asm\s1-win32.obj'; | 83 | $sha1_asm_obj='crypto\sha\asm\s1_win32.obj'; |
| 84 | $sha1_asm_src='crypto\sha\asm\s1-win32.asm'; | 84 | $sha1_asm_src='crypto\sha\asm\s1_win32.asm'; |
| 85 | $rmd160_asm_obj='crypto\ripemd\asm\rm-win32.obj'; | 85 | $rmd160_asm_obj='crypto\ripemd\asm\rm_win32.obj'; |
| 86 | $rmd160_asm_src='crypto\ripemd\asm\rm-win32.asm'; | 86 | $rmd160_asm_src='crypto\ripemd\asm\rm_win32.asm'; |
| 87 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; | 87 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; |
| 88 | } | 88 | } |
| 89 | 89 | ||
diff --git a/src/lib/libcrypto/util/point.sh b/src/lib/libcrypto/util/point.sh index 47543c88e2..ce7dcc56df 100644 --- a/src/lib/libcrypto/util/point.sh +++ b/src/lib/libcrypto/util/point.sh | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | rm -f $2 | 3 | rm -f $2 |
| 4 | ln -s $1 $2 | 4 | if test "$OSTYPE" = msdosdjgpp; then |
| 5 | cp $1 $2 | ||
| 6 | else | ||
| 7 | ln -s $1 $2 | ||
| 8 | fi | ||
| 5 | echo "$2 => $1" | 9 | echo "$2 => $1" |
| 6 | 10 | ||
diff --git a/src/lib/libcrypto/x509/Makefile.ssl b/src/lib/libcrypto/x509/Makefile.ssl index 2df6ddcd34..ee53294699 100644 --- a/src/lib/libcrypto/x509/Makefile.ssl +++ b/src/lib/libcrypto/x509/Makefile.ssl | |||
| @@ -78,7 +78,7 @@ lint: | |||
| 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 79 | 79 | ||
| 80 | depend: | 80 | depend: |
| 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 82 | 82 | ||
| 83 | dclean: | 83 | dclean: |
| 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -89,322 +89,506 @@ clean: | |||
| 89 | 89 | ||
| 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 91 | 91 | ||
| 92 | by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 92 | by_dir.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 93 | by_dir.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 93 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 94 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 94 | by_dir.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 95 | by_dir.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 95 | by_dir.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 96 | by_dir.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 96 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 97 | by_dir.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 97 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 98 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 99 | by_dir.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 100 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 101 | by_dir.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 102 | by_dir.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 98 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 103 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 99 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 104 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 100 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 105 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 106 | by_dir.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 107 | by_dir.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 101 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 108 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 102 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 109 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 110 | by_dir.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 103 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 111 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 104 | by_dir.o: ../cryptlib.h by_dir.c | 112 | by_dir.o: ../cryptlib.h by_dir.c |
| 105 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h | 113 | by_file.o: ../../e_os.h ../../include/openssl/aes.h |
| 106 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 114 | by_file.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 107 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 115 | by_file.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 108 | by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 116 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 109 | by_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 117 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 110 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 118 | by_file.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 119 | by_file.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 120 | by_file.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 121 | by_file.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 122 | by_file.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 123 | by_file.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 111 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 124 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 112 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 125 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 113 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 126 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 114 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 127 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 128 | by_file.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 129 | by_file.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 115 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 130 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 116 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 131 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 117 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 132 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 133 | by_file.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 118 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | 134 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c |
| 119 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h | 135 | x509_att.o: ../../e_os.h ../../include/openssl/aes.h |
| 120 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 136 | x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 121 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 137 | x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 122 | x509_att.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 138 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 123 | x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 139 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 124 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 140 | x509_att.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 125 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 141 | x509_att.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 142 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 143 | x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 144 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 145 | x509_att.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 146 | x509_att.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 126 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 147 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 127 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 128 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 149 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 150 | x509_att.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 151 | x509_att.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 129 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 152 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 130 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 153 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 154 | x509_att.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 131 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 155 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 132 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | 156 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c |
| 133 | x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h | 157 | x509_cmp.o: ../../e_os.h ../../include/openssl/aes.h |
| 134 | x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 158 | x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 135 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 159 | x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 136 | x509_cmp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 160 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 137 | x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 161 | x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 138 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 162 | x509_cmp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 139 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 163 | x509_cmp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 164 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | x509_cmp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 166 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 167 | x509_cmp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 168 | x509_cmp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 140 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 169 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 141 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 170 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 142 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 171 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 172 | x509_cmp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 173 | x509_cmp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 143 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 174 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 144 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 175 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 176 | x509_cmp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 145 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 177 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 146 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | 178 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c |
| 147 | x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h | 179 | x509_d2.o: ../../e_os.h ../../include/openssl/aes.h |
| 148 | x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 180 | x509_d2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 181 | x509_d2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 150 | x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 182 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 151 | x509_d2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 183 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 152 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 184 | x509_d2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 185 | x509_d2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 186 | x509_d2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 187 | x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 188 | x509_d2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 189 | x509_d2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 153 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 190 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 154 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 191 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 155 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 192 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 193 | x509_d2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 194 | x509_d2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 156 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 195 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 157 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 196 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 158 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 197 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 198 | x509_d2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 159 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | 199 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c |
| 160 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h | 200 | x509_def.o: ../../e_os.h ../../include/openssl/aes.h |
| 161 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 201 | x509_def.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 162 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 202 | x509_def.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 163 | x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 203 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 164 | x509_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 204 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 165 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 205 | x509_def.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 206 | x509_def.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 207 | x509_def.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 208 | x509_def.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 209 | x509_def.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 210 | x509_def.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 166 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 211 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 167 | x509_def.o: ../../include/openssl/opensslconf.h | 212 | x509_def.o: ../../include/openssl/opensslconf.h |
| 168 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 213 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 169 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 214 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 215 | x509_def.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 216 | x509_def.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 170 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 217 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 171 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 218 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 219 | x509_def.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 172 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 220 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 173 | x509_def.o: ../cryptlib.h x509_def.c | 221 | x509_def.o: ../cryptlib.h x509_def.c |
| 174 | x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 222 | x509_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 223 | x509_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 175 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 224 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 176 | x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 225 | x509_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 177 | x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 226 | x509_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 178 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 227 | x509_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 179 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 228 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 229 | x509_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 230 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 231 | x509_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 232 | x509_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 180 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 233 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 181 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 234 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 182 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 235 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 236 | x509_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 237 | x509_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 183 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 238 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 184 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 239 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 240 | x509_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 185 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 241 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 186 | x509_err.o: x509_err.c | 242 | x509_err.o: x509_err.c |
| 187 | x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h | 243 | x509_ext.o: ../../e_os.h ../../include/openssl/aes.h |
| 188 | x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 244 | x509_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 189 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 245 | x509_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 190 | x509_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 246 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 191 | x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 247 | x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 192 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 248 | x509_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 193 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 249 | x509_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 250 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 251 | x509_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 252 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 253 | x509_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 254 | x509_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 194 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 255 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 195 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 256 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 196 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 257 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 258 | x509_ext.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 259 | x509_ext.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 197 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 260 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 198 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 261 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 262 | x509_ext.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 199 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 263 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 200 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | 264 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c |
| 201 | x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h | 265 | x509_lu.o: ../../e_os.h ../../include/openssl/aes.h |
| 202 | x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 266 | x509_lu.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 203 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 267 | x509_lu.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 204 | x509_lu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 268 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 205 | x509_lu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 269 | x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 206 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 270 | x509_lu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 207 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 271 | x509_lu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 272 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 273 | x509_lu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 274 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 275 | x509_lu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 276 | x509_lu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 208 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 277 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 209 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 278 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 210 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 279 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 280 | x509_lu.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 281 | x509_lu.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 211 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 282 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 212 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 283 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 284 | x509_lu.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 213 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 285 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 214 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | 286 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c |
| 215 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h | 287 | x509_obj.o: ../../e_os.h ../../include/openssl/aes.h |
| 216 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 288 | x509_obj.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 217 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 289 | x509_obj.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 218 | x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 290 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 219 | x509_obj.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 291 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 220 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 292 | x509_obj.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 293 | x509_obj.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 294 | x509_obj.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 295 | x509_obj.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 296 | x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 297 | x509_obj.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 221 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 298 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 222 | x509_obj.o: ../../include/openssl/opensslconf.h | 299 | x509_obj.o: ../../include/openssl/opensslconf.h |
| 223 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 300 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 224 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 301 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 302 | x509_obj.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 303 | x509_obj.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 225 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 304 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 226 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 305 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 306 | x509_obj.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 227 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 307 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 228 | x509_obj.o: ../cryptlib.h x509_obj.c | 308 | x509_obj.o: ../cryptlib.h x509_obj.c |
| 229 | x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h | 309 | x509_r2x.o: ../../e_os.h ../../include/openssl/aes.h |
| 230 | x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 310 | x509_r2x.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 231 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 311 | x509_r2x.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 232 | x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 312 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 233 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 313 | x509_r2x.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 234 | x509_r2x.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 314 | x509_r2x.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 315 | x509_r2x.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 316 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 317 | x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 318 | x509_r2x.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 319 | x509_r2x.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 235 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 320 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 236 | x509_r2x.o: ../../include/openssl/opensslconf.h | 321 | x509_r2x.o: ../../include/openssl/opensslconf.h |
| 237 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 322 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 238 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 323 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 324 | x509_r2x.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 325 | x509_r2x.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 239 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 326 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 240 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 327 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 328 | x509_r2x.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 241 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 329 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 242 | x509_r2x.o: ../cryptlib.h x509_r2x.c | 330 | x509_r2x.o: ../cryptlib.h x509_r2x.c |
| 243 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h | 331 | x509_req.o: ../../e_os.h ../../include/openssl/aes.h |
| 244 | x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 332 | x509_req.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 245 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 333 | x509_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 246 | x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 334 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 247 | x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 335 | x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 248 | x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 336 | x509_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 337 | x509_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 338 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 339 | x509_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 340 | x509_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 341 | x509_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 249 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 342 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 250 | x509_req.o: ../../include/openssl/opensslconf.h | 343 | x509_req.o: ../../include/openssl/opensslconf.h |
| 251 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 344 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 252 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 345 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 253 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 346 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 347 | x509_req.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 348 | x509_req.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 254 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 349 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 255 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 350 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 351 | x509_req.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 256 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 352 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 257 | x509_req.o: ../cryptlib.h x509_req.c | 353 | x509_req.o: ../cryptlib.h x509_req.c |
| 258 | x509_set.o: ../../e_os.h ../../include/openssl/asn1.h | 354 | x509_set.o: ../../e_os.h ../../include/openssl/aes.h |
| 259 | x509_set.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 355 | x509_set.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 260 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 356 | x509_set.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 261 | x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 357 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 262 | x509_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 358 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 263 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 359 | x509_set.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 360 | x509_set.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 361 | x509_set.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 362 | x509_set.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 363 | x509_set.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 364 | x509_set.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 264 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 365 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 265 | x509_set.o: ../../include/openssl/opensslconf.h | 366 | x509_set.o: ../../include/openssl/opensslconf.h |
| 266 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 367 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 267 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 368 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 369 | x509_set.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 370 | x509_set.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 268 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 371 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 269 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 372 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 373 | x509_set.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 270 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 374 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 271 | x509_set.o: ../cryptlib.h x509_set.c | 375 | x509_set.o: ../cryptlib.h x509_set.c |
| 272 | x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h | 376 | x509_trs.o: ../../e_os.h ../../include/openssl/aes.h |
| 273 | x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 377 | x509_trs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 274 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 378 | x509_trs.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 275 | x509_trs.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 379 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 276 | x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 380 | x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 277 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 381 | x509_trs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 278 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 382 | x509_trs.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 383 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 384 | x509_trs.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 385 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 386 | x509_trs.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 387 | x509_trs.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 279 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 388 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 280 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 389 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 281 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 390 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 391 | x509_trs.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 392 | x509_trs.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 282 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 393 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 283 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 394 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 395 | x509_trs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 284 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 396 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 285 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | 397 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c |
| 286 | x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h | 398 | x509_txt.o: ../../e_os.h ../../include/openssl/aes.h |
| 287 | x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 399 | x509_txt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 288 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 400 | x509_txt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 289 | x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 401 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 290 | x509_txt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 402 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 291 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 403 | x509_txt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 404 | x509_txt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 405 | x509_txt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 406 | x509_txt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 407 | x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 408 | x509_txt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 292 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 409 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 293 | x509_txt.o: ../../include/openssl/opensslconf.h | 410 | x509_txt.o: ../../include/openssl/opensslconf.h |
| 294 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 411 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 295 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 412 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 413 | x509_txt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 414 | x509_txt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 296 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 415 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 297 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 416 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 417 | x509_txt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 298 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 418 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 299 | x509_txt.o: ../cryptlib.h x509_txt.c | 419 | x509_txt.o: ../cryptlib.h x509_txt.c |
| 300 | x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h | 420 | x509_v3.o: ../../e_os.h ../../include/openssl/aes.h |
| 301 | x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 421 | x509_v3.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 302 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 422 | x509_v3.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 303 | x509_v3.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 423 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 304 | x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 424 | x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 305 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 425 | x509_v3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 306 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 426 | x509_v3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 427 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 428 | x509_v3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 429 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 430 | x509_v3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 431 | x509_v3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 307 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 432 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 308 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 433 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 309 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 434 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 435 | x509_v3.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 436 | x509_v3.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 310 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 437 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 311 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 438 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 439 | x509_v3.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 312 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 440 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 313 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | 441 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c |
| 314 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h | 442 | x509_vfy.o: ../../e_os.h ../../include/openssl/aes.h |
| 315 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 443 | x509_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 316 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 444 | x509_vfy.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 317 | x509_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 445 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 318 | x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 446 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 319 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 447 | x509_vfy.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 320 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 448 | x509_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 449 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 450 | x509_vfy.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 451 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 452 | x509_vfy.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 453 | x509_vfy.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 321 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 454 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 322 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 455 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 323 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 456 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 457 | x509_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 458 | x509_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 324 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 459 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 325 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 460 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 461 | x509_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 326 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 462 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 327 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | 463 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c |
| 328 | x509cset.o: ../../e_os.h ../../include/openssl/asn1.h | 464 | x509cset.o: ../../e_os.h ../../include/openssl/aes.h |
| 329 | x509cset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 465 | x509cset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 330 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 466 | x509cset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 331 | x509cset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 467 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 332 | x509cset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 468 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 333 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 469 | x509cset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 470 | x509cset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 471 | x509cset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 472 | x509cset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 473 | x509cset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 474 | x509cset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 334 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 475 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 335 | x509cset.o: ../../include/openssl/opensslconf.h | 476 | x509cset.o: ../../include/openssl/opensslconf.h |
| 336 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 477 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 337 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 478 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 479 | x509cset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 480 | x509cset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 338 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 481 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 339 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 482 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 483 | x509cset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 340 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 484 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 341 | x509cset.o: ../cryptlib.h x509cset.c | 485 | x509cset.o: ../cryptlib.h x509cset.c |
| 342 | x509name.o: ../../e_os.h ../../include/openssl/asn1.h | 486 | x509name.o: ../../e_os.h ../../include/openssl/aes.h |
| 343 | x509name.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 487 | x509name.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 344 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 488 | x509name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 345 | x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 489 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 346 | x509name.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 490 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 347 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 491 | x509name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 492 | x509name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 493 | x509name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 494 | x509name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 495 | x509name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 496 | x509name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 348 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 497 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 349 | x509name.o: ../../include/openssl/opensslconf.h | 498 | x509name.o: ../../include/openssl/opensslconf.h |
| 350 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 499 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 351 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 500 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 501 | x509name.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 502 | x509name.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 352 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 503 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 353 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 504 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 505 | x509name.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 354 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 506 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 355 | x509name.o: ../cryptlib.h x509name.c | 507 | x509name.o: ../cryptlib.h x509name.c |
| 356 | x509rset.o: ../../e_os.h ../../include/openssl/asn1.h | 508 | x509rset.o: ../../e_os.h ../../include/openssl/aes.h |
| 357 | x509rset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 509 | x509rset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 358 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 510 | x509rset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 359 | x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 511 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 360 | x509rset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 512 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 361 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 513 | x509rset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 514 | x509rset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 515 | x509rset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 516 | x509rset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 517 | x509rset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 518 | x509rset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 362 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 519 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 363 | x509rset.o: ../../include/openssl/opensslconf.h | 520 | x509rset.o: ../../include/openssl/opensslconf.h |
| 364 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 521 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 365 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 522 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 523 | x509rset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 524 | x509rset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 366 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 525 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 367 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 526 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 527 | x509rset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 368 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 528 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 369 | x509rset.o: ../cryptlib.h x509rset.c | 529 | x509rset.o: ../cryptlib.h x509rset.c |
| 370 | x509spki.o: ../../e_os.h ../../include/openssl/asn1.h | 530 | x509spki.o: ../../e_os.h ../../include/openssl/aes.h |
| 371 | x509spki.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 531 | x509spki.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 372 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 532 | x509spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 373 | x509spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 533 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 374 | x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 534 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 375 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 535 | x509spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 536 | x509spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 537 | x509spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 538 | x509spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 539 | x509spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 540 | x509spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 376 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 541 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 377 | x509spki.o: ../../include/openssl/opensslconf.h | 542 | x509spki.o: ../../include/openssl/opensslconf.h |
| 378 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 543 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 379 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 544 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 545 | x509spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 546 | x509spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 380 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 547 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 381 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 548 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 549 | x509spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 382 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 550 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 383 | x509spki.o: ../cryptlib.h x509spki.c | 551 | x509spki.o: ../cryptlib.h x509spki.c |
| 384 | x509type.o: ../../e_os.h ../../include/openssl/asn1.h | 552 | x509type.o: ../../e_os.h ../../include/openssl/aes.h |
| 385 | x509type.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 553 | x509type.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 386 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 554 | x509type.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 387 | x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 555 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 388 | x509type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 556 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 389 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 557 | x509type.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 558 | x509type.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 559 | x509type.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 560 | x509type.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 561 | x509type.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 562 | x509type.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 390 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 563 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 391 | x509type.o: ../../include/openssl/opensslconf.h | 564 | x509type.o: ../../include/openssl/opensslconf.h |
| 392 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 565 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 393 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 566 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 567 | x509type.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 568 | x509type.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 394 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 569 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 395 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 570 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 571 | x509type.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 396 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 572 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 397 | x509type.o: ../cryptlib.h x509type.c | 573 | x509type.o: ../cryptlib.h x509type.c |
| 398 | x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 574 | x_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 575 | x_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 399 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 576 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 400 | x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 577 | x_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 401 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 578 | x_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 402 | x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 579 | x_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 403 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 580 | x_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 581 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 582 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 583 | x_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 584 | x_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 404 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 585 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 405 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 586 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 406 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 587 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 588 | x_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 589 | x_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 407 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 590 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 408 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 591 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 592 | x_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 409 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 593 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 410 | x_all.o: ../cryptlib.h x_all.c | 594 | x_all.o: ../cryptlib.h x_all.c |
diff --git a/src/lib/libcrypto/x509v3/Makefile.ssl b/src/lib/libcrypto/x509v3/Makefile.ssl index 40fe46f983..3534e8b236 100644 --- a/src/lib/libcrypto/x509v3/Makefile.ssl +++ b/src/lib/libcrypto/x509v3/Makefile.ssl | |||
| @@ -74,7 +74,7 @@ lint: | |||
| 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 75 | 75 | ||
| 76 | depend: | 76 | depend: |
| 77 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 77 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 78 | 78 | ||
| 79 | dclean: | 79 | dclean: |
| 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -85,336 +85,519 @@ clean: | |||
| 85 | 85 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 87 | 87 | ||
| 88 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h | 88 | v3_akey.o: ../../e_os.h ../../include/openssl/aes.h |
| 89 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 89 | v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 90 | v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 90 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 91 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 91 | v3_akey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 92 | v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 92 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 93 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 93 | v3_akey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 94 | v3_akey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 94 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 95 | v3_akey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 96 | v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 97 | v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 98 | v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 99 | v3_akey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 95 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 100 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 101 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 97 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 102 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 103 | v3_akey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 104 | v3_akey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 98 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 105 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 99 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 106 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 100 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 107 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 108 | v3_akey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 101 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 109 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 102 | v3_akey.o: ../cryptlib.h v3_akey.c | 110 | v3_akey.o: ../cryptlib.h v3_akey.c |
| 103 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h | 111 | v3_akeya.o: ../../e_os.h ../../include/openssl/aes.h |
| 104 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 112 | v3_akeya.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 113 | v3_akeya.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 105 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 114 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 106 | v3_akeya.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 115 | v3_akeya.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 107 | v3_akeya.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 116 | v3_akeya.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 108 | v3_akeya.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 117 | v3_akeya.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 109 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 118 | v3_akeya.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 119 | v3_akeya.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 120 | v3_akeya.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 121 | v3_akeya.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 122 | v3_akeya.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 110 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 123 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 111 | v3_akeya.o: ../../include/openssl/opensslconf.h | 124 | v3_akeya.o: ../../include/openssl/opensslconf.h |
| 112 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 125 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 113 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 126 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 127 | v3_akeya.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 128 | v3_akeya.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 114 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 129 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 115 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 130 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 131 | v3_akeya.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 116 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 132 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 117 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c | 133 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c |
| 118 | v3_alt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 134 | v3_alt.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 135 | v3_alt.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 119 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 136 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 120 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 137 | v3_alt.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 121 | v3_alt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 138 | v3_alt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 122 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 139 | v3_alt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 123 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 140 | v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 141 | v3_alt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 142 | v3_alt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 143 | v3_alt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 144 | v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 124 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 145 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 125 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 146 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 126 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 147 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 148 | v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 149 | v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 127 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 150 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 128 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 151 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 129 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 152 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 153 | v3_alt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 130 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 154 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 131 | v3_alt.o: ../cryptlib.h v3_alt.c | 155 | v3_alt.o: ../cryptlib.h v3_alt.c |
| 132 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h | 156 | v3_bcons.o: ../../e_os.h ../../include/openssl/aes.h |
| 133 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 157 | v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 158 | v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 134 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 159 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 135 | v3_bcons.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 160 | v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 136 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 161 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 137 | v3_bcons.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 162 | v3_bcons.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 138 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 163 | v3_bcons.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 164 | v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 165 | v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 166 | v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 167 | v3_bcons.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 139 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 168 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 140 | v3_bcons.o: ../../include/openssl/opensslconf.h | 169 | v3_bcons.o: ../../include/openssl/opensslconf.h |
| 141 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 170 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 142 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 171 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 172 | v3_bcons.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 173 | v3_bcons.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 143 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 174 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 144 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 175 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 176 | v3_bcons.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 145 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 177 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 146 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c | 178 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c |
| 147 | v3_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | 179 | v3_bitst.o: ../../e_os.h ../../include/openssl/aes.h |
| 148 | v3_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 180 | v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 181 | v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 150 | v3_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 182 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 151 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 183 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 152 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 184 | v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 153 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 185 | v3_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 186 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 187 | v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 188 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 189 | v3_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 190 | v3_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 154 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 191 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 155 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 192 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 156 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 193 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 194 | v3_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 195 | v3_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 157 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 196 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 158 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 197 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 198 | v3_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 159 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 199 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 160 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c | 200 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c |
| 161 | v3_conf.o: ../../e_os.h ../../include/openssl/asn1.h | 201 | v3_conf.o: ../../e_os.h ../../include/openssl/aes.h |
| 162 | v3_conf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 202 | v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 163 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 203 | v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 164 | v3_conf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 204 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 165 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 205 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 166 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 206 | v3_conf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 207 | v3_conf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 208 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 209 | v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 210 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 211 | v3_conf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 212 | v3_conf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 168 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 213 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 169 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 214 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 170 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 215 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 216 | v3_conf.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 217 | v3_conf.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 171 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 218 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 172 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 219 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 220 | v3_conf.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 173 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 221 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 174 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c | 222 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c |
| 175 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h | 223 | v3_cpols.o: ../../e_os.h ../../include/openssl/aes.h |
| 176 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 224 | v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 225 | v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 177 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 226 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 178 | v3_cpols.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 227 | v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 179 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 228 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 180 | v3_cpols.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 229 | v3_cpols.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 181 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 230 | v3_cpols.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 231 | v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 232 | v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 233 | v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 234 | v3_cpols.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 182 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 235 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 183 | v3_cpols.o: ../../include/openssl/opensslconf.h | 236 | v3_cpols.o: ../../include/openssl/opensslconf.h |
| 184 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 237 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 185 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 238 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 239 | v3_cpols.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 240 | v3_cpols.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 186 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 241 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 187 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 242 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 243 | v3_cpols.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 188 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 244 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 189 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c | 245 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c |
| 190 | v3_crld.o: ../../e_os.h ../../include/openssl/asn1.h | 246 | v3_crld.o: ../../e_os.h ../../include/openssl/aes.h |
| 191 | v3_crld.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 247 | v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 248 | v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 192 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 249 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 193 | v3_crld.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 250 | v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 194 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 251 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 195 | v3_crld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 252 | v3_crld.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 196 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 253 | v3_crld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 254 | v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 255 | v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 256 | v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 257 | v3_crld.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 197 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 258 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 198 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 259 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 199 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 260 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 261 | v3_crld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 262 | v3_crld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 200 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 263 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 201 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 264 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 202 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 265 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 266 | v3_crld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 203 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 267 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 204 | v3_crld.o: ../cryptlib.h v3_crld.c | 268 | v3_crld.o: ../cryptlib.h v3_crld.c |
| 205 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h | 269 | v3_enum.o: ../../e_os.h ../../include/openssl/aes.h |
| 206 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 270 | v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 207 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 271 | v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 208 | v3_enum.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 272 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 209 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 273 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 210 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 274 | v3_enum.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 211 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 275 | v3_enum.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 276 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 277 | v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 278 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 279 | v3_enum.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 280 | v3_enum.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 212 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 281 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 213 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 282 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 214 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 283 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 284 | v3_enum.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 285 | v3_enum.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 215 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 286 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 216 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 287 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 288 | v3_enum.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 217 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 289 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 218 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c | 290 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c |
| 219 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h | 291 | v3_extku.o: ../../e_os.h ../../include/openssl/aes.h |
| 220 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 292 | v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 293 | v3_extku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 221 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 294 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 222 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 295 | v3_extku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 223 | v3_extku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 296 | v3_extku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 224 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 297 | v3_extku.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 225 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 298 | v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 299 | v3_extku.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 300 | v3_extku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 301 | v3_extku.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 302 | v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 226 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 303 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 227 | v3_extku.o: ../../include/openssl/opensslconf.h | 304 | v3_extku.o: ../../include/openssl/opensslconf.h |
| 228 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 305 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 229 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 306 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 307 | v3_extku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 308 | v3_extku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 230 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 309 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 231 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 310 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 311 | v3_extku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 232 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 312 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 233 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c | 313 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c |
| 234 | v3_genn.o: ../../e_os.h ../../include/openssl/asn1.h | 314 | v3_genn.o: ../../e_os.h ../../include/openssl/aes.h |
| 235 | v3_genn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 315 | v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 316 | v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 236 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 317 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 237 | v3_genn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 318 | v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 238 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 319 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 239 | v3_genn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 320 | v3_genn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 240 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 321 | v3_genn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 322 | v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 323 | v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 324 | v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 325 | v3_genn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 241 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 326 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 242 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 327 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 243 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 328 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 329 | v3_genn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 330 | v3_genn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 244 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 331 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 245 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 332 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 246 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 333 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 334 | v3_genn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 247 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 335 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 248 | v3_genn.o: ../cryptlib.h v3_genn.c | 336 | v3_genn.o: ../cryptlib.h v3_genn.c |
| 249 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 337 | v3_ia5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 338 | v3_ia5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 250 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 339 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 251 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 340 | v3_ia5.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 252 | v3_ia5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 341 | v3_ia5.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 253 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 342 | v3_ia5.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 254 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 343 | v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 344 | v3_ia5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 345 | v3_ia5.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 346 | v3_ia5.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 347 | v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 255 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 348 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 256 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 349 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 257 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 350 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 351 | v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 352 | v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 258 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 353 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 259 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 354 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 260 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 355 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 356 | v3_ia5.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 261 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 357 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 262 | v3_ia5.o: ../cryptlib.h v3_ia5.c | 358 | v3_ia5.o: ../cryptlib.h v3_ia5.c |
| 263 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h | 359 | v3_info.o: ../../e_os.h ../../include/openssl/aes.h |
| 264 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 360 | v3_info.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 361 | v3_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 265 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 362 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 266 | v3_info.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 363 | v3_info.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 267 | v3_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 364 | v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 268 | v3_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 365 | v3_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 269 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 366 | v3_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 367 | v3_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 368 | v3_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 369 | v3_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 370 | v3_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 270 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 371 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 271 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 372 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 272 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 373 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 374 | v3_info.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 375 | v3_info.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 273 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 376 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 274 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 377 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 275 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 378 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 379 | v3_info.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 276 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 380 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 277 | v3_info.o: ../cryptlib.h v3_info.c | 381 | v3_info.o: ../cryptlib.h v3_info.c |
| 278 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 382 | v3_int.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 383 | v3_int.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 279 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 384 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 280 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 385 | v3_int.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 281 | v3_int.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 386 | v3_int.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 282 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 387 | v3_int.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 283 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 388 | v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 389 | v3_int.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 390 | v3_int.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 391 | v3_int.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 392 | v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 284 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 393 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 285 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 394 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 286 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 395 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 396 | v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 397 | v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 287 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 398 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 288 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 399 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 289 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 400 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 401 | v3_int.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 290 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 402 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 291 | v3_int.o: ../cryptlib.h v3_int.c | 403 | v3_int.o: ../cryptlib.h v3_int.c |
| 292 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 404 | v3_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 405 | v3_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 293 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 406 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 294 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 407 | v3_lib.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 295 | v3_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 408 | v3_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 296 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 409 | v3_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 297 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 410 | v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 411 | v3_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 412 | v3_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 413 | v3_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 414 | v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 298 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 415 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 299 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 416 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 300 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 417 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 418 | v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 419 | v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 301 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 420 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 302 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 421 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 303 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 422 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 423 | v3_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 304 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 424 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 305 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c | 425 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c |
| 306 | v3_ocsp.o: ../../e_os.h ../../include/openssl/asn1.h | 426 | v3_ocsp.o: ../../e_os.h ../../include/openssl/aes.h |
| 307 | v3_ocsp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 427 | v3_ocsp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 308 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 428 | v3_ocsp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 309 | v3_ocsp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 429 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 310 | v3_ocsp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 430 | v3_ocsp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 311 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 431 | v3_ocsp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 312 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 432 | v3_ocsp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 433 | v3_ocsp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 434 | v3_ocsp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 435 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 436 | v3_ocsp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 437 | v3_ocsp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 313 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 438 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 314 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 439 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 315 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 440 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 441 | v3_ocsp.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 442 | v3_ocsp.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 316 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 443 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 317 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 444 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 318 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 445 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 446 | v3_ocsp.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 319 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 447 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 320 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | 448 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c |
| 321 | v3_pku.o: ../../e_os.h ../../include/openssl/asn1.h | 449 | v3_pku.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 322 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 450 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 323 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 451 | v3_pku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 452 | v3_pku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 324 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 453 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 454 | v3_pku.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 325 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 455 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 326 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 456 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 327 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 457 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 328 | v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 458 | v3_pku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 329 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 459 | v3_pku.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 330 | v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 460 | v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 331 | v3_pku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 461 | v3_pku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 332 | v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 462 | v3_pku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 333 | v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 463 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 334 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 464 | v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 335 | v3_pku.o: ../cryptlib.h v3_pku.c | 465 | v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 336 | v3_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 466 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 467 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 468 | v3_pku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 469 | v3_pku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 470 | v3_pku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pku.c | ||
| 471 | v3_prn.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 472 | v3_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 337 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 473 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 338 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 474 | v3_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 339 | v3_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 475 | v3_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 340 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 476 | v3_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 341 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 477 | v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 478 | v3_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 479 | v3_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 480 | v3_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 481 | v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 342 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 482 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 343 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 483 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 344 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 484 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 485 | v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 486 | v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 345 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 487 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 346 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 488 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 347 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 489 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 490 | v3_prn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 348 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 491 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 349 | v3_prn.o: ../cryptlib.h v3_prn.c | 492 | v3_prn.o: ../cryptlib.h v3_prn.c |
| 350 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h | 493 | v3_purp.o: ../../e_os.h ../../include/openssl/aes.h |
| 351 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 494 | v3_purp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 352 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 495 | v3_purp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 353 | v3_purp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 496 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 354 | v3_purp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 497 | v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 355 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 498 | v3_purp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 356 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 499 | v3_purp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 500 | v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 501 | v3_purp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 502 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 503 | v3_purp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 504 | v3_purp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 357 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 505 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 358 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 506 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 359 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 507 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 508 | v3_purp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 509 | v3_purp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 360 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 510 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 361 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 511 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 512 | v3_purp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 362 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 513 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 363 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | 514 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c |
| 364 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h | 515 | v3_skey.o: ../../e_os.h ../../include/openssl/aes.h |
| 365 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 516 | v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 366 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 517 | v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 367 | v3_skey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 518 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 368 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 519 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 369 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 520 | v3_skey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 370 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 521 | v3_skey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 522 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 523 | v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 524 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 525 | v3_skey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 526 | v3_skey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 527 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 528 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 373 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 529 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 530 | v3_skey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 531 | v3_skey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 374 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 532 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 375 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 533 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 534 | v3_skey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 376 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 535 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 377 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c | 536 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c |
| 378 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h | 537 | v3_sxnet.o: ../../e_os.h ../../include/openssl/aes.h |
| 379 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 538 | v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 539 | v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 380 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 540 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 381 | v3_sxnet.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 541 | v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 382 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 542 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 383 | v3_sxnet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 543 | v3_sxnet.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 384 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 544 | v3_sxnet.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 545 | v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 546 | v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 547 | v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 548 | v3_sxnet.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 385 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 549 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 386 | v3_sxnet.o: ../../include/openssl/opensslconf.h | 550 | v3_sxnet.o: ../../include/openssl/opensslconf.h |
| 387 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 551 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 388 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 552 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 553 | v3_sxnet.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 554 | v3_sxnet.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 389 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 555 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 390 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 556 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 557 | v3_sxnet.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 391 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 558 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 392 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c | 559 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c |
| 393 | v3_utl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 560 | v3_utl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 561 | v3_utl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 394 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 562 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 395 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 563 | v3_utl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 396 | v3_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 564 | v3_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 397 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 565 | v3_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 398 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 566 | v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 567 | v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 568 | v3_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 569 | v3_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 570 | v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 399 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 571 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 400 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 572 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 401 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 573 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 574 | v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 575 | v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 402 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 576 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 403 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 577 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 404 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 578 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 579 | v3_utl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 405 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 580 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 406 | v3_utl.o: ../cryptlib.h v3_utl.c | 581 | v3_utl.o: ../cryptlib.h v3_utl.c |
| 407 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 582 | v3err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 583 | v3err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 408 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 584 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 409 | v3err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 585 | v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 410 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 586 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 411 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 587 | v3err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 412 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 588 | v3err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 589 | v3err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 590 | v3err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 591 | v3err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 592 | v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 413 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 593 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 414 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 594 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 415 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 595 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 596 | v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 597 | v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 416 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 598 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 417 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 599 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 418 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 600 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 601 | v3err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 419 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 602 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 420 | v3err.o: v3err.c | 603 | v3err.o: v3err.c |
diff --git a/src/lib/libcrypto/x509v3/ext_dat.h b/src/lib/libcrypto/x509v3/ext_dat.h index 586f116db5..2fb97d8925 100644 --- a/src/lib/libcrypto/x509v3/ext_dat.h +++ b/src/lib/libcrypto/x509v3/ext_dat.h | |||
| @@ -99,8 +99,8 @@ static X509V3_EXT_METHOD *standard_exts[] = { | |||
| 99 | &v3_ocsp_nocheck, | 99 | &v3_ocsp_nocheck, |
| 100 | &v3_ocsp_acutoff, | 100 | &v3_ocsp_acutoff, |
| 101 | &v3_ocsp_serviceloc, | 101 | &v3_ocsp_serviceloc, |
| 102 | &v3_crl_hold, | 102 | &v3_sinfo, |
| 103 | &v3_sinfo | 103 | &v3_crl_hold |
| 104 | }; | 104 | }; |
| 105 | 105 | ||
| 106 | /* Number of standard extensions */ | 106 | /* Number of standard extensions */ |
diff --git a/src/lib/libcrypto/x509v3/v3_info.c b/src/lib/libcrypto/x509v3/v3_info.c index 7f17f3231d..e1cf01a9b4 100644 --- a/src/lib/libcrypto/x509v3/v3_info.c +++ b/src/lib/libcrypto/x509v3/v3_info.c | |||
| @@ -158,6 +158,7 @@ static AUTHORITY_INFO_ACCESS *v2i_AUTHORITY_INFO_ACCESS(X509V3_EXT_METHOD *metho | |||
| 158 | objlen = ptmp - cnf->name; | 158 | objlen = ptmp - cnf->name; |
| 159 | ctmp.name = ptmp + 1; | 159 | ctmp.name = ptmp + 1; |
| 160 | ctmp.value = cnf->value; | 160 | ctmp.value = cnf->value; |
| 161 | GENERAL_NAME_free(acc->location); | ||
| 161 | if(!(acc->location = v2i_GENERAL_NAME(method, ctx, &ctmp))) | 162 | if(!(acc->location = v2i_GENERAL_NAME(method, ctx, &ctmp))) |
| 162 | goto err; | 163 | goto err; |
| 163 | if(!(objtmp = OPENSSL_malloc(objlen + 1))) { | 164 | if(!(objtmp = OPENSSL_malloc(objlen + 1))) { |
diff --git a/src/lib/libssl/crypto/Makefile b/src/lib/libssl/crypto/Makefile index 490ce259c6..c95efa83ea 100644 --- a/src/lib/libssl/crypto/Makefile +++ b/src/lib/libssl/crypto/Makefile | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.26 2002/09/05 22:12:11 markus Exp $ | 1 | # $OpenBSD: Makefile,v 1.27 2002/09/10 16:31:53 markus Exp $ |
| 2 | 2 | ||
| 3 | LIB= crypto | 3 | LIB= crypto |
| 4 | 4 | ||
| @@ -51,9 +51,9 @@ SRCS+= aes_cbc.c aes_cfb.c aes_ctr.c aes_ecb.c aes_ofb.c aes_misc.c aes_core.c | |||
| 51 | CFLAGS+= -I${LCRYPTO_SRC}/des | 51 | CFLAGS+= -I${LCRYPTO_SRC}/des |
| 52 | SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ | 52 | SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c \ |
| 53 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ | 53 | ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c \ |
| 54 | fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c \ | 54 | ofb64enc.c ofb_enc.c pcbc_enc.c \ |
| 55 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ | 55 | qud_cksm.c rand_key.c rpc_enc.c set_key.c \ |
| 56 | des_enc.c des_old.c fcrypt_b.c \ | 56 | des_enc.c des_old2.c fcrypt_b.c \ |
| 57 | fcrypt.c xcbc_enc.c ede_cbcm_enc.c \ | 57 | fcrypt.c xcbc_enc.c ede_cbcm_enc.c \ |
| 58 | str2key.c cfb64ede.c ofb64ede.c \ | 58 | str2key.c cfb64ede.c ofb64ede.c \ |
| 59 | des_old.c read2pwd.c | 59 | des_old.c read2pwd.c |
| @@ -111,7 +111,7 @@ SRCS+= bio_b64.c e_bf.c m_sha.c p_open.c | |||
| 111 | SRCS+= bio_enc.c e_cast.c e_xcbc_d.c m_dss.c m_sha1.c p_seal.c | 111 | SRCS+= bio_enc.c e_cast.c e_xcbc_d.c m_dss.c m_sha1.c p_seal.c |
| 112 | SRCS+= bio_md.c e_des.c encode.c m_dss1.c names.c p_sign.c | 112 | SRCS+= bio_md.c e_des.c encode.c m_dss1.c names.c p_sign.c |
| 113 | SRCS+= bio_ok.c e_des3.c evp_enc.c m_md2.c p_verify.c | 113 | SRCS+= bio_ok.c e_des3.c evp_enc.c m_md2.c p_verify.c |
| 114 | SRCS+= c_all.c evp_err.c m_md4.c p5_crpt.c | 114 | SRCS+= c_all.c evp_err.c evp_acnf.c m_md4.c p5_crpt.c |
| 115 | SRCS+= c_allc.c evp_key.c m_md5.c p5_crpt2.c | 115 | SRCS+= c_allc.c evp_key.c m_md5.c p5_crpt2.c |
| 116 | SRCS+= c_alld.c e_null.c evp_lib.c m_mdc2.c p_dec.c | 116 | SRCS+= c_alld.c e_null.c evp_lib.c m_mdc2.c p_dec.c |
| 117 | SRCS+= digest.c e_rc2.c evp_pbe.c m_null.c p_enc.c | 117 | SRCS+= digest.c e_rc2.c evp_pbe.c m_null.c p_enc.c |
| @@ -147,6 +147,7 @@ SRCS+= v3_lib.c v3_pku.c v3_prn.c v3_skey.c v3_sxnet.c v3_utl.c | |||
| 147 | SRCS+= v3err.c v3_info.c v3_purp.c v3_ocsp.c v3_akeya.c | 147 | SRCS+= v3err.c v3_info.c v3_purp.c v3_ocsp.c v3_akeya.c |
| 148 | CFLAGS+= -I${LCRYPTO_SRC}/conf | 148 | CFLAGS+= -I${LCRYPTO_SRC}/conf |
| 149 | SRCS+= conf_err.c conf_lib.c conf_def.c conf_api.c conf_mod.c conf_mall.c | 149 | SRCS+= conf_err.c conf_lib.c conf_def.c conf_api.c conf_mod.c conf_mall.c |
| 150 | SRCS+= conf_sap.c | ||
| 150 | CFLAGS+= -I${LCRYPTO_SRC}/txt_db | 151 | CFLAGS+= -I${LCRYPTO_SRC}/txt_db |
| 151 | SRCS+= txt_db.c | 152 | SRCS+= txt_db.c |
| 152 | CFLAGS+= -I${LCRYPTO_SRC}/pkcs7 | 153 | CFLAGS+= -I${LCRYPTO_SRC}/pkcs7 |
| @@ -154,7 +155,7 @@ SRCS+= pk7_lib.c pkcs7err.c | |||
| 154 | SRCS+= pk7_asn1.c pk7_doit.c pk7_mime.c | 155 | SRCS+= pk7_asn1.c pk7_doit.c pk7_mime.c |
| 155 | SRCS+= pk7_attr.c pk7_smime.c | 156 | SRCS+= pk7_attr.c pk7_smime.c |
| 156 | CFLAGS+= -I${LCRYPTO_SRC}/comp | 157 | CFLAGS+= -I${LCRYPTO_SRC}/comp |
| 157 | SRCS+= c_rle.c c_zlib.c comp_lib.c | 158 | SRCS+= c_rle.c c_zlib.c comp_lib.c comp_err.c |
| 158 | CFLAGS+= -I${LCRYPTO_SRC}/pkcs12 | 159 | CFLAGS+= -I${LCRYPTO_SRC}/pkcs12 |
| 159 | SRCS+= p12_add.c p12_crpt.c p12_init.c p12_mutl.c p12_p8e.c | 160 | SRCS+= p12_add.c p12_crpt.c p12_init.c p12_mutl.c p12_p8e.c |
| 160 | SRCS+= p12_asn.c p12_crt.c p12_key.c p12_npas.c p12_utl.c | 161 | SRCS+= p12_asn.c p12_crt.c p12_key.c p12_npas.c p12_utl.c |
diff --git a/src/lib/libssl/crypto/shlib_version b/src/lib/libssl/crypto/shlib_version index 9c1551636c..5b844bbf42 100644 --- a/src/lib/libssl/crypto/shlib_version +++ b/src/lib/libssl/crypto/shlib_version | |||
| @@ -1,2 +1,2 @@ | |||
| 1 | major=6 | 1 | major=7 |
| 2 | minor=0 | 2 | minor=0 |
diff --git a/src/lib/libssl/s23_clnt.c b/src/lib/libssl/s23_clnt.c index b2be8340fb..019e9aecee 100644 --- a/src/lib/libssl/s23_clnt.c +++ b/src/lib/libssl/s23_clnt.c | |||
| @@ -57,11 +57,11 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/buffer.h> | 61 | #include <openssl/buffer.h> |
| 61 | #include <openssl/rand.h> | 62 | #include <openssl/rand.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/evp.h> | 64 | #include <openssl/evp.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | static SSL_METHOD *ssl23_get_client_method(int ver); | 66 | static SSL_METHOD *ssl23_get_client_method(int ver); |
| 67 | static int ssl23_client_hello(SSL *s); | 67 | static int ssl23_client_hello(SSL *s); |
diff --git a/src/lib/libssl/s23_pkt.c b/src/lib/libssl/s23_pkt.c index f45e1ce3d8..4ca6a1b258 100644 --- a/src/lib/libssl/s23_pkt.c +++ b/src/lib/libssl/s23_pkt.c | |||
| @@ -59,9 +59,9 @@ | |||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <errno.h> | 60 | #include <errno.h> |
| 61 | #define USE_SOCKETS | 61 | #define USE_SOCKETS |
| 62 | #include "ssl_locl.h" | ||
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include <openssl/buffer.h> | 64 | #include <openssl/buffer.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | int ssl23_write_bytes(SSL *s) | 66 | int ssl23_write_bytes(SSL *s) |
| 67 | { | 67 | { |
diff --git a/src/lib/libssl/s23_srvr.c b/src/lib/libssl/s23_srvr.c index 9e89cc7f9a..8743b61cbb 100644 --- a/src/lib/libssl/s23_srvr.c +++ b/src/lib/libssl/s23_srvr.c | |||
| @@ -110,11 +110,11 @@ | |||
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include "ssl_locl.h" | ||
| 113 | #include <openssl/buffer.h> | 114 | #include <openssl/buffer.h> |
| 114 | #include <openssl/rand.h> | 115 | #include <openssl/rand.h> |
| 115 | #include <openssl/objects.h> | 116 | #include <openssl/objects.h> |
| 116 | #include <openssl/evp.h> | 117 | #include <openssl/evp.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | 118 | ||
| 119 | static SSL_METHOD *ssl23_get_server_method(int ver); | 119 | static SSL_METHOD *ssl23_get_server_method(int ver); |
| 120 | int ssl23_get_client_hello(SSL *s); | 120 | int ssl23_get_client_hello(SSL *s); |
diff --git a/src/lib/libssl/s3_both.c b/src/lib/libssl/s3_both.c index 58a24cd883..8864366f59 100644 --- a/src/lib/libssl/s3_both.c +++ b/src/lib/libssl/s3_both.c | |||
| @@ -112,12 +112,12 @@ | |||
| 112 | #include <limits.h> | 112 | #include <limits.h> |
| 113 | #include <string.h> | 113 | #include <string.h> |
| 114 | #include <stdio.h> | 114 | #include <stdio.h> |
| 115 | #include "ssl_locl.h" | ||
| 115 | #include <openssl/buffer.h> | 116 | #include <openssl/buffer.h> |
| 116 | #include <openssl/rand.h> | 117 | #include <openssl/rand.h> |
| 117 | #include <openssl/objects.h> | 118 | #include <openssl/objects.h> |
| 118 | #include <openssl/evp.h> | 119 | #include <openssl/evp.h> |
| 119 | #include <openssl/x509.h> | 120 | #include <openssl/x509.h> |
| 120 | #include "ssl_locl.h" | ||
| 121 | 121 | ||
| 122 | /* send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC) */ | 122 | /* send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC) */ |
| 123 | int ssl3_do_write(SSL *s, int type) | 123 | int ssl3_do_write(SSL *s, int type) |
diff --git a/src/lib/libssl/s3_clnt.c b/src/lib/libssl/s3_clnt.c index 5d3efac2cd..27df7a5a64 100644 --- a/src/lib/libssl/s3_clnt.c +++ b/src/lib/libssl/s3_clnt.c | |||
| @@ -110,12 +110,12 @@ | |||
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include "ssl_locl.h" | ||
| 114 | #include "kssl_lcl.h" | ||
| 113 | #include <openssl/buffer.h> | 115 | #include <openssl/buffer.h> |
| 114 | #include <openssl/rand.h> | 116 | #include <openssl/rand.h> |
| 115 | #include <openssl/objects.h> | 117 | #include <openssl/objects.h> |
| 116 | #include <openssl/evp.h> | 118 | #include <openssl/evp.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | #include "kssl_lcl.h" | ||
| 119 | #include <openssl/md5.h> | 119 | #include <openssl/md5.h> |
| 120 | 120 | ||
| 121 | static SSL_METHOD *ssl3_get_client_method(int ver); | 121 | static SSL_METHOD *ssl3_get_client_method(int ver); |
diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c index 838071b16b..cc0aeef511 100644 --- a/src/lib/libssl/s3_lib.c +++ b/src/lib/libssl/s3_lib.c | |||
| @@ -129,7 +129,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 129 | SSL3_TXT_RSA_NULL_MD5, | 129 | SSL3_TXT_RSA_NULL_MD5, |
| 130 | SSL3_CK_RSA_NULL_MD5, | 130 | SSL3_CK_RSA_NULL_MD5, |
| 131 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_MD5|SSL_SSLV3, | 131 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_MD5|SSL_SSLV3, |
| 132 | SSL_NOT_EXP, | 132 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 133 | 0, | 133 | 0, |
| 134 | 0, | 134 | 0, |
| 135 | 0, | 135 | 0, |
| @@ -142,7 +142,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 142 | SSL3_TXT_RSA_NULL_SHA, | 142 | SSL3_TXT_RSA_NULL_SHA, |
| 143 | SSL3_CK_RSA_NULL_SHA, | 143 | SSL3_CK_RSA_NULL_SHA, |
| 144 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_SHA1|SSL_SSLV3, | 144 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_SHA1|SSL_SSLV3, |
| 145 | SSL_NOT_EXP, | 145 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 146 | 0, | 146 | 0, |
| 147 | 0, | 147 | 0, |
| 148 | 0, | 148 | 0, |
| @@ -492,7 +492,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 492 | SSL3_TXT_FZA_DMS_NULL_SHA, | 492 | SSL3_TXT_FZA_DMS_NULL_SHA, |
| 493 | SSL3_CK_FZA_DMS_NULL_SHA, | 493 | SSL3_CK_FZA_DMS_NULL_SHA, |
| 494 | SSL_kFZA|SSL_aFZA |SSL_eNULL |SSL_SHA1|SSL_SSLV3, | 494 | SSL_kFZA|SSL_aFZA |SSL_eNULL |SSL_SHA1|SSL_SSLV3, |
| 495 | SSL_NOT_EXP, | 495 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 496 | 0, | 496 | 0, |
| 497 | 0, | 497 | 0, |
| 498 | 0, | 498 | 0, |
| @@ -506,7 +506,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 506 | SSL3_TXT_FZA_DMS_FZA_SHA, | 506 | SSL3_TXT_FZA_DMS_FZA_SHA, |
| 507 | SSL3_CK_FZA_DMS_FZA_SHA, | 507 | SSL3_CK_FZA_DMS_FZA_SHA, |
| 508 | SSL_kFZA|SSL_aFZA |SSL_eFZA |SSL_SHA1|SSL_SSLV3, | 508 | SSL_kFZA|SSL_aFZA |SSL_eFZA |SSL_SHA1|SSL_SSLV3, |
| 509 | SSL_NOT_EXP, | 509 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 510 | 0, | 510 | 0, |
| 511 | 0, | 511 | 0, |
| 512 | 0, | 512 | 0, |
diff --git a/src/lib/libssl/s3_pkt.c b/src/lib/libssl/s3_pkt.c index 43e8502b66..6ccea9aee5 100644 --- a/src/lib/libssl/s3_pkt.c +++ b/src/lib/libssl/s3_pkt.c | |||
| @@ -112,9 +112,9 @@ | |||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include <errno.h> | 113 | #include <errno.h> |
| 114 | #define USE_SOCKETS | 114 | #define USE_SOCKETS |
| 115 | #include "ssl_locl.h" | ||
| 115 | #include <openssl/evp.h> | 116 | #include <openssl/evp.h> |
| 116 | #include <openssl/buffer.h> | 117 | #include <openssl/buffer.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | 118 | ||
| 119 | static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, | 119 | static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, |
| 120 | unsigned int len, int create_empty_fragment); | 120 | unsigned int len, int create_empty_fragment); |
diff --git a/src/lib/libssl/s3_srvr.c b/src/lib/libssl/s3_srvr.c index cef8d4f81e..dfffed7165 100644 --- a/src/lib/libssl/s3_srvr.c +++ b/src/lib/libssl/s3_srvr.c | |||
| @@ -114,6 +114,8 @@ | |||
| 114 | 114 | ||
| 115 | 115 | ||
| 116 | #include <stdio.h> | 116 | #include <stdio.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | #include "kssl_lcl.h" | ||
| 117 | #include <openssl/buffer.h> | 119 | #include <openssl/buffer.h> |
| 118 | #include <openssl/rand.h> | 120 | #include <openssl/rand.h> |
| 119 | #include <openssl/objects.h> | 121 | #include <openssl/objects.h> |
| @@ -121,10 +123,8 @@ | |||
| 121 | #include <openssl/x509.h> | 123 | #include <openssl/x509.h> |
| 122 | #ifndef OPENSSL_NO_KRB5 | 124 | #ifndef OPENSSL_NO_KRB5 |
| 123 | #include <openssl/krb5_asn.h> | 125 | #include <openssl/krb5_asn.h> |
| 124 | #include "kssl_lcl.h" | ||
| 125 | #endif | 126 | #endif |
| 126 | #include <openssl/md5.h> | 127 | #include <openssl/md5.h> |
| 127 | #include "ssl_locl.h" | ||
| 128 | 128 | ||
| 129 | static SSL_METHOD *ssl3_get_server_method(int ver); | 129 | static SSL_METHOD *ssl3_get_server_method(int ver); |
| 130 | static int ssl3_get_client_hello(SSL *s); | 130 | static int ssl3_get_client_hello(SSL *s); |
diff --git a/src/lib/libssl/src/CHANGES b/src/lib/libssl/src/CHANGES index 64c33c7048..5c80970b52 100644 --- a/src/lib/libssl/src/CHANGES +++ b/src/lib/libssl/src/CHANGES | |||
| @@ -2,7 +2,50 @@ | |||
| 2 | OpenSSL CHANGES | 2 | OpenSSL CHANGES |
| 3 | _______________ | 3 | _______________ |
| 4 | 4 | ||
| 5 | Changes between 0.9.6d and 0.9.7 [XX xxx 2002] | 5 | Changes between 0.9.6e and 0.9.7 [XX xxx 2002] |
| 6 | |||
| 7 | *) Make sure tests can be performed even if the corresponding algorithms | ||
| 8 | have been removed entirely. This was also the last step to make | ||
| 9 | OpenSSL compilable with DJGPP under all reasonable conditions. | ||
| 10 | [Richard Levitte, Doug Kaufman <dkaufman@rahul.net>] | ||
| 11 | |||
| 12 | *) Add cipher selection rules COMPLEMENTOFALL and COMPLEMENTOFDEFAULT | ||
| 13 | to allow version independent disabling of normally unselected ciphers, | ||
| 14 | which may be activated as a side-effect of selecting a single cipher. | ||
| 15 | |||
| 16 | (E.g., cipher list string "RSA" enables ciphersuites that are left | ||
| 17 | out of "ALL" because they do not provide symmetric encryption. | ||
| 18 | "RSA:!COMPLEMEMENTOFALL" avoids these unsafe ciphersuites.) | ||
| 19 | [Lutz Jaenicke, Bodo Moeller] | ||
| 20 | |||
| 21 | *) Add appropriate support for separate platform-dependent build | ||
| 22 | directories. The recommended way to make a platform-dependent | ||
| 23 | build directory is the following (tested on Linux), maybe with | ||
| 24 | some local tweaks: | ||
| 25 | |||
| 26 | # Place yourself outside of the OpenSSL source tree. In | ||
| 27 | # this example, the environment variable OPENSSL_SOURCE | ||
| 28 | # is assumed to contain the absolute OpenSSL source directory. | ||
| 29 | mkdir -p objtree/"`uname -s`-`uname -r`-`uname -m`" | ||
| 30 | cd objtree/"`uname -s`-`uname -r`-`uname -m`" | ||
| 31 | (cd $OPENSSL_SOURCE; find . -type f -o -type l) | while read F; do | ||
| 32 | mkdir -p `dirname $F` | ||
| 33 | ln -s $OPENSSL_SOURCE/$F $F | ||
| 34 | done | ||
| 35 | |||
| 36 | To be absolutely sure not to disturb the source tree, a "make clean" | ||
| 37 | is a good thing. If it isn't successfull, don't worry about it, | ||
| 38 | it probably means the source directory is very clean. | ||
| 39 | [Richard Levitte] | ||
| 40 | |||
| 41 | *) Make sure any ENGINE control commands make local copies of string | ||
| 42 | pointers passed to them whenever necessary. Otherwise it is possible | ||
| 43 | the caller may have overwritten (or deallocated) the original string | ||
| 44 | data when a later ENGINE operation tries to use the stored values. | ||
| 45 | [Götz Babin-Ebell <babinebell@trustcenter.de>] | ||
| 46 | |||
| 47 | *) Improve diagnostics in file reading and command-line digests. | ||
| 48 | [Ben Laurie aided and abetted by Solar Designer <solar@openwall.com>] | ||
| 6 | 49 | ||
| 7 | *) Add AES modes CFB and OFB to the object database. Correct an | 50 | *) Add AES modes CFB and OFB to the object database. Correct an |
| 8 | error in AES-CFB decryption. | 51 | error in AES-CFB decryption. |
| @@ -29,6 +72,8 @@ | |||
| 29 | form for "surname", serialNumber has no short form. | 72 | form for "surname", serialNumber has no short form. |
| 30 | Use "mail" as the short name for "rfc822Mailbox" according to RFC2798; | 73 | Use "mail" as the short name for "rfc822Mailbox" according to RFC2798; |
| 31 | therefore remove "mail" short name for "internet 7". | 74 | therefore remove "mail" short name for "internet 7". |
| 75 | The OID for unique identifiers in X509 certificates is | ||
| 76 | x500UniqueIdentifier, not uniqueIdentifier. | ||
| 32 | Some more OID additions. (Michael Bell <michael.bell@rz.hu-berlin.de>) | 77 | Some more OID additions. (Michael Bell <michael.bell@rz.hu-berlin.de>) |
| 33 | [Lutz Jaenicke] | 78 | [Lutz Jaenicke] |
| 34 | 79 | ||
| @@ -335,6 +380,10 @@ | |||
| 335 | By default, clients may request session resumption even during | 380 | By default, clients may request session resumption even during |
| 336 | renegotiation (if session ID contexts permit); with this option, | 381 | renegotiation (if session ID contexts permit); with this option, |
| 337 | session resumption is possible only in the first handshake. | 382 | session resumption is possible only in the first handshake. |
| 383 | |||
| 384 | SSL_OP_ALL is now 0x00000FFFL instead of 0x000FFFFFL. This makes | ||
| 385 | more bits available for options that should not be part of | ||
| 386 | SSL_OP_ALL (such as SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION). | ||
| 338 | [Bodo Moeller] | 387 | [Bodo Moeller] |
| 339 | 388 | ||
| 340 | *) Add some demos for certificate and certificate request creation. | 389 | *) Add some demos for certificate and certificate request creation. |
| @@ -455,8 +504,8 @@ | |||
| 455 | [Bodo Moeller, Lutz Jaenicke] | 504 | [Bodo Moeller, Lutz Jaenicke] |
| 456 | 505 | ||
| 457 | *) Rationalise EVP so it can be extended: don't include a union of | 506 | *) Rationalise EVP so it can be extended: don't include a union of |
| 458 | cipher/digest structures, add init/cleanup functions. This also reduces | 507 | cipher/digest structures, add init/cleanup functions for EVP_MD_CTX |
| 459 | the number of header dependencies. | 508 | (similar to those existing for EVP_CIPHER_CTX). |
| 460 | Usage example: | 509 | Usage example: |
| 461 | 510 | ||
| 462 | EVP_MD_CTX md; | 511 | EVP_MD_CTX md; |
| @@ -1040,14 +1089,15 @@ des-cbc 3624.96k 5258.21k 5530.91k 5624.30k 5628.26k | |||
| 1040 | handle the new API. Currently only ECB, CBC modes supported. Add new | 1089 | handle the new API. Currently only ECB, CBC modes supported. Add new |
| 1041 | AES OIDs. | 1090 | AES OIDs. |
| 1042 | 1091 | ||
| 1043 | Add TLS AES ciphersuites as described in the "AES Ciphersuites | 1092 | Add TLS AES ciphersuites as described in RFC3268, "Advanced |
| 1044 | for TLS" draft-ietf-tls-ciphersuite-06.txt. As these are not yet | 1093 | Encryption Standard (AES) Ciphersuites for Transport Layer |
| 1045 | official, they are not enabled by default and are not even part | 1094 | Security (TLS)". (In beta versions of OpenSSL 0.9.7, these were |
| 1046 | of the "ALL" ciphersuite alias; for now, they must be explicitly | 1095 | not enabled by default and were not part of the "ALL" ciphersuite |
| 1047 | requested by specifying the new "AESdraft" ciphersuite alias. If | 1096 | alias because they were not yet official; they could be |
| 1048 | you want the default ciphersuite list plus the new ciphersuites, | 1097 | explicitly requested by specifying the "AESdraft" ciphersuite |
| 1049 | use "DEFAULT:AESdraft:@STRENGTH". | 1098 | group alias. In the final release of OpenSSL 0.9.7, the group |
| 1050 | [Ben Laurie, Steve Henson, Bodo Moeller] | 1099 | alias is called "AES" and is part of "ALL".) |
| 1100 | [Ben Laurie, Steve Henson, Bodo Moeller] | ||
| 1051 | 1101 | ||
| 1052 | *) New function OCSP_copy_nonce() to copy nonce value (if present) from | 1102 | *) New function OCSP_copy_nonce() to copy nonce value (if present) from |
| 1053 | request to response. | 1103 | request to response. |
| @@ -1617,22 +1667,46 @@ des-cbc 3624.96k 5258.21k 5530.91k 5624.30k 5628.26k | |||
| 1617 | *) Clean old EAY MD5 hack from e_os.h. | 1667 | *) Clean old EAY MD5 hack from e_os.h. |
| 1618 | [Richard Levitte] | 1668 | [Richard Levitte] |
| 1619 | 1669 | ||
| 1620 | Changes between 0.9.6d and 0.9.6e [XX xxx XXXX] | 1670 | Changes between 0.9.6d and 0.9.6e [30 Jul 2002] |
| 1671 | |||
| 1672 | *) Add various sanity checks to asn1_get_length() to reject | ||
| 1673 | the ASN1 length bytes if they exceed sizeof(long), will appear | ||
| 1674 | negative or the content length exceeds the length of the | ||
| 1675 | supplied buffer. | ||
| 1676 | [Steve Henson, Adi Stav <stav@mercury.co.il>, James Yonan <jim@ntlp.com>] | ||
| 1677 | |||
| 1678 | *) Fix cipher selection routines: ciphers without encryption had no flags | ||
| 1679 | for the cipher strength set and where therefore not handled correctly | ||
| 1680 | by the selection routines (PR #130). | ||
| 1681 | [Lutz Jaenicke] | ||
| 1621 | 1682 | ||
| 1622 | *) Fix EVP_dsa_sha macro. | 1683 | *) Fix EVP_dsa_sha macro. |
| 1623 | [Nils Larsch] | 1684 | [Nils Larsch] |
| 1624 | 1685 | ||
| 1625 | Changes in security patch | 1686 | *) New option |
| 1687 | SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS | ||
| 1688 | for disabling the SSL 3.0/TLS 1.0 CBC vulnerability countermeasure | ||
| 1689 | that was added in OpenSSL 0.9.6d. | ||
| 1690 | |||
| 1691 | As the countermeasure turned out to be incompatible with some | ||
| 1692 | broken SSL implementations, the new option is part of SSL_OP_ALL. | ||
| 1693 | SSL_OP_ALL is usually employed when compatibility with weird SSL | ||
| 1694 | implementations is desired (e.g. '-bugs' option to 's_client' and | ||
| 1695 | 's_server'), so the new option is automatically set in many | ||
| 1696 | applications. | ||
| 1697 | [Bodo Moeller] | ||
| 1626 | 1698 | ||
| 1627 | Changes marked "(CHATS)" were sponsored by the Defense Advanced | 1699 | *) Changes in security patch: |
| 1628 | Research Projects Agency (DARPA) and Air Force Research Laboratory, | 1700 | |
| 1629 | Air Force Materiel Command, USAF, under agreement number | 1701 | Changes marked "(CHATS)" were sponsored by the Defense Advanced |
| 1630 | F30602-01-2-0537. | 1702 | Research Projects Agency (DARPA) and Air Force Research Laboratory, |
| 1703 | Air Force Materiel Command, USAF, under agreement number | ||
| 1704 | F30602-01-2-0537. | ||
| 1631 | 1705 | ||
| 1632 | *) Add various sanity checks to asn1_get_length() to reject | 1706 | *) Add various sanity checks to asn1_get_length() to reject |
| 1633 | the ASN1 length bytes if they exceed sizeof(long), will appear | 1707 | the ASN1 length bytes if they exceed sizeof(long), will appear |
| 1634 | negative or the content length exceeds the length of the | 1708 | negative or the content length exceeds the length of the |
| 1635 | supplied buffer. | 1709 | supplied buffer. (CAN-2002-0659) |
| 1636 | [Steve Henson, Adi Stav <stav@mercury.co.il>, James Yonan <jim@ntlp.com>] | 1710 | [Steve Henson, Adi Stav <stav@mercury.co.il>, James Yonan <jim@ntlp.com>] |
| 1637 | 1711 | ||
| 1638 | *) Assertions for various potential buffer overflows, not known to | 1712 | *) Assertions for various potential buffer overflows, not known to |
| @@ -1644,6 +1718,11 @@ F30602-01-2-0537. | |||
| 1644 | [Matthew Byng-Maddick <mbm@aldigital.co.uk> and Ben Laurie (CHATS)> | 1718 | [Matthew Byng-Maddick <mbm@aldigital.co.uk> and Ben Laurie (CHATS)> |
| 1645 | 1719 | ||
| 1646 | *) Remote buffer overflow in SSL3 protocol - an attacker could | 1720 | *) Remote buffer overflow in SSL3 protocol - an attacker could |
| 1721 | supply an oversized master key in Kerberos-enabled versions. | ||
| 1722 | (CAN-2002-0657) | ||
| 1723 | [Ben Laurie (CHATS)] | ||
| 1724 | |||
| 1725 | *) Remote buffer overflow in SSL3 protocol - an attacker could | ||
| 1647 | supply an oversized session ID to a client. (CAN-2002-0656) | 1726 | supply an oversized session ID to a client. (CAN-2002-0656) |
| 1648 | [Ben Laurie (CHATS)] | 1727 | [Ben Laurie (CHATS)] |
| 1649 | 1728 | ||
| @@ -1651,6 +1730,7 @@ F30602-01-2-0537. | |||
| 1651 | supply an oversized client master key. (CAN-2002-0656) | 1730 | supply an oversized client master key. (CAN-2002-0656) |
| 1652 | [Ben Laurie (CHATS)] | 1731 | [Ben Laurie (CHATS)] |
| 1653 | 1732 | ||
| 1733 | |||
| 1654 | Changes between 0.9.6c and 0.9.6d [9 May 2002] | 1734 | Changes between 0.9.6c and 0.9.6d [9 May 2002] |
| 1655 | 1735 | ||
| 1656 | *) Fix crypto/asn1/a_sign.c so that 'parameters' is omitted (not | 1736 | *) Fix crypto/asn1/a_sign.c so that 'parameters' is omitted (not |
diff --git a/src/lib/libssl/src/Configure b/src/lib/libssl/src/Configure index 986db2f614..74bd8877e5 100644 --- a/src/lib/libssl/src/Configure +++ b/src/lib/libssl/src/Configure | |||
| @@ -134,7 +134,7 @@ my %table=( | |||
| 134 | 134 | ||
| 135 | # Our development configs | 135 | # Our development configs |
| 136 | "purify", "purify gcc:-g -DPURIFY -Wall::(unknown)::-lsocket -lnsl::::", | 136 | "purify", "purify gcc:-g -DPURIFY -Wall::(unknown)::-lsocket -lnsl::::", |
| 137 | "debug", "gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -ggdb -g2 -Wformat -Wshadow -Wmissing-prototypes -Wmissing-declarations -Werror::(unknown)::-lefence::::", | 137 | "debug", "gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -ggdb -g2 -Wformat -Wshadow -Wmissing-prototypes -Wmissing-declarations -Werror::(unknown)::-lefence::::", |
| 138 | "debug-ben", "gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -O2 -pedantic -Wall -Wshadow -Werror -pipe::(unknown)::::asm/bn86-elf.o asm/co86-elf.o", | 138 | "debug-ben", "gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -O2 -pedantic -Wall -Wshadow -Werror -pipe::(unknown)::::asm/bn86-elf.o asm/co86-elf.o", |
| 139 | "debug-ben-openbsd","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -O2 -pedantic -Wall -Wshadow -Werror -pipe::(unknown)::::", | 139 | "debug-ben-openbsd","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -O2 -pedantic -Wall -Wshadow -Werror -pipe::(unknown)::::", |
| 140 | "debug-ben-openbsd-debug","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -g3 -O2 -pedantic -Wall -Wshadow -Werror -pipe::(unknown)::::", | 140 | "debug-ben-openbsd-debug","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -g3 -O2 -pedantic -Wall -Wshadow -Werror -pipe::(unknown)::::", |
| @@ -145,8 +145,8 @@ my %table=( | |||
| 145 | "debug-ulf", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG_ALL -g -O2 -m486 -Wall -Werror -Wshadow -pipe::-D_REENTRANT:::${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}", | 145 | "debug-ulf", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG_ALL -g -O2 -m486 -Wall -Werror -Wshadow -pipe::-D_REENTRANT:::${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}", |
| 146 | "debug-steve", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DPEDANTIC -g -mcpu=i486 -pedantic -Wall -Werror -Wshadow -pipe::-D_REENTRANT::-rdynamic -ldl:${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", | 146 | "debug-steve", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DPEDANTIC -g -mcpu=i486 -pedantic -Wall -Werror -Wshadow -pipe::-D_REENTRANT::-rdynamic -ldl:${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn", |
| 147 | "debug-steve-linux-pseudo64", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DOPENSSL_NO_ASM -g -mcpu=i486 -Wall -Werror -Wshadow -pipe::-D_REENTRANT::-rdynamic -ldl:SIXTY_FOUR_BIT::dlfcn", | 147 | "debug-steve-linux-pseudo64", "gcc:-DL_ENDIAN -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG_ALL -DOPENSSL_NO_ASM -g -mcpu=i486 -Wall -Werror -Wshadow -pipe::-D_REENTRANT::-rdynamic -ldl:SIXTY_FOUR_BIT::dlfcn", |
| 148 | "debug-levitte-linux-elf","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -W -Wtraditional -Wundef -Wshadow -Wid-clash-31 -Wcast-align -Wconversion -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 148 | "debug-levitte-linux-elf","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wid-clash-31 -Wcast-align -Wconversion -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_elf_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 149 | "debug-levitte-linux-noasm","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -W -Wtraditional -Wundef -Wshadow -Wid-clash-31 -Wcast-align -Wconversion -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 149 | "debug-levitte-linux-noasm","gcc:-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DTERMIO -D_POSIX_SOURCE -DPEDANTIC -ggdb -g3 -mcpu=i486 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wid-clash-31 -Wcast-align -Wconversion -Wno-long-long -pipe::-D_REENTRANT::-ldl:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 150 | "dist", "cc:-O::(unknown)::::::", | 150 | "dist", "cc:-O::(unknown)::::::", |
| 151 | 151 | ||
| 152 | # Basic configs that should work on any (32 and less bit) box | 152 | # Basic configs that should work on any (32 and less bit) box |
| @@ -169,11 +169,11 @@ my %table=( | |||
| 169 | "solaris-sparcv8-gcc","gcc:-mv8 -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT::-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8.o:::::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 169 | "solaris-sparcv8-gcc","gcc:-mv8 -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT::-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8.o:::::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 170 | # -m32 should be safe to add as long as driver recognizes -mcpu=ultrasparc | 170 | # -m32 should be safe to add as long as driver recognizes -mcpu=ultrasparc |
| 171 | "solaris-sparcv9-gcc","gcc:-m32 -mcpu=ultrasparc -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8plus.o:::asm/md5-sparcv8plus.o::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 171 | "solaris-sparcv9-gcc","gcc:-m32 -mcpu=ultrasparc -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8plus.o:::asm/md5-sparcv8plus.o::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 172 | "solaris64-sparcv9-gcc31","gcc:-mcpu=ultrasparc -m64 -O3 -fomit-frame-pointer -Wall -DB_ENDIAN::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::asm/md5-sparcv9.o::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 172 | "solaris64-sparcv9-gcc31","gcc:-mcpu=ultrasparc -m64 -O3 -fomit-frame-pointer -Wall -DB_ENDIAN::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::asm/md5-sparcv9.o::::::dlfcn:solaris-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 173 | # gcc pre-2.8 doesn't understand -mcpu=ultrasparc, so fall down to -mv8 | 173 | # gcc pre-2.8 doesn't understand -mcpu=ultrasparc, so fall down to -mv8 |
| 174 | # but keep the assembler modules. | 174 | # but keep the assembler modules. |
| 175 | "solaris-sparcv9-gcc27","gcc:-mv8 -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8plus-gcc27.o:::asm/md5-sparcv8plus-gcc27.o::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 175 | "solaris-sparcv9-gcc27","gcc:-mv8 -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8plus-gcc27.o:::asm/md5-sparcv8plus-gcc27.o::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 176 | "solaris64-sparcv9-gcc","gcc:-m64 -mcpu=ultrasparc -O3 -Wall -DB_ENDIAN::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::asm/md5-sparcv9.o::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 176 | "solaris64-sparcv9-gcc","gcc:-m64 -mcpu=ultrasparc -O3 -Wall -DB_ENDIAN::-D_REENTRANT:ULTRASPARC:-lsocket -lnsl -ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::asm/md5-sparcv9.o::::::dlfcn:solaris-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 177 | 177 | ||
| 178 | #### | 178 | #### |
| 179 | "debug-solaris-sparcv8-gcc","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG_ALL -O -g -mv8 -Wall -DB_ENDIAN::-D_REENTRANT::-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8.o:::::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 179 | "debug-solaris-sparcv8-gcc","gcc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG_ALL -O -g -mv8 -Wall -DB_ENDIAN::-D_REENTRANT::-lsocket -lnsl -ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:asm/sparcv8.o:::::::::dlfcn:solaris-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| @@ -256,6 +256,9 @@ my %table=( | |||
| 256 | "hpux-parisc-cc-o4","cc:-Ae +O4 +ESlit -z -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY::::-ldld:BN_LLONG DES_PTR DES_UNROLL DES_RISC1::::::::::dl:hpux-shared:+Z::.sl.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 256 | "hpux-parisc-cc-o4","cc:-Ae +O4 +ESlit -z -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY::::-ldld:BN_LLONG DES_PTR DES_UNROLL DES_RISC1::::::::::dl:hpux-shared:+Z::.sl.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 257 | "hpux-parisc-gcc","gcc:-O3 -DB_ENDIAN -DBN_DIV2W::::-Wl,+s -ldld:BN_LLONG DES_PTR DES_UNROLL DES_RISC1::::::::::dl:hpux-shared:-fPIC::.sl.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 257 | "hpux-parisc-gcc","gcc:-O3 -DB_ENDIAN -DBN_DIV2W::::-Wl,+s -ldld:BN_LLONG DES_PTR DES_UNROLL DES_RISC1::::::::::dl:hpux-shared:-fPIC::.sl.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 258 | "hpux64-parisc-cc","cc:-Ae +DD64 +O3 +ESlit -z -DB_ENDIAN -DMD32_XARRAY::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT::::::::::dlfcn:hpux64-shared:+Z::.sl.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 258 | "hpux64-parisc-cc","cc:-Ae +DD64 +O3 +ESlit -z -DB_ENDIAN -DMD32_XARRAY::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT::::::::::dlfcn:hpux64-shared:+Z::.sl.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 259 | # 64bit PARISC for GCC without optimization, which seems to make problems. | ||
| 260 | # Submitted by <ross.alexander@uk.neceur.com> | ||
| 261 | "hpux64-parisc-gcc","gcc:-DB_ENDIAN -DMD32_XARRAY::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT::::::::::dlfcn:hpux64-shared:-fpic::.sl.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | ||
| 259 | 262 | ||
| 260 | # IA-64 targets | 263 | # IA-64 targets |
| 261 | # I have no idea if this one actually works, feedback needed. <appro> | 264 | # I have no idea if this one actually works, feedback needed. <appro> |
| @@ -410,13 +413,13 @@ my %table=( | |||
| 410 | "linux-elf-arm","gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT:::BN_LLONG::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 413 | "linux-elf-arm","gcc:-DL_ENDIAN -DTERMIO -O3 -fomit-frame-pointer -Wall::-D_REENTRANT:::BN_LLONG::::::::::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| 411 | 414 | ||
| 412 | # UnixWare 2.0x fails destest with -O | 415 | # UnixWare 2.0x fails destest with -O |
| 413 | "unixware-2.0","cc:-DFILIO_H::-Kthread::-lsocket -lnsl -lx:${x86_gcc_des} ${x86_gcc_opts}:::", | 416 | "unixware-2.0","cc:-DFILIO_H -DNO_STRINGS_H::-Kthread::-lsocket -lnsl -lresolv -lx:${x86_gcc_des} ${x86_gcc_opts}:::", |
| 414 | "unixware-2.0-pentium","cc:-DFILIO_H -Kpentium::-Kthread::-lsocket -lnsl -lx:MD2_CHAR RC4_INDEX ${x86_gcc_des}::", | 417 | "unixware-2.0-pentium","cc:-DFILIO_H -DNO_STRINGS_H -Kpentium::-Kthread::-lsocket -lnsl -lresolv -lx:MD2_CHAR RC4_INDEX ${x86_gcc_des}::", |
| 415 | 418 | ||
| 416 | # UnixWare 2.1 | 419 | # UnixWare 2.1 |
| 417 | "unixware-2.1","cc:-O -DFILIO_H::-Kthread::-lsocket -lnsl -lx:${x86_gcc_des} ${x86_gcc_opts}:::", | 420 | "unixware-2.1","cc:-O -DFILIO_H::-Kthread::-lsocket -lnsl -lresolv -lx:${x86_gcc_des} ${x86_gcc_opts}:::", |
| 418 | "unixware-2.1-pentium","cc:-O -DFILIO_H -Kpentium::-Kthread::-lsocket -lnsl -lx:MD2_CHAR RC4_INDEX ${x86_gcc_des}::", | 421 | "unixware-2.1-pentium","cc:-O -DFILIO_H -Kpentium::-Kthread::-lsocket -lnsl -lresolv -lx:MD2_CHAR RC4_INDEX ${x86_gcc_des}::", |
| 419 | "unixware-2.1-p6","cc:-O -DFILIO_H -Kp6::-Kthread::-lsocket -lnsl -lx:MD2_CHAR RC4_INDEX ${x86_gcc_des}::", | 422 | "unixware-2.1-p6","cc:-O -DFILIO_H -Kp6::-Kthread::-lsocket -lnsl -lresolv -lx:MD2_CHAR RC4_INDEX ${x86_gcc_des}::", |
| 420 | 423 | ||
| 421 | # UnixWare 7 | 424 | # UnixWare 7 |
| 422 | "unixware-7","cc:-O -DFILIO_H -Kalloca::-Kthread::-lsocket -lnsl:BN_LLONG MD2_CHAR RC4_INDEX ${x86_gcc_des}::::::::::dlfcn:svr5-shared:-Kpic::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", | 425 | "unixware-7","cc:-O -DFILIO_H -Kalloca::-Kthread::-lsocket -lnsl:BN_LLONG MD2_CHAR RC4_INDEX ${x86_gcc_des}::::::::::dlfcn:svr5-shared:-Kpic::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", |
| @@ -509,10 +512,16 @@ my %table=( | |||
| 509 | # and its library files in util/pl/*) | 512 | # and its library files in util/pl/*) |
| 510 | "Mingw32", "gcc:-DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall:::::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", | 513 | "Mingw32", "gcc:-DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall:::::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", |
| 511 | 514 | ||
| 515 | # UWIN | ||
| 516 | "UWIN", "cc:-DTERMIOS -DL_ENDIAN -O -Wall:::UWIN::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", | ||
| 517 | |||
| 512 | # Cygwin | 518 | # Cygwin |
| 513 | "Cygwin-pre1.3", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown):CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", | 519 | "Cygwin-pre1.3", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown):CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32", |
| 514 | "Cygwin", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall:::CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}:win32:cygwin-shared:::.dll", | 520 | "Cygwin", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall:::CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}:${x86_out_asm}:win32:cygwin-shared:::.dll", |
| 515 | 521 | ||
| 522 | # DJGPP | ||
| 523 | "DJGPP", "gcc:-I/dev/env/DJDIR/watt32/inc -DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O2 -Wall:::MSDOS:-L/dev/env/DJDIR/watt32/lib -lwatt:BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::", | ||
| 524 | |||
| 516 | # Ultrix from Bernhard Simon <simon@zid.tuwien.ac.at> | 525 | # Ultrix from Bernhard Simon <simon@zid.tuwien.ac.at> |
| 517 | "ultrix-cc","cc:-std1 -O -Olimit 1000 -DL_ENDIAN::(unknown):::::::", | 526 | "ultrix-cc","cc:-std1 -O -Olimit 1000 -DL_ENDIAN::(unknown):::::::", |
| 518 | "ultrix-gcc","gcc:-O3 -DL_ENDIAN::(unknown):::::::", | 527 | "ultrix-gcc","gcc:-O3 -DL_ENDIAN::(unknown):::::::", |
| @@ -534,8 +543,8 @@ my %table=( | |||
| 534 | 543 | ||
| 535 | ##### MacOS X (a.k.a. Rhapsody or Darwin) setup | 544 | ##### MacOS X (a.k.a. Rhapsody or Darwin) setup |
| 536 | "rhapsody-ppc-cc","cc:-O3 -DB_ENDIAN::(unknown):MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:::", | 545 | "rhapsody-ppc-cc","cc:-O3 -DB_ENDIAN::(unknown):MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:::", |
| 537 | "darwin-ppc-cc","cc:-O3 -nostdinc -I/System/Library/Frameworks/System.framework/Headers -I/System/Library/Frameworks/System.frameworks/Headers/bsd -I/usr/include -fomit-frame-pointer -Wall -DB_ENDIAN::(unknown):MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:::::::::::darwin-shared:-fPIC::.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", | 546 | "darwin-ppc-cc","cc:-O3 -fomit-frame-pointer -fno-common -DB_ENDIAN::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:::::::::::darwin-shared:-fPIC::.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", |
| 538 | "darwin-i386-cc","cc:-O3 -nostdinc -I/System/Library/Frameworks/System.framework/Headers -I/System/Library/Frameworks/System.frameworks/Headers/bsd -I/usr/include -fomit-frame-pointer -Wall -DB_ENDIAN::(unknown):MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:::::::::::darwin-shared:-fPIC::.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", | 547 | "darwin-i386-cc","cc:-O3 -fomit-frame-pointer -fno-common -DB_ENDIAN::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:::::::::::darwin-shared:-fPIC::.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib", |
| 539 | 548 | ||
| 540 | ##### Sony NEWS-OS 4.x | 549 | ##### Sony NEWS-OS 4.x |
| 541 | "newsos4-gcc","gcc:-O -DB_ENDIAN::(unknown):NEWS4:-lmld -liberty:BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::", | 550 | "newsos4-gcc","gcc:-O -DB_ENDIAN::(unknown):NEWS4:-lmld -liberty:BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_RISC1 DES_UNROLL BF_PTR::::", |
| @@ -637,6 +646,7 @@ my $libs; | |||
| 637 | my $target; | 646 | my $target; |
| 638 | my $options; | 647 | my $options; |
| 639 | my $symlink; | 648 | my $symlink; |
| 649 | my $make_depend=0; | ||
| 640 | my %withargs=(); | 650 | my %withargs=(); |
| 641 | 651 | ||
| 642 | my @argvcopy=@ARGV; | 652 | my @argvcopy=@ARGV; |
| @@ -894,6 +904,7 @@ print "Configuring for $target\n"; | |||
| 894 | my $IsWindows=scalar grep /^$target$/,@WinTargets; | 904 | my $IsWindows=scalar grep /^$target$/,@WinTargets; |
| 895 | 905 | ||
| 896 | $exe_ext=".exe" if ($target eq "Cygwin"); | 906 | $exe_ext=".exe" if ($target eq "Cygwin"); |
| 907 | $exe_ext=".exe" if ($target eq "DJGPP"); | ||
| 897 | $openssldir="/usr/local/ssl" if ($openssldir eq "" and $prefix eq ""); | 908 | $openssldir="/usr/local/ssl" if ($openssldir eq "" and $prefix eq ""); |
| 898 | $prefix=$openssldir if $prefix eq ""; | 909 | $prefix=$openssldir if $prefix eq ""; |
| 899 | 910 | ||
| @@ -901,7 +912,7 @@ chop $openssldir if $openssldir =~ /\/$/; | |||
| 901 | chop $prefix if $prefix =~ /\/$/; | 912 | chop $prefix if $prefix =~ /\/$/; |
| 902 | 913 | ||
| 903 | $openssldir=$prefix . "/ssl" if $openssldir eq ""; | 914 | $openssldir=$prefix . "/ssl" if $openssldir eq ""; |
| 904 | $openssldir=$prefix . "/" . $openssldir if $openssldir !~ /^\//; | 915 | $openssldir=$prefix . "/" . $openssldir if $openssldir !~ /(^\/|^[a-zA-Z]:[\\\/])/; |
| 905 | 916 | ||
| 906 | 917 | ||
| 907 | print "IsWindows=$IsWindows\n"; | 918 | print "IsWindows=$IsWindows\n"; |
| @@ -1151,7 +1162,8 @@ if ($shlib_version_number =~ /(^[0-9]*)\.([0-9\.]*)/) | |||
| 1151 | } | 1162 | } |
| 1152 | 1163 | ||
| 1153 | open(IN,'<Makefile.org') || die "unable to read Makefile.org:$!\n"; | 1164 | open(IN,'<Makefile.org') || die "unable to read Makefile.org:$!\n"; |
| 1154 | open(OUT,">$Makefile") || die "unable to create $Makefile:$!\n"; | 1165 | unlink("$Makefile.new") || die "unable to remove old $Makefile.new:$!\n" if -e "$Makefile.new"; |
| 1166 | open(OUT,">$Makefile.new") || die "unable to create $Makefile.new:$!\n"; | ||
| 1155 | print OUT "### Generated automatically from Makefile.org by Configure.\n\n"; | 1167 | print OUT "### Generated automatically from Makefile.org by Configure.\n\n"; |
| 1156 | my $sdirs=0; | 1168 | my $sdirs=0; |
| 1157 | while (<IN>) | 1169 | while (<IN>) |
| @@ -1225,6 +1237,8 @@ while (<IN>) | |||
| 1225 | } | 1237 | } |
| 1226 | close(IN); | 1238 | close(IN); |
| 1227 | close(OUT); | 1239 | close(OUT); |
| 1240 | rename($Makefile,"$Makefile.bak") || die "unable to rename $Makefile\n" if -e $Makefile; | ||
| 1241 | rename("$Makefile.new",$Makefile) || die "unable to rename $Makefile.new\n"; | ||
| 1228 | 1242 | ||
| 1229 | print "CC =$cc\n"; | 1243 | print "CC =$cc\n"; |
| 1230 | print "CFLAG =$cflags\n"; | 1244 | print "CFLAG =$cflags\n"; |
| @@ -1295,7 +1309,8 @@ foreach (sort split(/\s+/,$bn_ops)) | |||
| 1295 | } | 1309 | } |
| 1296 | 1310 | ||
| 1297 | open(IN,'<crypto/opensslconf.h.in') || die "unable to read crypto/opensslconf.h.in:$!\n"; | 1311 | open(IN,'<crypto/opensslconf.h.in') || die "unable to read crypto/opensslconf.h.in:$!\n"; |
| 1298 | open(OUT,'>crypto/opensslconf.h') || die "unable to create crypto/opensslconf.h:$!\n"; | 1312 | unlink("crypto/opensslconf.h.new") || die "unable to remove old crypto/opensslconf.h.new:$!\n" if -e "crypto/opensslconf.h.new"; |
| 1313 | open(OUT,'>crypto/opensslconf.h.new') || die "unable to create crypto/opensslconf.h.new:$!\n"; | ||
| 1299 | print OUT "/* opensslconf.h */\n"; | 1314 | print OUT "/* opensslconf.h */\n"; |
| 1300 | print OUT "/* WARNING: Generated automatically from opensslconf.h.in by Configure. */\n\n"; | 1315 | print OUT "/* WARNING: Generated automatically from opensslconf.h.in by Configure. */\n\n"; |
| 1301 | 1316 | ||
| @@ -1389,6 +1404,8 @@ while (<IN>) | |||
| 1389 | } | 1404 | } |
| 1390 | close(IN); | 1405 | close(IN); |
| 1391 | close(OUT); | 1406 | close(OUT); |
| 1407 | rename("crypto/opensslconf.h","crypto/opensslconf.h.bak") || die "unable to rename crypto/opensslconf.h\n" if -e "crypto/opensslconf.h"; | ||
| 1408 | rename("crypto/opensslconf.h.new","crypto/opensslconf.h") || die "unable to rename crypto/opensslconf.h.new\n"; | ||
| 1392 | 1409 | ||
| 1393 | 1410 | ||
| 1394 | # Fix the date | 1411 | # Fix the date |
| @@ -1428,11 +1445,13 @@ if($IsWindows) { | |||
| 1428 | EOF | 1445 | EOF |
| 1429 | close(OUT); | 1446 | close(OUT); |
| 1430 | } else { | 1447 | } else { |
| 1431 | (system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $? | 1448 | my $make_command = "make -f Makefile.ssl PERL=\'$perl\'"; |
| 1432 | if $symlink; | 1449 | my $make_targets = ""; |
| 1433 | ### (system 'make depend') == 0 or exit $? if $depflags ne ""; | 1450 | $make_targets .= " links" if $symlink; |
| 1434 | # Run "make depend" manually if you want to be able to delete | 1451 | $make_targets .= " depend" if $depflags ne "" && $make_depend; |
| 1435 | # the source code files of ciphers you left out. | 1452 | $make_targets .= " gentests" if $symlink; |
| 1453 | (system $make_command.$make_targets) == 0 or exit $? | ||
| 1454 | if $make_targets ne ""; | ||
| 1436 | if ( $perl =~ m@^/@) { | 1455 | if ( $perl =~ m@^/@) { |
| 1437 | &dofile("tools/c_rehash",$perl,'^#!/', '#!%s','^my \$dir;$', 'my $dir = "' . $openssldir . '";'); | 1456 | &dofile("tools/c_rehash",$perl,'^#!/', '#!%s','^my \$dir;$', 'my $dir = "' . $openssldir . '";'); |
| 1438 | &dofile("apps/der_chop",$perl,'^#!/', '#!%s'); | 1457 | &dofile("apps/der_chop",$perl,'^#!/', '#!%s'); |
| @@ -1442,7 +1461,16 @@ EOF | |||
| 1442 | &dofile("tools/c_rehash",'/usr/local/bin/perl','^#!/', '#!%s','^my \$dir;$', 'my $dir = "' . $openssldir . '";'); | 1461 | &dofile("tools/c_rehash",'/usr/local/bin/perl','^#!/', '#!%s','^my \$dir;$', 'my $dir = "' . $openssldir . '";'); |
| 1443 | &dofile("apps/der_chop",'/usr/local/bin/perl','^#!/', '#!%s'); | 1462 | &dofile("apps/der_chop",'/usr/local/bin/perl','^#!/', '#!%s'); |
| 1444 | &dofile("apps/CA.pl",'/usr/local/bin/perl','^#!/', '#!%s'); | 1463 | &dofile("apps/CA.pl",'/usr/local/bin/perl','^#!/', '#!%s'); |
| 1445 | } | 1464 | } |
| 1465 | if ($depflags ne "" && !$make_depend) { | ||
| 1466 | print <<EOF; | ||
| 1467 | |||
| 1468 | Since you've disabled at least one algorithm, you need to do the following | ||
| 1469 | before building: | ||
| 1470 | |||
| 1471 | make depend | ||
| 1472 | EOF | ||
| 1473 | } | ||
| 1446 | } | 1474 | } |
| 1447 | 1475 | ||
| 1448 | print <<EOF; | 1476 | print <<EOF; |
diff --git a/src/lib/libssl/src/FAQ b/src/lib/libssl/src/FAQ index bea8fcfde0..ee03d97676 100644 --- a/src/lib/libssl/src/FAQ +++ b/src/lib/libssl/src/FAQ | |||
| @@ -39,6 +39,9 @@ OpenSSL - Frequently Asked Questions | |||
| 39 | * Why does the OpenSSL compilation fail on Alpha Tru64 Unix? | 39 | * Why does the OpenSSL compilation fail on Alpha Tru64 Unix? |
| 40 | * Why does the OpenSSL compilation fail with "ar: command not found"? | 40 | * Why does the OpenSSL compilation fail with "ar: command not found"? |
| 41 | * Why does the OpenSSL compilation fail on Win32 with VC++? | 41 | * Why does the OpenSSL compilation fail on Win32 with VC++? |
| 42 | * What is special about OpenSSL on Redhat? | ||
| 43 | * Why does the OpenSSL compilation fail on MacOS X? | ||
| 44 | * Why does the OpenSSL test suite fail on MacOS X? | ||
| 42 | 45 | ||
| 43 | [PROG] Questions about programming with OpenSSL | 46 | [PROG] Questions about programming with OpenSSL |
| 44 | 47 | ||
| @@ -52,6 +55,7 @@ OpenSSL - Frequently Asked Questions | |||
| 52 | * Why can't the OpenSSH configure script detect OpenSSL? | 55 | * Why can't the OpenSSH configure script detect OpenSSL? |
| 53 | * Can I use OpenSSL's SSL library with non-blocking I/O? | 56 | * Can I use OpenSSL's SSL library with non-blocking I/O? |
| 54 | * Why doesn't my server application receive a client certificate? | 57 | * Why doesn't my server application receive a client certificate? |
| 58 | * Why does compilation fail due to an undefined symbol NID_uniqueIdentifier? | ||
| 55 | 59 | ||
| 56 | =============================================================================== | 60 | =============================================================================== |
| 57 | 61 | ||
| @@ -60,7 +64,7 @@ OpenSSL - Frequently Asked Questions | |||
| 60 | * Which is the current version of OpenSSL? | 64 | * Which is the current version of OpenSSL? |
| 61 | 65 | ||
| 62 | The current version is available from <URL: http://www.openssl.org>. | 66 | The current version is available from <URL: http://www.openssl.org>. |
| 63 | OpenSSL 0.9.6d was released on May 9, 2002. | 67 | OpenSSL 0.9.6e was released on July 30, 2002. |
| 64 | 68 | ||
| 65 | In addition to the current stable release, you can also access daily | 69 | In addition to the current stable release, you can also access daily |
| 66 | snapshots of the OpenSSL development version at <URL: | 70 | snapshots of the OpenSSL development version at <URL: |
| @@ -216,8 +220,11 @@ For Solaris 2.6, Tim Nibbe <tnibbe@sprint.net> and others have suggested | |||
| 216 | installing the SUNski package from Sun patch 105710-01 (Sparc) which | 220 | installing the SUNski package from Sun patch 105710-01 (Sparc) which |
| 217 | adds a /dev/random device and make sure it gets used, usually through | 221 | adds a /dev/random device and make sure it gets used, usually through |
| 218 | $RANDFILE. There are probably similar patches for the other Solaris | 222 | $RANDFILE. There are probably similar patches for the other Solaris |
| 219 | versions. However, be warned that /dev/random is usually a blocking | 223 | versions. An official statement from Sun with respect to /dev/random |
| 220 | device, which may have some effects on OpenSSL. | 224 | support can be found at |
| 225 | http://sunsolve.sun.com/pub-cgi/retrieve.pl?doc=fsrdb/27606&zone_32=SUNWski | ||
| 226 | However, be warned that /dev/random is usually a blocking device, which | ||
| 227 | may have some effects on OpenSSL. | ||
| 221 | 228 | ||
| 222 | 229 | ||
| 223 | * Why do I get an "unable to write 'random state'" error message? | 230 | * Why do I get an "unable to write 'random state'" error message? |
| @@ -459,6 +466,64 @@ under 'Program Files'). This needs to be done prior to running NMAKE, | |||
| 459 | and the changes are only valid for the current DOS session. | 466 | and the changes are only valid for the current DOS session. |
| 460 | 467 | ||
| 461 | 468 | ||
| 469 | * What is special about OpenSSL on Redhat? | ||
| 470 | |||
| 471 | Red Hat Linux (release 7.0 and later) include a preinstalled limited | ||
| 472 | version of OpenSSL. For patent reasons, support for IDEA, RC5 and MDC2 | ||
| 473 | is disabled in this version. The same may apply to other Linux distributions. | ||
| 474 | Users may therefore wish to install more or all of the features left out. | ||
| 475 | |||
| 476 | To do this you MUST ensure that you do not overwrite the openssl that is in | ||
| 477 | /usr/bin on your Red Hat machine. Several packages depend on this file, | ||
| 478 | including sendmail and ssh. /usr/local/bin is a good alternative choice. The | ||
| 479 | libraries that come with Red Hat 7.0 onwards have different names and so are | ||
| 480 | not affected. (eg For Red Hat 7.2 they are /lib/libssl.so.0.9.6b and | ||
| 481 | /lib/libcrypto.so.0.9.6b with symlinks /lib/libssl.so.2 and | ||
| 482 | /lib/libcrypto.so.2 respectively). | ||
| 483 | |||
| 484 | Please note that we have been advised by Red Hat attempting to recompile the | ||
| 485 | openssl rpm with all the cryptography enabled will not work. All other | ||
| 486 | packages depend on the original Red Hat supplied openssl package. It is also | ||
| 487 | worth noting that due to the way Red Hat supplies its packages, updates to | ||
| 488 | openssl on each distribution never change the package version, only the | ||
| 489 | build number. For example, on Red Hat 7.1, the latest openssl package has | ||
| 490 | version number 0.9.6 and build number 9 even though it contains all the | ||
| 491 | relevant updates in packages up to and including 0.9.6b. | ||
| 492 | |||
| 493 | A possible way around this is to persuade Red Hat to produce a non-US | ||
| 494 | version of Red Hat Linux. | ||
| 495 | |||
| 496 | FYI: Patent numbers and expiry dates of US patents: | ||
| 497 | MDC-2: 4,908,861 13/03/2007 | ||
| 498 | IDEA: 5,214,703 25/05/2010 | ||
| 499 | RC5: 5,724,428 03/03/2015 | ||
| 500 | |||
| 501 | |||
| 502 | * Why does the OpenSSL compilation fail on MacOS X? | ||
| 503 | |||
| 504 | If the failure happens when trying to build the "openssl" binary, with | ||
| 505 | a large number of undefined symbols, it's very probable that you have | ||
| 506 | OpenSSL 0.9.6b delivered with the operating system (you can find out by | ||
| 507 | running '/usr/bin/openssl version') and that you were trying to build | ||
| 508 | OpenSSL 0.9.7 or newer. The problem is that the loader ('ld') in | ||
| 509 | MacOS X has a misfeature that's quite difficult to go around. | ||
| 510 | Look in the file PROBLEMS for a more detailed explanation and for possible | ||
| 511 | solutions. | ||
| 512 | |||
| 513 | |||
| 514 | * Why does the OpenSSL test suite fail on MacOS X? | ||
| 515 | |||
| 516 | If the failure happens when running 'make test' and the RC4 test fails, | ||
| 517 | it's very probable that you have OpenSSL 0.9.6b delivered with the | ||
| 518 | operating system (you can find out by running '/usr/bin/openssl version') | ||
| 519 | and that you were trying to build OpenSSL 0.9.6d. The problem is that | ||
| 520 | the loader ('ld') in MacOS X has a misfeature that's quite difficult to | ||
| 521 | go around and has linked the programs "openssl" and the test programs | ||
| 522 | with /usr/lib/libcrypto.dylib and /usr/lib/libssl.dylib instead of the | ||
| 523 | libraries you just built. | ||
| 524 | Look in the file PROBLEMS for a more detailed explanation and for possible | ||
| 525 | solutions. | ||
| 526 | |||
| 462 | [PROG] ======================================================================== | 527 | [PROG] ======================================================================== |
| 463 | 528 | ||
| 464 | * Is OpenSSL thread-safe? | 529 | * Is OpenSSL thread-safe? |
| @@ -624,5 +689,13 @@ if explicitly asked by the server. Use the SSL_VERIFY_PEER flag of the | |||
| 624 | SSL_CTX_set_verify() function to enable the use of client certificates. | 689 | SSL_CTX_set_verify() function to enable the use of client certificates. |
| 625 | 690 | ||
| 626 | 691 | ||
| 692 | * Why does compilation fail due to an undefined symbol NID_uniqueIdentifier? | ||
| 693 | |||
| 694 | For OpenSSL 0.9.7 the OID table was extended and corrected. In earlier | ||
| 695 | versions, uniqueIdentifier was incorrectly used for X.509 certificates. | ||
| 696 | The correct name according to RFC2256 (LDAP) is x500UniqueIdentifier. | ||
| 697 | Change your code to use the new name when compiling against OpenSSL 0.9.7. | ||
| 698 | |||
| 699 | |||
| 627 | =============================================================================== | 700 | =============================================================================== |
| 628 | 701 | ||
diff --git a/src/lib/libssl/src/INSTALL b/src/lib/libssl/src/INSTALL index 7eaa8147c3..af86485e00 100644 --- a/src/lib/libssl/src/INSTALL +++ b/src/lib/libssl/src/INSTALL | |||
| @@ -2,8 +2,10 @@ | |||
| 2 | INSTALLATION ON THE UNIX PLATFORM | 2 | INSTALLATION ON THE UNIX PLATFORM |
| 3 | --------------------------------- | 3 | --------------------------------- |
| 4 | 4 | ||
| 5 | [Installation on Windows, OpenVMS and MacOS (before MacOS X) is described | 5 | [Installation on DOS (with djgpp), Windows, OpenVMS and MacOS (before MacOS X) |
| 6 | in INSTALL.W32, INSTALL.VMS and INSTALL.MacOS.] | 6 | is described in INSTALL.DJGPP, INSTALL.W32, INSTALL.VMS and INSTALL.MacOS. |
| 7 | This document describes installation on operating systems in the Unix | ||
| 8 | family.] | ||
| 7 | 9 | ||
| 8 | To install OpenSSL, you will need: | 10 | To install OpenSSL, you will need: |
| 9 | 11 | ||
| @@ -137,8 +139,11 @@ | |||
| 137 | the failure that aren't problems in OpenSSL itself (like missing | 139 | the failure that aren't problems in OpenSSL itself (like missing |
| 138 | standard headers). If it is a problem with OpenSSL itself, please | 140 | standard headers). If it is a problem with OpenSSL itself, please |
| 139 | report the problem to <openssl-bugs@openssl.org> (note that your | 141 | report the problem to <openssl-bugs@openssl.org> (note that your |
| 140 | message will be forwarded to a public mailing list). Include the | 142 | message will be recorded in the request tracker publicly readable |
| 141 | output of "make report" in your message. | 143 | via http://www.openssl.org/rt2.html and will be forwarded to a public |
| 144 | mailing list). Include the output of "make report" in your message. | ||
| 145 | Please check out the request tracker. Maybe the bug was already | ||
| 146 | reported or has already been fixed. | ||
| 142 | 147 | ||
| 143 | [If you encounter assembler error messages, try the "no-asm" | 148 | [If you encounter assembler error messages, try the "no-asm" |
| 144 | configuration option as an immediate fix.] | 149 | configuration option as an immediate fix.] |
| @@ -156,7 +161,8 @@ | |||
| 156 | try removing any compiler optimization flags from the CFLAGS line | 161 | try removing any compiler optimization flags from the CFLAGS line |
| 157 | in Makefile.ssl and run "make clean; make". Please send a bug | 162 | in Makefile.ssl and run "make clean; make". Please send a bug |
| 158 | report to <openssl-bugs@openssl.org>, including the output of | 163 | report to <openssl-bugs@openssl.org>, including the output of |
| 159 | "make report". | 164 | "make report" in order to be added to the request tracker at |
| 165 | http://www.openssl.org/rt2.html. | ||
| 160 | 166 | ||
| 161 | 4. If everything tests ok, install OpenSSL with | 167 | 4. If everything tests ok, install OpenSSL with |
| 162 | 168 | ||
diff --git a/src/lib/libssl/src/INSTALL.OS2 b/src/lib/libssl/src/INSTALL.OS2 index d4cc0e319b..530316db18 100644 --- a/src/lib/libssl/src/INSTALL.OS2 +++ b/src/lib/libssl/src/INSTALL.OS2 | |||
| @@ -20,3 +20,12 @@ | |||
| 20 | 20 | ||
| 21 | If that finishes successfully you will find the libraries and programs in the | 21 | If that finishes successfully you will find the libraries and programs in the |
| 22 | "out" directory. | 22 | "out" directory. |
| 23 | |||
| 24 | Alternatively, you can make a dynamic build that puts the library code into | ||
| 25 | crypto.dll and ssl.dll by running | ||
| 26 | |||
| 27 | > make -f os2-emx-dll.mak | ||
| 28 | |||
| 29 | This will build the above mentioned dlls and a matching pair of import | ||
| 30 | libraries in the "out_dll" directory along with the set of test programs | ||
| 31 | and the openssl application. | ||
diff --git a/src/lib/libssl/src/INSTALL.W32 b/src/lib/libssl/src/INSTALL.W32 index d85d81b0fd..3de6544fc5 100644 --- a/src/lib/libssl/src/INSTALL.W32 +++ b/src/lib/libssl/src/INSTALL.W32 | |||
| @@ -94,6 +94,18 @@ | |||
| 94 | You can also build a static version of the library using the Makefile | 94 | You can also build a static version of the library using the Makefile |
| 95 | ms\nt.mak | 95 | ms\nt.mak |
| 96 | 96 | ||
| 97 | Borland C++ builder 5 | ||
| 98 | --------------------- | ||
| 99 | |||
| 100 | * Configure for building with Borland Builder: | ||
| 101 | > perl Configure BC-32 | ||
| 102 | |||
| 103 | * Create the appropriate makefile | ||
| 104 | > ms\do_nasm | ||
| 105 | |||
| 106 | * Build | ||
| 107 | > make -f ms\bcb.mak | ||
| 108 | |||
| 97 | Borland C++ builder 3 and 4 | 109 | Borland C++ builder 3 and 4 |
| 98 | --------------------------- | 110 | --------------------------- |
| 99 | 111 | ||
| @@ -140,17 +152,17 @@ | |||
| 140 | GNU C (Cygwin) | 152 | GNU C (Cygwin) |
| 141 | -------------- | 153 | -------------- |
| 142 | 154 | ||
| 143 | Cygwin provides a bash shell and GNU tools environment running on | 155 | Cygwin provides a bash shell and GNU tools environment running |
| 144 | NT 4.0, Windows 9x and Windows 2000. Consequently, a make of OpenSSL | 156 | on NT 4.0, Windows 9x, Windows ME, Windows 2000, and Windows XP. |
| 145 | with Cygwin is closer to a GNU bash environment such as Linux rather | 157 | Consequently, a make of OpenSSL with Cygwin is closer to a GNU |
| 146 | than other W32 makes that are based on a single makefile approach. | 158 | bash environment such as Linux than to other W32 makes which are |
| 147 | Cygwin implements Posix/Unix calls through cygwin1.dll, and is | 159 | based on a single makefile approach. Cygwin implements Posix/Unix |
| 148 | contrasted to Mingw32 which links dynamically to msvcrt.dll or | 160 | calls through cygwin1.dll, and is contrasted to Mingw32 which links |
| 149 | crtdll.dll. | 161 | dynamically to msvcrt.dll or crtdll.dll. |
| 150 | 162 | ||
| 151 | To build OpenSSL using Cygwin: | 163 | To build OpenSSL using Cygwin: |
| 152 | 164 | ||
| 153 | * Install Cygwin (see http://sourceware.cygnus.com/cygwin) | 165 | * Install Cygwin (see http://cygwin.com/) |
| 154 | 166 | ||
| 155 | * Install Perl and ensure it is in the path (recent Cygwin perl | 167 | * Install Perl and ensure it is in the path (recent Cygwin perl |
| 156 | (version 5.6.1-2 of the latter has been reported to work) or | 168 | (version 5.6.1-2 of the latter has been reported to work) or |
| @@ -176,13 +188,9 @@ | |||
| 176 | stripping of carriage returns. To avoid this ensure that a binary | 188 | stripping of carriage returns. To avoid this ensure that a binary |
| 177 | mount is used, e.g. mount -b c:\somewhere /home. | 189 | mount is used, e.g. mount -b c:\somewhere /home. |
| 178 | 190 | ||
| 179 | As of version 1.1.1 Cygwin is relatively unstable in its handling | 191 | "bc" is not provided in older Cygwin distribution. This causes a |
| 180 | of cr/lf issues. These make procedures succeeded with versions 1.1 and | ||
| 181 | the snapshot 20000524 (Slow!). | ||
| 182 | |||
| 183 | "bc" is not provided in the Cygwin distribution. This causes a | ||
| 184 | non-fatal error in "make test" but is otherwise harmless. If | 192 | non-fatal error in "make test" but is otherwise harmless. If |
| 185 | desired, GNU bc can be built with Cygwin without change. | 193 | desired and needed, GNU bc can be built with Cygwin without change. |
| 186 | 194 | ||
| 187 | 195 | ||
| 188 | Installation | 196 | Installation |
diff --git a/src/lib/libssl/src/Makefile.org b/src/lib/libssl/src/Makefile.org index 71c196b1e6..8808dd7922 100644 --- a/src/lib/libssl/src/Makefile.org +++ b/src/lib/libssl/src/Makefile.org | |||
| @@ -435,6 +435,7 @@ do_hpux-shared: | |||
| 435 | -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | 435 | -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
| 436 | +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | 436 | +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
| 437 | -Fl lib$$i.a -ldld -lc ) || exit 1; \ | 437 | -Fl lib$$i.a -ldld -lc ) || exit 1; \ |
| 438 | chmod a=rx lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR}; \ | ||
| 438 | done | 439 | done |
| 439 | 440 | ||
| 440 | # This assumes that GNU utilities are *not* used | 441 | # This assumes that GNU utilities are *not* used |
| @@ -453,6 +454,7 @@ do_hpux64-shared: | |||
| 453 | -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | 454 | -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
| 454 | +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ | 455 | +h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
| 455 | +forceload lib$$i.a -ldl -lc ) || exit 1; \ | 456 | +forceload lib$$i.a -ldl -lc ) || exit 1; \ |
| 457 | chmod a=rx lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR}; \ | ||
| 456 | done | 458 | done |
| 457 | 459 | ||
| 458 | # The following method is said to work on all platforms. Tests will | 460 | # The following method is said to work on all platforms. Tests will |
| @@ -552,7 +554,7 @@ files: | |||
| 552 | done; | 554 | done; |
| 553 | 555 | ||
| 554 | links: | 556 | links: |
| 555 | @${SHELL} $(TOP)/util/point.sh Makefile.ssl Makefile | 557 | @$(TOP)/util/point.sh Makefile.ssl Makefile |
| 556 | @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl | 558 | @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl |
| 557 | @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER) | 559 | @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER) |
| 558 | @for i in $(DIRS); do \ | 560 | @for i in $(DIRS); do \ |
| @@ -562,6 +564,10 @@ links: | |||
| 562 | fi; \ | 564 | fi; \ |
| 563 | done; | 565 | done; |
| 564 | 566 | ||
| 567 | gentests: | ||
| 568 | @(cd test && echo "generating dummy tests (if needed)..." && \ | ||
| 569 | $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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 ); | ||
| 570 | |||
| 565 | dclean: | 571 | dclean: |
| 566 | rm -f *.bak | 572 | rm -f *.bak |
| 567 | @for i in $(DIRS) ;\ | 573 | @for i in $(DIRS) ;\ |
| @@ -576,8 +582,8 @@ rehash: rehash.time | |||
| 576 | rehash.time: certs | 582 | rehash.time: certs |
| 577 | @(OPENSSL="`pwd`/apps/openssl"; OPENSSL_DEBUG_MEMORY=on; \ | 583 | @(OPENSSL="`pwd`/apps/openssl"; OPENSSL_DEBUG_MEMORY=on; \ |
| 578 | export OPENSSL OPENSSL_DEBUG_MEMORY; \ | 584 | export OPENSSL OPENSSL_DEBUG_MEMORY; \ |
| 579 | LD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \ | 585 | LD_LIBRARY_PATH="`pwd`"; DYLD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \ |
| 580 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | 586 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ |
| 581 | $(PERL) tools/c_rehash certs) | 587 | $(PERL) tools/c_rehash certs) |
| 582 | touch rehash.time | 588 | touch rehash.time |
| 583 | 589 | ||
| @@ -585,9 +591,9 @@ test: tests | |||
| 585 | 591 | ||
| 586 | tests: rehash | 592 | tests: rehash |
| 587 | @(cd test && echo "testing..." && \ | 593 | @(cd test && echo "testing..." && \ |
| 588 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' BN_ASM='${BN_ASM}' DES_ENC='${DES_ENC}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SDIRS='${SDIRS}' SHA1_ASM_OBJ='${SHA1_ASM_OBJ}' MD5_ASM_OBJ='${MD5_ASM_OBJ}' RMD160_ASM_OBJ='${RMD160_ASM_OBJ}' AR='${AR}' PERL='${PERL}' TESTS='${TESTS}' KRB5_INCLUDES='${KRB5_INCLUDES}' LIBKRB5='${LIBKRB5}' EXE_EXT='${EXE_EXT}' OPENSSL_DEBUG_MEMORY=on tests ); | 594 | $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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 ); |
| 589 | @LD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \ | 595 | @LD_LIBRARY_PATH="`pwd`"; DYLD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; LIBPATH="`pwd`"; \ |
| 590 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | 596 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ |
| 591 | apps/openssl version -a | 597 | apps/openssl version -a |
| 592 | 598 | ||
| 593 | report: | 599 | report: |
| @@ -598,7 +604,7 @@ depend: | |||
| 598 | do \ | 604 | do \ |
| 599 | if [ -d "$$i" ]; then \ | 605 | if [ -d "$$i" ]; then \ |
| 600 | (cd $$i && echo "making dependencies $$i..." && \ | 606 | (cd $$i && echo "making dependencies $$i..." && \ |
| 601 | $(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' depend ) || exit 1; \ | 607 | $(MAKE) SDIRS='${SDIRS}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' MAKEDEPPROG='${MAKEDEPPROG}' KRB5_INCLUDES='${KRB5_INCLUDES}' PERL='${PERL}' depend ) || exit 1; \ |
| 602 | fi; \ | 608 | fi; \ |
| 603 | done; | 609 | done; |
| 604 | 610 | ||
| @@ -644,13 +650,19 @@ TABLE: Configure | |||
| 644 | 650 | ||
| 645 | update: depend errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h TABLE | 651 | update: depend errors stacks util/libeay.num util/ssleay.num crypto/objects/obj_dat.h TABLE |
| 646 | 652 | ||
| 653 | # Build distribution tar-file. As the list of files returned by "find" is | ||
| 654 | # pretty long, on several platforms a "too many arguments" error or similar | ||
| 655 | # would occur. Therefore the list of files is temporarily stored into a file | ||
| 656 | # and read directly, requiring GNU-Tar. Call "make TAR=gtar dist" if the normal | ||
| 657 | # tar does not support the --files-from option. | ||
| 647 | tar: | 658 | tar: |
| 648 | @$(TAR) $(TARFLAGS) -cvf - \ | 659 | find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort > ../$(TARFILE).list; \ |
| 649 | `find * \! -path CVS/\* \! -path \*/CVS/\* \! -name CVS \! -name .cvsignore \! -name STATUS \! -name TABLE | sort` |\ | 660 | $(TAR) $(TARFLAGS) --files-from ../$(TARFILE).list -cvf - | \ |
| 650 | tardy --user_number=0 --user_name=openssl \ | 661 | tardy --user_number=0 --user_name=openssl \ |
| 651 | --group_number=0 --group_name=openssl \ | 662 | --group_number=0 --group_name=openssl \ |
| 652 | --prefix=openssl-$(VERSION) - |\ | 663 | --prefix=openssl-$(VERSION) - |\ |
| 653 | gzip --best >../$(TARFILE).gz; \ | 664 | gzip --best >../$(TARFILE).gz; \ |
| 665 | rm -f ../$(TARFILE).list; \ | ||
| 654 | ls -l ../$(TARFILE).gz | 666 | ls -l ../$(TARFILE).gz |
| 655 | 667 | ||
| 656 | tar-snap: | 668 | tar-snap: |
| @@ -665,7 +677,7 @@ dist: | |||
| 665 | $(PERL) Configure dist | 677 | $(PERL) Configure dist |
| 666 | @$(MAKE) dist_pem_h | 678 | @$(MAKE) dist_pem_h |
| 667 | @$(MAKE) SDIRS='${SDIRS}' clean | 679 | @$(MAKE) SDIRS='${SDIRS}' clean |
| 668 | @$(MAKE) tar | 680 | @$(MAKE) TAR='${TAR}' TARFLAGS='${TARFLAGS}' tar |
| 669 | 681 | ||
| 670 | dist_pem_h: | 682 | dist_pem_h: |
| 671 | (cd crypto/pem; $(MAKE) CC='${CC}' SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean) | 683 | (cd crypto/pem; $(MAKE) CC='${CC}' SDIRS='${SDIRS}' CFLAG='${CFLAG}' pem.h; $(MAKE) clean) |
| @@ -707,7 +719,7 @@ install: all install_docs | |||
| 707 | ( echo installing $$i; \ | 719 | ( echo installing $$i; \ |
| 708 | if [ "$(PLATFORM)" != "Cygwin" ]; then \ | 720 | if [ "$(PLATFORM)" != "Cygwin" ]; then \ |
| 709 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ | 721 | cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/lib; \ |
| 710 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ | 722 | chmod 555 $(INSTALL_PREFIX)$(INSTALLTOP)/lib/$$i; \ |
| 711 | else \ | 723 | else \ |
| 712 | c=`echo $$i | sed 's/^lib/cyg/'`; \ | 724 | c=`echo $$i | sed 's/^lib/cyg/'`; \ |
| 713 | cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \ | 725 | cp $$c $(INSTALL_PREFIX)$(INSTALLTOP)/bin/$$c; \ |
| @@ -732,8 +744,8 @@ install_docs: | |||
| 732 | fn=`basename $$i .pod`; \ | 744 | fn=`basename $$i .pod`; \ |
| 733 | if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \ | 745 | if [ "$$fn" = "config" ]; then sec=5; else sec=1; fi; \ |
| 734 | echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ | 746 | echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ |
| 735 | (cd `dirname $$i`; \ | 747 | (cd `$(PERL) util/dirname.pl $$i`; \ |
| 736 | sh -c "`cd ../../util; ./pod2mantest ignore` \ | 748 | sh -c "$(PERL) `cd ../../util; ./pod2mantest ignore` \ |
| 737 | --section=$$sec --center=OpenSSL \ | 749 | --section=$$sec --center=OpenSSL \ |
| 738 | --release=$(VERSION) `basename $$i`") \ | 750 | --release=$(VERSION) `basename $$i`") \ |
| 739 | > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \ | 751 | > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \ |
| @@ -742,8 +754,8 @@ install_docs: | |||
| 742 | fn=`basename $$i .pod`; \ | 754 | fn=`basename $$i .pod`; \ |
| 743 | if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \ | 755 | if [ "$$fn" = "des_modes" ]; then sec=7; else sec=3; fi; \ |
| 744 | echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ | 756 | echo "installing man$$sec/`basename $$i .pod`.$$sec"; \ |
| 745 | (cd `dirname $$i`; \ | 757 | (cd `$(PERL) util/dirname.pl $$i`; \ |
| 746 | sh -c "`cd ../../util; ./pod2mantest ignore` \ | 758 | sh -c "$(PERL) `cd ../../util; ./pod2mantest ignore` \ |
| 747 | --section=$$sec --center=OpenSSL \ | 759 | --section=$$sec --center=OpenSSL \ |
| 748 | --release=$(VERSION) `basename $$i`") \ | 760 | --release=$(VERSION) `basename $$i`") \ |
| 749 | > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \ | 761 | > $(INSTALL_PREFIX)$(MANDIR)/man$$sec/`basename $$i .pod`.$$sec; \ |
diff --git a/src/lib/libssl/src/NEWS b/src/lib/libssl/src/NEWS index aecd87ecfb..9531ba9c6e 100644 --- a/src/lib/libssl/src/NEWS +++ b/src/lib/libssl/src/NEWS | |||
| @@ -21,9 +21,8 @@ | |||
| 21 | against libdes providing similar functions having the same name). | 21 | against libdes providing similar functions having the same name). |
| 22 | Provide macros for backward compatibility (will be removed in the | 22 | Provide macros for backward compatibility (will be removed in the |
| 23 | future). | 23 | future). |
| 24 | o Unifiy handling of cryptographic algorithms (software and | 24 | o Unify handling of cryptographic algorithms (software and engine) |
| 25 | engine) to be available via EVP routines for asymmetric and | 25 | to be available via EVP routines for asymmetric and symmetric ciphers. |
| 26 | symmetric ciphers. | ||
| 27 | o NCONF: new configuration handling routines. | 26 | o NCONF: new configuration handling routines. |
| 28 | o Change API to use more 'const' modifiers to improve error checking | 27 | o Change API to use more 'const' modifiers to improve error checking |
| 29 | and help optimizers. | 28 | and help optimizers. |
| @@ -31,6 +30,7 @@ | |||
| 31 | o Reworked parts of the BIGNUM code. | 30 | o Reworked parts of the BIGNUM code. |
| 32 | o Support for new engines: Broadcom ubsec, Accelerated Encryption | 31 | o Support for new engines: Broadcom ubsec, Accelerated Encryption |
| 33 | Processing, IBM 4758. | 32 | Processing, IBM 4758. |
| 33 | o Extended and corrected OID (object identifier) table. | ||
| 34 | o PRNG: query at more locations for a random device, automatic query for | 34 | o PRNG: query at more locations for a random device, automatic query for |
| 35 | EGD style random sources at several locations. | 35 | EGD style random sources at several locations. |
| 36 | o SSL/TLS: allow optional cipher choice according to server's preference. | 36 | o SSL/TLS: allow optional cipher choice according to server's preference. |
| @@ -38,7 +38,12 @@ | |||
| 38 | o SSL/TLS: support Kerberos cipher suites (RFC2712). | 38 | o SSL/TLS: support Kerberos cipher suites (RFC2712). |
| 39 | o SSL/TLS: allow more precise control of renegotiations and sessions. | 39 | o SSL/TLS: allow more precise control of renegotiations and sessions. |
| 40 | o SSL/TLS: add callback to retrieve SSL/TLS messages. | 40 | o SSL/TLS: add callback to retrieve SSL/TLS messages. |
| 41 | o SSL/TLS: add draft AES ciphersuites (disabled unless explicitly requested). | 41 | o SSL/TLS: support AES cipher suites (RFC3268). |
| 42 | |||
| 43 | Major changes between OpenSSL 0.9.6d and OpenSSL 0.9.6e: | ||
| 44 | |||
| 45 | o Important security related bugfixes. | ||
| 46 | o Various SSL/TLS library bugfixes. | ||
| 42 | 47 | ||
| 43 | Major changes between OpenSSL 0.9.6c and OpenSSL 0.9.6d: | 48 | Major changes between OpenSSL 0.9.6c and OpenSSL 0.9.6d: |
| 44 | 49 | ||
diff --git a/src/lib/libssl/src/README b/src/lib/libssl/src/README index 8933063c1d..5394a17e3e 100644 --- a/src/lib/libssl/src/README +++ b/src/lib/libssl/src/README | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | 1 | ||
| 2 | OpenSSL 0.9.7-beta1 01 Jun 2002 | 2 | OpenSSL 0.9.7-beta3 30 Jul 2002 |
| 3 | 3 | ||
| 4 | Copyright (c) 1998-2002 The OpenSSL Project | 4 | Copyright (c) 1998-2002 The OpenSSL Project |
| 5 | Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson | 5 | Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson |
| @@ -122,6 +122,13 @@ | |||
| 122 | lists the functions; you will probably have to look at the code to work out | 122 | lists the functions; you will probably have to look at the code to work out |
| 123 | how to use them. Look at the example programs. | 123 | how to use them. Look at the example programs. |
| 124 | 124 | ||
| 125 | PROBLEMS | ||
| 126 | -------- | ||
| 127 | |||
| 128 | For some platforms, there are some known problems that may affect the user | ||
| 129 | or application author. We try to collect those in doc/PROBLEMS, with current | ||
| 130 | thoughts on how they should be solved in a future of OpenSSL. | ||
| 131 | |||
| 125 | SUPPORT | 132 | SUPPORT |
| 126 | ------- | 133 | ------- |
| 127 | 134 | ||
| @@ -146,11 +153,13 @@ | |||
| 146 | - Problem Description (steps that will reproduce the problem, if known) | 153 | - Problem Description (steps that will reproduce the problem, if known) |
| 147 | - Stack Traceback (if the application dumps core) | 154 | - Stack Traceback (if the application dumps core) |
| 148 | 155 | ||
| 149 | Report the bug to the OpenSSL project at: | 156 | Report the bug to the OpenSSL project via the Request Tracker |
| 157 | (http://www.openssl.org/rt2.html) by mail to: | ||
| 150 | 158 | ||
| 151 | openssl-bugs@openssl.org | 159 | openssl-bugs@openssl.org |
| 152 | 160 | ||
| 153 | Note that mail to openssl-bugs@openssl.org is forwarded to a public | 161 | Note that mail to openssl-bugs@openssl.org is recorded in the publicly |
| 162 | readable request tracker database and is forwarded to a public | ||
| 154 | mailing list. Confidential mail may be sent to openssl-security@openssl.org | 163 | mailing list. Confidential mail may be sent to openssl-security@openssl.org |
| 155 | (PGP key available from the key servers). | 164 | (PGP key available from the key servers). |
| 156 | 165 | ||
| @@ -164,7 +173,9 @@ | |||
| 164 | textual explanation of what your patch does. | 173 | textual explanation of what your patch does. |
| 165 | 174 | ||
| 166 | Note: For legal reasons, contributions from the US can be accepted only | 175 | Note: For legal reasons, contributions from the US can be accepted only |
| 167 | if a copy of the patch is sent to crypt@bxa.doc.gov | 176 | if a TSA notification and a copy of the patch is sent to crypt@bis.doc.gov; |
| 177 | see http://www.bis.doc.gov/Encryption/PubAvailEncSourceCodeNofify.html [sic] | ||
| 178 | and http://w3.access.gpo.gov/bis/ear/pdf/740.pdf (EAR Section 740.13(e)). | ||
| 168 | 179 | ||
| 169 | The preferred format for changes is "diff -u" output. You might | 180 | The preferred format for changes is "diff -u" output. You might |
| 170 | generate it like this: | 181 | generate it like this: |
diff --git a/src/lib/libssl/src/README.ENGINE b/src/lib/libssl/src/README.ENGINE index 643d0cb51f..0ff8333709 100644 --- a/src/lib/libssl/src/README.ENGINE +++ b/src/lib/libssl/src/README.ENGINE | |||
| @@ -154,7 +154,7 @@ | |||
| 154 | shared-library that contains the ENGINE implementation, and "NO_VCHECK" | 154 | shared-library that contains the ENGINE implementation, and "NO_VCHECK" |
| 155 | might possibly be useful if there is a minor version conflict and you | 155 | might possibly be useful if there is a minor version conflict and you |
| 156 | (or a vendor helpdesk) is convinced you can safely ignore it. | 156 | (or a vendor helpdesk) is convinced you can safely ignore it. |
| 157 | "ENGINE_ID" is probably only needed if a shared-library implements | 157 | "ID" is probably only needed if a shared-library implements |
| 158 | multiple ENGINEs, but if you know the engine id you expect to be using, | 158 | multiple ENGINEs, but if you know the engine id you expect to be using, |
| 159 | it doesn't hurt to specify it (and this provides a sanity check if | 159 | it doesn't hurt to specify it (and this provides a sanity check if |
| 160 | nothing else). "LIST_ADD" is only required if you actually wish the | 160 | nothing else). "LIST_ADD" is only required if you actually wish the |
| @@ -174,7 +174,7 @@ | |||
| 174 | 174 | ||
| 175 | ENGINE *e = ENGINE_by_id("dynamic"); | 175 | ENGINE *e = ENGINE_by_id("dynamic"); |
| 176 | ENGINE_ctrl_cmd_string(e, "SO_PATH", "/lib/libfoo.so", 0); | 176 | ENGINE_ctrl_cmd_string(e, "SO_PATH", "/lib/libfoo.so", 0); |
| 177 | ENGINE_ctrl_cmd_string(e, "ENGINE_ID", "foo", 0); | 177 | ENGINE_ctrl_cmd_string(e, "ID", "foo", 0); |
| 178 | ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0); | 178 | ENGINE_ctrl_cmd_string(e, "LOAD", NULL, 0); |
| 179 | ENGINE_ctrl_cmd_string(e, "CMD_FOO", "some input data", 0); | 179 | ENGINE_ctrl_cmd_string(e, "CMD_FOO", "some input data", 0); |
| 180 | 180 | ||
| @@ -184,7 +184,7 @@ | |||
| 184 | 184 | ||
| 185 | openssl engine dynamic \ | 185 | openssl engine dynamic \ |
| 186 | -pre SO_PATH:/lib/libfoo.so \ | 186 | -pre SO_PATH:/lib/libfoo.so \ |
| 187 | -pre ENGINE_ID:foo \ | 187 | -pre ID:foo \ |
| 188 | -pre LOAD \ | 188 | -pre LOAD \ |
| 189 | -pre "CMD_FOO:some input data" | 189 | -pre "CMD_FOO:some input data" |
| 190 | 190 | ||
| @@ -192,7 +192,7 @@ | |||
| 192 | 192 | ||
| 193 | openssl engine -vvvv dynamic \ | 193 | openssl engine -vvvv dynamic \ |
| 194 | -pre SO_PATH:/lib/libfoo.so \ | 194 | -pre SO_PATH:/lib/libfoo.so \ |
| 195 | -pre ENGINE_ID:foo \ | 195 | -pre ID:foo \ |
| 196 | -pre LOAD | 196 | -pre LOAD |
| 197 | 197 | ||
| 198 | Applications that support the ENGINE API and more specifically, the | 198 | Applications that support the ENGINE API and more specifically, the |
diff --git a/src/lib/libssl/src/apps/Makefile.ssl b/src/lib/libssl/src/apps/Makefile.ssl index 0900c3ae90..c92009e82f 100644 --- a/src/lib/libssl/src/apps/Makefile.ssl +++ b/src/lib/libssl/src/apps/Makefile.ssl | |||
| @@ -14,6 +14,7 @@ MAKE= make -f Makefile.ssl | |||
| 14 | MAKEDEPPROG= makedepend | 14 | MAKEDEPPROG= makedepend |
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) |
| 16 | MAKEFILE= Makefile.ssl | 16 | MAKEFILE= Makefile.ssl |
| 17 | PERL= perl | ||
| 17 | RM= rm -f | 18 | RM= rm -f |
| 18 | # KRB5 stuff | 19 | # KRB5 stuff |
| 19 | KRB5_INCLUDES= | 20 | KRB5_INCLUDES= |
| @@ -122,7 +123,7 @@ lint: | |||
| 122 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 123 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 123 | 124 | ||
| 124 | depend: | 125 | depend: |
| 125 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) | 126 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) |
| 126 | 127 | ||
| 127 | dclean: | 128 | dclean: |
| 128 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 129 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -133,10 +134,10 @@ clean: | |||
| 133 | rm -f req | 134 | rm -f req |
| 134 | 135 | ||
| 135 | $(DLIBSSL): | 136 | $(DLIBSSL): |
| 136 | (cd ../ssl; $(MAKE)) | 137 | (cd ../ssl; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}') |
| 137 | 138 | ||
| 138 | $(DLIBCRYPTO): | 139 | $(DLIBCRYPTO): |
| 139 | (cd ../crypto; $(MAKE)) | 140 | (cd ../crypto; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}') |
| 140 | 141 | ||
| 141 | $(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) | 142 | $(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) |
| 142 | $(RM) $(PROGRAM) | 143 | $(RM) $(PROGRAM) |
| @@ -146,8 +147,8 @@ $(PROGRAM): progs.h $(E_OBJ) $(PROGRAM).o $(DLIBCRYPTO) $(DLIBSSL) | |||
| 146 | $(CC) -o $(PROGRAM) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \ | 147 | $(CC) -o $(PROGRAM) $(CFLAGS) $(PROGRAM).o $(E_OBJ) $(PEX_LIBS) $(LIBSSL) $(LIBKRB5) $(LIBCRYPTO) $(EX_LIBS) ; \ |
| 147 | fi | 148 | fi |
| 148 | -(cd ..; OPENSSL="`pwd`/apps/openssl"; export OPENSSL; \ | 149 | -(cd ..; OPENSSL="`pwd`/apps/openssl"; export OPENSSL; \ |
| 149 | LIBPATH="`pwd`"; LD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; \ | 150 | LIBPATH="`pwd`"; LD_LIBRARY_PATH="`pwd`"; DYLD_LIBRARY_PATH="`pwd`"; SHLIB_PATH="`pwd`"; \ |
| 150 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | 151 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ |
| 151 | $(PERL) tools/c_rehash certs) | 152 | $(PERL) tools/c_rehash certs) |
| 152 | 153 | ||
| 153 | progs.h: progs.pl | 154 | progs.h: progs.pl |
diff --git a/src/lib/libssl/src/apps/apps.c b/src/lib/libssl/src/apps/apps.c index aca750b1f0..a302119d7f 100644 --- a/src/lib/libssl/src/apps/apps.c +++ b/src/lib/libssl/src/apps/apps.c | |||
| @@ -129,7 +129,11 @@ | |||
| 129 | #ifdef OPENSSL_SYS_WINDOWS | 129 | #ifdef OPENSSL_SYS_WINDOWS |
| 130 | #define strcasecmp _stricmp | 130 | #define strcasecmp _stricmp |
| 131 | #else | 131 | #else |
| 132 | #include <strings.h> | 132 | # ifdef NO_STRINGS_H |
| 133 | int strcasecmp(); | ||
| 134 | # else | ||
| 135 | # include <strings.h> | ||
| 136 | # endif /* NO_STRINGS_H */ | ||
| 133 | #endif | 137 | #endif |
| 134 | 138 | ||
| 135 | #ifdef OPENSSL_SYS_WINDOWS | 139 | #ifdef OPENSSL_SYS_WINDOWS |
| @@ -490,7 +494,7 @@ static int ui_close(UI *ui) | |||
| 490 | { | 494 | { |
| 491 | return UI_method_get_closer(UI_OpenSSL())(ui); | 495 | return UI_method_get_closer(UI_OpenSSL())(ui); |
| 492 | } | 496 | } |
| 493 | int setup_ui_method() | 497 | int setup_ui_method(void) |
| 494 | { | 498 | { |
| 495 | ui_method = UI_create_method("OpenSSL application user interface"); | 499 | ui_method = UI_create_method("OpenSSL application user interface"); |
| 496 | UI_method_set_opener(ui_method, ui_open); | 500 | UI_method_set_opener(ui_method, ui_open); |
| @@ -499,7 +503,7 @@ int setup_ui_method() | |||
| 499 | UI_method_set_closer(ui_method, ui_close); | 503 | UI_method_set_closer(ui_method, ui_close); |
| 500 | return 0; | 504 | return 0; |
| 501 | } | 505 | } |
| 502 | void destroy_ui_method() | 506 | void destroy_ui_method(void) |
| 503 | { | 507 | { |
| 504 | if(ui_method) | 508 | if(ui_method) |
| 505 | { | 509 | { |
| @@ -925,7 +929,7 @@ EVP_PKEY *load_pubkey(BIO *err, const char *file, int format, | |||
| 925 | } | 929 | } |
| 926 | 930 | ||
| 927 | #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA) | 931 | #if !defined(OPENSSL_NO_RC4) && !defined(OPENSSL_NO_RSA) |
| 928 | EVP_PKEY * | 932 | static EVP_PKEY * |
| 929 | load_netscape_key(BIO *err, BIO *key, const char *file, | 933 | load_netscape_key(BIO *err, BIO *key, const char *file, |
| 930 | const char *key_descrip, int format) | 934 | const char *key_descrip, int format) |
| 931 | { | 935 | { |
| @@ -1213,7 +1217,7 @@ static int set_table_opts(unsigned long *flags, const char *arg, const NAME_EX_T | |||
| 1213 | 1217 | ||
| 1214 | void print_name(BIO *out, char *title, X509_NAME *nm, unsigned long lflags) | 1218 | void print_name(BIO *out, char *title, X509_NAME *nm, unsigned long lflags) |
| 1215 | { | 1219 | { |
| 1216 | char buf[256]; | 1220 | char *buf; |
| 1217 | char mline = 0; | 1221 | char mline = 0; |
| 1218 | int indent = 0; | 1222 | int indent = 0; |
| 1219 | if(title) BIO_puts(out, title); | 1223 | if(title) BIO_puts(out, title); |
| @@ -1222,9 +1226,10 @@ void print_name(BIO *out, char *title, X509_NAME *nm, unsigned long lflags) | |||
| 1222 | indent = 4; | 1226 | indent = 4; |
| 1223 | } | 1227 | } |
| 1224 | if(lflags == XN_FLAG_COMPAT) { | 1228 | if(lflags == XN_FLAG_COMPAT) { |
| 1225 | X509_NAME_oneline(nm,buf,256); | 1229 | buf = X509_NAME_oneline(nm, 0, 0); |
| 1226 | BIO_puts(out,buf); | 1230 | BIO_puts(out, buf); |
| 1227 | BIO_puts(out, "\n"); | 1231 | BIO_puts(out, "\n"); |
| 1232 | OPENSSL_free(buf); | ||
| 1228 | } else { | 1233 | } else { |
| 1229 | if(mline) BIO_puts(out, "\n"); | 1234 | if(mline) BIO_puts(out, "\n"); |
| 1230 | X509_NAME_print_ex(out, nm, indent, lflags); | 1235 | X509_NAME_print_ex(out, nm, indent, lflags); |
| @@ -1263,7 +1268,7 @@ X509_STORE *setup_verify(BIO *bp, char *CAfile, char *CApath) | |||
| 1263 | } | 1268 | } |
| 1264 | 1269 | ||
| 1265 | /* Try to load an engine in a shareable library */ | 1270 | /* Try to load an engine in a shareable library */ |
| 1266 | ENGINE *try_load_engine(BIO *err, const char *engine, int debug) | 1271 | static ENGINE *try_load_engine(BIO *err, const char *engine, int debug) |
| 1267 | { | 1272 | { |
| 1268 | ENGINE *e = ENGINE_by_id("dynamic"); | 1273 | ENGINE *e = ENGINE_by_id("dynamic"); |
| 1269 | if (e) | 1274 | if (e) |
diff --git a/src/lib/libssl/src/apps/apps.h b/src/lib/libssl/src/apps/apps.h index 5b3836ab22..a88902ac13 100644 --- a/src/lib/libssl/src/apps/apps.h +++ b/src/lib/libssl/src/apps/apps.h | |||
| @@ -134,10 +134,6 @@ long app_RAND_load_files(char *file); /* `file' is a list of files to read, | |||
| 134 | * (see e_os.h). The string is | 134 | * (see e_os.h). The string is |
| 135 | * destroyed! */ | 135 | * destroyed! */ |
| 136 | 136 | ||
| 137 | #ifdef OPENSSL_NO_STDIO | ||
| 138 | BIO_METHOD *BIO_s_file(); | ||
| 139 | #endif | ||
| 140 | |||
| 141 | #ifdef OPENSSL_SYS_WIN32 | 137 | #ifdef OPENSSL_SYS_WIN32 |
| 142 | #define rename(from,to) WIN32_rename((from),(to)) | 138 | #define rename(from,to) WIN32_rename((from),(to)) |
| 143 | int WIN32_rename(char *oldname,char *newname); | 139 | int WIN32_rename(char *oldname,char *newname); |
| @@ -217,8 +213,8 @@ typedef struct pw_cb_data | |||
| 217 | int password_callback(char *buf, int bufsiz, int verify, | 213 | int password_callback(char *buf, int bufsiz, int verify, |
| 218 | PW_CB_DATA *cb_data); | 214 | PW_CB_DATA *cb_data); |
| 219 | 215 | ||
| 220 | int setup_ui_method(); | 216 | int setup_ui_method(void); |
| 221 | void destroy_ui_method(); | 217 | void destroy_ui_method(void); |
| 222 | 218 | ||
| 223 | int should_retry(int i); | 219 | int should_retry(int i); |
| 224 | int args_from_file(char *file, int *argc, char **argv[]); | 220 | int args_from_file(char *file, int *argc, char **argv[]); |
diff --git a/src/lib/libssl/src/apps/ca.c b/src/lib/libssl/src/apps/ca.c index 51d9470aa1..322956de57 100644 --- a/src/lib/libssl/src/apps/ca.c +++ b/src/lib/libssl/src/apps/ca.c | |||
| @@ -80,7 +80,11 @@ | |||
| 80 | #ifdef OPENSSL_SYS_WINDOWS | 80 | #ifdef OPENSSL_SYS_WINDOWS |
| 81 | #define strcasecmp _stricmp | 81 | #define strcasecmp _stricmp |
| 82 | #else | 82 | #else |
| 83 | #include <strings.h> | 83 | # ifdef NO_STRINGS_H |
| 84 | int strcasecmp(); | ||
| 85 | # else | ||
| 86 | # include <strings.h> | ||
| 87 | # endif /* NO_STRINGS_H */ | ||
| 84 | #endif | 88 | #endif |
| 85 | 89 | ||
| 86 | #ifndef W_OK | 90 | #ifndef W_OK |
| @@ -1450,13 +1454,13 @@ bad: | |||
| 1450 | } | 1454 | } |
| 1451 | if ((crldays == 0) && (crlhours == 0)) | 1455 | if ((crldays == 0) && (crlhours == 0)) |
| 1452 | { | 1456 | { |
| 1453 | BIO_printf(bio_err,"cannot lookup how long until the next CRL is issuer\n"); | 1457 | BIO_printf(bio_err,"cannot lookup how long until the next CRL is issued\n"); |
| 1454 | goto err; | 1458 | goto err; |
| 1455 | } | 1459 | } |
| 1456 | 1460 | ||
| 1457 | if (verbose) BIO_printf(bio_err,"making CRL\n"); | 1461 | if (verbose) BIO_printf(bio_err,"making CRL\n"); |
| 1458 | if ((crl=X509_CRL_new()) == NULL) goto err; | 1462 | if ((crl=X509_CRL_new()) == NULL) goto err; |
| 1459 | if (!X509_CRL_set_issuer_name(crl, X509_get_issuer_name(x509))) goto err; | 1463 | if (!X509_CRL_set_issuer_name(crl, X509_get_subject_name(x509))) goto err; |
| 1460 | 1464 | ||
| 1461 | tmptm = ASN1_TIME_new(); | 1465 | tmptm = ASN1_TIME_new(); |
| 1462 | if (!tmptm) goto err; | 1466 | if (!tmptm) goto err; |
diff --git a/src/lib/libssl/src/apps/dgst.c b/src/lib/libssl/src/apps/dgst.c index 0620b32bb4..e21c3d83ac 100644 --- a/src/lib/libssl/src/apps/dgst.c +++ b/src/lib/libssl/src/apps/dgst.c | |||
| @@ -73,8 +73,9 @@ | |||
| 73 | #undef PROG | 73 | #undef PROG |
| 74 | #define PROG dgst_main | 74 | #define PROG dgst_main |
| 75 | 75 | ||
| 76 | void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, | 76 | int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, |
| 77 | EVP_PKEY *key, unsigned char *sigin, int siglen); | 77 | EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title, |
| 78 | const char *file); | ||
| 78 | 79 | ||
| 79 | int MAIN(int, char **); | 80 | int MAIN(int, char **); |
| 80 | 81 | ||
| @@ -319,22 +320,36 @@ int MAIN(int argc, char **argv) | |||
| 319 | if (argc == 0) | 320 | if (argc == 0) |
| 320 | { | 321 | { |
| 321 | BIO_set_fp(in,stdin,BIO_NOCLOSE); | 322 | BIO_set_fp(in,stdin,BIO_NOCLOSE); |
| 322 | do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf, siglen); | 323 | err=do_fp(out, buf,inp,separator, out_bin, sigkey, sigbuf, |
| 324 | siglen,"","(stdin)"); | ||
| 323 | } | 325 | } |
| 324 | else | 326 | else |
| 325 | { | 327 | { |
| 326 | name=OBJ_nid2sn(md->type); | 328 | name=OBJ_nid2sn(md->type); |
| 327 | for (i=0; i<argc; i++) | 329 | for (i=0; i<argc; i++) |
| 328 | { | 330 | { |
| 331 | char *tmp,*tofree=NULL; | ||
| 332 | int r; | ||
| 333 | |||
| 329 | if (BIO_read_filename(in,argv[i]) <= 0) | 334 | if (BIO_read_filename(in,argv[i]) <= 0) |
| 330 | { | 335 | { |
| 331 | perror(argv[i]); | 336 | perror(argv[i]); |
| 332 | err++; | 337 | err++; |
| 333 | continue; | 338 | continue; |
| 334 | } | 339 | } |
| 335 | if(!out_bin) BIO_printf(out, "%s(%s)= ",name,argv[i]); | 340 | if(!out_bin) |
| 336 | do_fp(out, buf,inp,separator, out_bin, sigkey, | 341 | { |
| 337 | sigbuf, siglen); | 342 | tmp=tofree=OPENSSL_malloc(strlen(name)+strlen(argv[i])+5); |
| 343 | sprintf(tmp,"%s(%s)= ",name,argv[i]); | ||
| 344 | } | ||
| 345 | else | ||
| 346 | tmp=""; | ||
| 347 | r=do_fp(out,buf,inp,separator,out_bin,sigkey,sigbuf, | ||
| 348 | siglen,tmp,argv[i]); | ||
| 349 | if(r) | ||
| 350 | err=r; | ||
| 351 | if(tofree) | ||
| 352 | OPENSSL_free(tofree); | ||
| 338 | (void)BIO_reset(bmd); | 353 | (void)BIO_reset(bmd); |
| 339 | } | 354 | } |
| 340 | } | 355 | } |
| @@ -353,8 +368,9 @@ end: | |||
| 353 | EXIT(err); | 368 | EXIT(err); |
| 354 | } | 369 | } |
| 355 | 370 | ||
| 356 | void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, | 371 | int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, |
| 357 | EVP_PKEY *key, unsigned char *sigin, int siglen) | 372 | EVP_PKEY *key, unsigned char *sigin, int siglen, const char *title, |
| 373 | const char *file) | ||
| 358 | { | 374 | { |
| 359 | int len; | 375 | int len; |
| 360 | int i; | 376 | int i; |
| @@ -362,21 +378,33 @@ void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, | |||
| 362 | for (;;) | 378 | for (;;) |
| 363 | { | 379 | { |
| 364 | i=BIO_read(bp,(char *)buf,BUFSIZE); | 380 | i=BIO_read(bp,(char *)buf,BUFSIZE); |
| 365 | if (i <= 0) break; | 381 | if(i < 0) |
| 382 | { | ||
| 383 | BIO_printf(bio_err, "Read Error in %s\n",file); | ||
| 384 | ERR_print_errors(bio_err); | ||
| 385 | return 1; | ||
| 386 | } | ||
| 387 | if (i == 0) break; | ||
| 366 | } | 388 | } |
| 367 | if(sigin) | 389 | if(sigin) |
| 368 | { | 390 | { |
| 369 | EVP_MD_CTX *ctx; | 391 | EVP_MD_CTX *ctx; |
| 370 | BIO_get_md_ctx(bp, &ctx); | 392 | BIO_get_md_ctx(bp, &ctx); |
| 371 | i = EVP_VerifyFinal(ctx, sigin, (unsigned int)siglen, key); | 393 | i = EVP_VerifyFinal(ctx, sigin, (unsigned int)siglen, key); |
| 372 | if(i > 0) BIO_printf(out, "Verified OK\n"); | 394 | if(i > 0) |
| 373 | else if(i == 0) BIO_printf(out, "Verification Failure\n"); | 395 | BIO_printf(out, "Verified OK\n"); |
| 396 | else if(i == 0) | ||
| 397 | { | ||
| 398 | BIO_printf(out, "Verification Failure\n"); | ||
| 399 | return 1; | ||
| 400 | } | ||
| 374 | else | 401 | else |
| 375 | { | 402 | { |
| 376 | BIO_printf(bio_err, "Error Verifying Data\n"); | 403 | BIO_printf(bio_err, "Error Verifying Data\n"); |
| 377 | ERR_print_errors(bio_err); | 404 | ERR_print_errors(bio_err); |
| 405 | return 1; | ||
| 378 | } | 406 | } |
| 379 | return; | 407 | return 0; |
| 380 | } | 408 | } |
| 381 | if(key) | 409 | if(key) |
| 382 | { | 410 | { |
| @@ -386,7 +414,7 @@ void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, | |||
| 386 | { | 414 | { |
| 387 | BIO_printf(bio_err, "Error Signing Data\n"); | 415 | BIO_printf(bio_err, "Error Signing Data\n"); |
| 388 | ERR_print_errors(bio_err); | 416 | ERR_print_errors(bio_err); |
| 389 | return; | 417 | return 1; |
| 390 | } | 418 | } |
| 391 | } | 419 | } |
| 392 | else | 420 | else |
| @@ -395,6 +423,7 @@ void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, | |||
| 395 | if(binout) BIO_write(out, buf, len); | 423 | if(binout) BIO_write(out, buf, len); |
| 396 | else | 424 | else |
| 397 | { | 425 | { |
| 426 | BIO_write(out,title,strlen(title)); | ||
| 398 | for (i=0; i<len; i++) | 427 | for (i=0; i<len; i++) |
| 399 | { | 428 | { |
| 400 | if (sep && (i != 0)) | 429 | if (sep && (i != 0)) |
| @@ -403,5 +432,6 @@ void do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout, | |||
| 403 | } | 432 | } |
| 404 | BIO_printf(out, "\n"); | 433 | BIO_printf(out, "\n"); |
| 405 | } | 434 | } |
| 435 | return 0; | ||
| 406 | } | 436 | } |
| 407 | 437 | ||
diff --git a/src/lib/libssl/src/apps/enc.c b/src/lib/libssl/src/apps/enc.c index 2c3af75170..1ba2ea2f68 100644 --- a/src/lib/libssl/src/apps/enc.c +++ b/src/lib/libssl/src/apps/enc.c | |||
| @@ -78,7 +78,7 @@ int set_hex(char *in,unsigned char *out,int size); | |||
| 78 | #define BSIZE (8*1024) | 78 | #define BSIZE (8*1024) |
| 79 | #define PROG enc_main | 79 | #define PROG enc_main |
| 80 | 80 | ||
| 81 | void show_ciphers(const OBJ_NAME *name,void *bio_) | 81 | static void show_ciphers(const OBJ_NAME *name,void *bio_) |
| 82 | { | 82 | { |
| 83 | BIO *bio=bio_; | 83 | BIO *bio=bio_; |
| 84 | static int n; | 84 | static int n; |
diff --git a/src/lib/libssl/src/apps/nseq.c b/src/lib/libssl/src/apps/nseq.c index 93adcdfef8..c26f62cb61 100644 --- a/src/lib/libssl/src/apps/nseq.c +++ b/src/lib/libssl/src/apps/nseq.c | |||
| @@ -58,9 +58,9 @@ | |||
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <string.h> | 60 | #include <string.h> |
| 61 | #include "apps.h" | ||
| 61 | #include <openssl/pem.h> | 62 | #include <openssl/pem.h> |
| 62 | #include <openssl/err.h> | 63 | #include <openssl/err.h> |
| 63 | #include "apps.h" | ||
| 64 | 64 | ||
| 65 | #undef PROG | 65 | #undef PROG |
| 66 | #define PROG nseq_main | 66 | #define PROG nseq_main |
diff --git a/src/lib/libssl/src/apps/ocsp.c b/src/lib/libssl/src/apps/ocsp.c index c87edbc44b..49a156a1cf 100644 --- a/src/lib/libssl/src/apps/ocsp.c +++ b/src/lib/libssl/src/apps/ocsp.c | |||
| @@ -58,11 +58,11 @@ | |||
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <string.h> | 60 | #include <string.h> |
| 61 | #include "apps.h" | ||
| 61 | #include <openssl/pem.h> | 62 | #include <openssl/pem.h> |
| 62 | #include <openssl/ocsp.h> | 63 | #include <openssl/ocsp.h> |
| 63 | #include <openssl/err.h> | 64 | #include <openssl/err.h> |
| 64 | #include <openssl/ssl.h> | 65 | #include <openssl/ssl.h> |
| 65 | #include "apps.h" | ||
| 66 | 66 | ||
| 67 | /* Maximum leeway in validity period: default 5 minutes */ | 67 | /* Maximum leeway in validity period: default 5 minutes */ |
| 68 | #define MAX_VALIDITY_PERIOD (5 * 60) | 68 | #define MAX_VALIDITY_PERIOD (5 * 60) |
| @@ -553,8 +553,8 @@ int MAIN(int argc, char **argv) | |||
| 553 | BIO_printf (bio_err, "-port num port to run responder on\n"); | 553 | BIO_printf (bio_err, "-port num port to run responder on\n"); |
| 554 | BIO_printf (bio_err, "-index file certificate status index file\n"); | 554 | BIO_printf (bio_err, "-index file certificate status index file\n"); |
| 555 | BIO_printf (bio_err, "-CA file CA certificate\n"); | 555 | BIO_printf (bio_err, "-CA file CA certificate\n"); |
| 556 | BIO_printf (bio_err, "-rsigner file responder certificate to sign requests with\n"); | 556 | BIO_printf (bio_err, "-rsigner file responder certificate to sign responses with\n"); |
| 557 | BIO_printf (bio_err, "-rkey file responder key to sign requests with\n"); | 557 | BIO_printf (bio_err, "-rkey file responder key to sign responses with\n"); |
| 558 | BIO_printf (bio_err, "-rother file other certificates to include in response\n"); | 558 | BIO_printf (bio_err, "-rother file other certificates to include in response\n"); |
| 559 | BIO_printf (bio_err, "-resp_no_certs don't include any certificates in response\n"); | 559 | BIO_printf (bio_err, "-resp_no_certs don't include any certificates in response\n"); |
| 560 | BIO_printf (bio_err, "-nmin n number of minutes before next update\n"); | 560 | BIO_printf (bio_err, "-nmin n number of minutes before next update\n"); |
| @@ -676,6 +676,18 @@ int MAIN(int argc, char **argv) | |||
| 676 | 676 | ||
| 677 | if (req_text && req) OCSP_REQUEST_print(out, req, 0); | 677 | if (req_text && req) OCSP_REQUEST_print(out, req, 0); |
| 678 | 678 | ||
| 679 | if (reqout) | ||
| 680 | { | ||
| 681 | derbio = BIO_new_file(reqout, "wb"); | ||
| 682 | if(!derbio) | ||
| 683 | { | ||
| 684 | BIO_printf(bio_err, "Error opening file %s\n", reqout); | ||
| 685 | goto end; | ||
| 686 | } | ||
| 687 | i2d_OCSP_REQUEST_bio(derbio, req); | ||
| 688 | BIO_free(derbio); | ||
| 689 | } | ||
| 690 | |||
| 679 | if (ridx_filename && (!rkey || !rsigner || !rca_cert)) | 691 | if (ridx_filename && (!rkey || !rsigner || !rca_cert)) |
| 680 | { | 692 | { |
| 681 | BIO_printf(bio_err, "Need a responder certificate, key and CA for this operation!\n"); | 693 | BIO_printf(bio_err, "Need a responder certificate, key and CA for this operation!\n"); |
| @@ -809,6 +821,8 @@ int MAIN(int argc, char **argv) | |||
| 809 | 821 | ||
| 810 | if (!store) | 822 | if (!store) |
| 811 | store = setup_verify(bio_err, CAfile, CApath); | 823 | store = setup_verify(bio_err, CAfile, CApath); |
| 824 | if (!store) | ||
| 825 | goto end; | ||
| 812 | if (verify_certfile) | 826 | if (verify_certfile) |
| 813 | { | 827 | { |
| 814 | verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM, | 828 | verify_other = load_certs(bio_err, verify_certfile, FORMAT_PEM, |
diff --git a/src/lib/libssl/src/apps/openssl.c b/src/lib/libssl/src/apps/openssl.c index c17458ef7c..1c4a4291aa 100644 --- a/src/lib/libssl/src/apps/openssl.c +++ b/src/lib/libssl/src/apps/openssl.c | |||
| @@ -114,6 +114,7 @@ | |||
| 114 | #include <string.h> | 114 | #include <string.h> |
| 115 | #include <stdlib.h> | 115 | #include <stdlib.h> |
| 116 | #define OPENSSL_C /* tells apps.h to use complete apps_startup() */ | 116 | #define OPENSSL_C /* tells apps.h to use complete apps_startup() */ |
| 117 | #include "apps.h" | ||
| 117 | #include <openssl/bio.h> | 118 | #include <openssl/bio.h> |
| 118 | #include <openssl/crypto.h> | 119 | #include <openssl/crypto.h> |
| 119 | #include <openssl/lhash.h> | 120 | #include <openssl/lhash.h> |
| @@ -123,7 +124,6 @@ | |||
| 123 | #include <openssl/ssl.h> | 124 | #include <openssl/ssl.h> |
| 124 | #include <openssl/engine.h> | 125 | #include <openssl/engine.h> |
| 125 | #define USE_SOCKETS /* needed for the _O_BINARY defs in the MS world */ | 126 | #define USE_SOCKETS /* needed for the _O_BINARY defs in the MS world */ |
| 126 | #include "apps.h" | ||
| 127 | #include "progs.h" | 127 | #include "progs.h" |
| 128 | #include "s_apps.h" | 128 | #include "s_apps.h" |
| 129 | #include <openssl/err.h> | 129 | #include <openssl/err.h> |
diff --git a/src/lib/libssl/src/apps/pkcs7.c b/src/lib/libssl/src/apps/pkcs7.c index 1cc91509a2..0cced40f0f 100644 --- a/src/lib/libssl/src/apps/pkcs7.c +++ b/src/lib/libssl/src/apps/pkcs7.c | |||
| @@ -89,7 +89,7 @@ int MAIN(int argc, char **argv) | |||
| 89 | int informat,outformat; | 89 | int informat,outformat; |
| 90 | char *infile,*outfile,*prog; | 90 | char *infile,*outfile,*prog; |
| 91 | int print_certs=0,text=0,noout=0; | 91 | int print_certs=0,text=0,noout=0; |
| 92 | int ret=0; | 92 | int ret=1; |
| 93 | char *engine=NULL; | 93 | char *engine=NULL; |
| 94 | 94 | ||
| 95 | apps_startup(); | 95 | apps_startup(); |
diff --git a/src/lib/libssl/src/apps/s_client.c b/src/lib/libssl/src/apps/s_client.c index 9c0dbc2bf6..658a79d390 100644 --- a/src/lib/libssl/src/apps/s_client.c +++ b/src/lib/libssl/src/apps/s_client.c | |||
| @@ -433,6 +433,11 @@ bad: | |||
| 433 | goto end; | 433 | goto end; |
| 434 | } | 434 | } |
| 435 | 435 | ||
| 436 | OpenSSL_add_ssl_algorithms(); | ||
| 437 | SSL_load_error_strings(); | ||
| 438 | |||
| 439 | e = setup_engine(bio_err, engine_id, 1); | ||
| 440 | |||
| 436 | if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL | 441 | if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL |
| 437 | && !RAND_status()) | 442 | && !RAND_status()) |
| 438 | { | 443 | { |
| @@ -455,11 +460,6 @@ bad: | |||
| 455 | } | 460 | } |
| 456 | } | 461 | } |
| 457 | 462 | ||
| 458 | OpenSSL_add_ssl_algorithms(); | ||
| 459 | SSL_load_error_strings(); | ||
| 460 | |||
| 461 | e = setup_engine(bio_err, engine_id, 1); | ||
| 462 | |||
| 463 | ctx=SSL_CTX_new(meth); | 463 | ctx=SSL_CTX_new(meth); |
| 464 | if (ctx == NULL) | 464 | if (ctx == NULL) |
| 465 | { | 465 | { |
diff --git a/src/lib/libssl/src/apps/s_server.c b/src/lib/libssl/src/apps/s_server.c index 78d90fad55..497abf44ef 100644 --- a/src/lib/libssl/src/apps/s_server.c +++ b/src/lib/libssl/src/apps/s_server.c | |||
| @@ -683,6 +683,11 @@ bad: | |||
| 683 | goto end; | 683 | goto end; |
| 684 | } | 684 | } |
| 685 | 685 | ||
| 686 | SSL_load_error_strings(); | ||
| 687 | OpenSSL_add_ssl_algorithms(); | ||
| 688 | |||
| 689 | e = setup_engine(bio_err, engine_id, 1); | ||
| 690 | |||
| 686 | if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL | 691 | if (!app_RAND_load_file(NULL, bio_err, 1) && inrand == NULL |
| 687 | && !RAND_status()) | 692 | && !RAND_status()) |
| 688 | { | 693 | { |
| @@ -715,11 +720,6 @@ bad: | |||
| 715 | s_dkey_file=NULL; | 720 | s_dkey_file=NULL; |
| 716 | } | 721 | } |
| 717 | 722 | ||
| 718 | SSL_load_error_strings(); | ||
| 719 | OpenSSL_add_ssl_algorithms(); | ||
| 720 | |||
| 721 | e = setup_engine(bio_err, engine_id, 1); | ||
| 722 | |||
| 723 | ctx=SSL_CTX_new(meth); | 723 | ctx=SSL_CTX_new(meth); |
| 724 | if (ctx == NULL) | 724 | if (ctx == NULL) |
| 725 | { | 725 | { |
diff --git a/src/lib/libssl/src/apps/s_time.c b/src/lib/libssl/src/apps/s_time.c index 2fb853d071..752158460a 100644 --- a/src/lib/libssl/src/apps/s_time.c +++ b/src/lib/libssl/src/apps/s_time.c | |||
| @@ -85,7 +85,7 @@ | |||
| 85 | #include OPENSSL_UNISTD | 85 | #include OPENSSL_UNISTD |
| 86 | #endif | 86 | #endif |
| 87 | 87 | ||
| 88 | #if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC)) && !defined(OPENSSL_SYS_MACOSX) | 88 | #if !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC)) |
| 89 | #define TIMES | 89 | #define TIMES |
| 90 | #endif | 90 | #endif |
| 91 | 91 | ||
| @@ -109,10 +109,6 @@ | |||
| 109 | #include <sys/timeb.h> | 109 | #include <sys/timeb.h> |
| 110 | #endif | 110 | #endif |
| 111 | 111 | ||
| 112 | #ifdef _AIX | ||
| 113 | #include <sys/select.h> | ||
| 114 | #endif | ||
| 115 | |||
| 116 | #if defined(sun) || defined(__ultrix) | 112 | #if defined(sun) || defined(__ultrix) |
| 117 | #define _POSIX_SOURCE | 113 | #define _POSIX_SOURCE |
| 118 | #include <limits.h> | 114 | #include <limits.h> |
diff --git a/src/lib/libssl/src/apps/x509.c b/src/lib/libssl/src/apps/x509.c index dce5f32630..a797da0ffa 100644 --- a/src/lib/libssl/src/apps/x509.c +++ b/src/lib/libssl/src/apps/x509.c | |||
| @@ -915,8 +915,10 @@ bad: | |||
| 915 | 915 | ||
| 916 | BIO_printf(bio_err,"Generating certificate request\n"); | 916 | BIO_printf(bio_err,"Generating certificate request\n"); |
| 917 | 917 | ||
| 918 | #ifndef OPENSSL_NO_DSA | ||
| 918 | if (pk->type == EVP_PKEY_DSA) | 919 | if (pk->type == EVP_PKEY_DSA) |
| 919 | digest=EVP_dss1(); | 920 | digest=EVP_dss1(); |
| 921 | #endif | ||
| 920 | 922 | ||
| 921 | rq=X509_to_X509_REQ(x,pk,digest); | 923 | rq=X509_to_X509_REQ(x,pk,digest); |
| 922 | EVP_PKEY_free(pk); | 924 | EVP_PKEY_free(pk); |
diff --git a/src/lib/libssl/src/config b/src/lib/libssl/src/config index 3d443da6fb..972cdb70a3 100644 --- a/src/lib/libssl/src/config +++ b/src/lib/libssl/src/config | |||
| @@ -390,18 +390,30 @@ exit 0 | |||
| 390 | 390 | ||
| 391 | # figure out if gcc is available and if so we use it otherwise | 391 | # figure out if gcc is available and if so we use it otherwise |
| 392 | # we fallback to whatever cc does on the system | 392 | # we fallback to whatever cc does on the system |
| 393 | GCCVER=`(gcc --version) 2>/dev/null` | 393 | GCCVER=`(gcc -dumpversion) 2>/dev/null` |
| 394 | if [ "$GCCVER" != "" ]; then | 394 | if [ "$GCCVER" != "" ]; then |
| 395 | CC=gcc | 395 | CC=gcc |
| 396 | # then strip off whatever prefix Cygnus prepends the number with... | 396 | # Since gcc 3.1 gcc --version behaviour has changed. gcc -dumpversion |
| 397 | GCCVER=`echo $GCCVER | sed 's/^[a-z]*\-//'` | 397 | # does give us what we want though, so we use that. We just just the |
| 398 | # major and minor version numbers. | ||
| 398 | # peak single digit before and after first dot, e.g. 2.95.1 gives 29 | 399 | # peak single digit before and after first dot, e.g. 2.95.1 gives 29 |
| 399 | GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'` | 400 | GCCVER=`echo $GCCVER | sed 's/\([0-9]\)\.\([0-9]\).*/\1\2/'` |
| 400 | else | 401 | else |
| 401 | CC=cc | 402 | CC=cc |
| 402 | fi | 403 | fi |
| 403 | GCCVER=${GCCVER:-0} | 404 | GCCVER=${GCCVER:-0} |
| 404 | 405 | if [ "$SYSTEM" = "HP-UX" ];then | |
| 406 | # By default gcc is a ILP32 compiler (with long long == 64). | ||
| 407 | GCC_BITS="32" | ||
| 408 | if [ $GCCVER -ge 30 ]; then | ||
| 409 | # PA64 support only came in with gcc 3.0.x. | ||
| 410 | # We look for the preprocessor symbol __LP64__ indicating | ||
| 411 | # 64bit bit long and pointer. sizeof(int) == 32 on HPUX64. | ||
| 412 | if gcc -v -E -x c /dev/null 2>&1 | grep __LP64__ > /dev/null; then | ||
| 413 | GCC_BITS="64" | ||
| 414 | fi | ||
| 415 | fi | ||
| 416 | fi | ||
| 405 | if [ "$SYSTEM" = "SunOS" ]; then | 417 | if [ "$SYSTEM" = "SunOS" ]; then |
| 406 | if [ $GCCVER -ge 30 ]; then | 418 | if [ $GCCVER -ge 30 ]; then |
| 407 | # 64-bit ABI isn't officially supported in gcc 3.0, but it appears | 419 | # 64-bit ABI isn't officially supported in gcc 3.0, but it appears |
| @@ -659,7 +671,16 @@ EOF | |||
| 659 | RM*-siemens-sysv4) OUT="ReliantUNIX" ;; | 671 | RM*-siemens-sysv4) OUT="ReliantUNIX" ;; |
| 660 | *-siemens-sysv4) OUT="SINIX" ;; | 672 | *-siemens-sysv4) OUT="SINIX" ;; |
| 661 | *-hpux1*) | 673 | *-hpux1*) |
| 662 | OUT="hpux-parisc-$CC" | 674 | if [ $CC = "gcc" ]; |
| 675 | then | ||
| 676 | if [ $GCC_BITS = "64" ]; then | ||
| 677 | OUT="hpux64-parisc-gcc" | ||
| 678 | else | ||
| 679 | OUT="hpux-parisc-gcc" | ||
| 680 | fi | ||
| 681 | else | ||
| 682 | OUT="hpux-parisc-$CC" | ||
| 683 | fi | ||
| 663 | KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null` | 684 | KERNEL_BITS=`(getconf KERNEL_BITS) 2>/dev/null` |
| 664 | KERNEL_BITS=${KERNEL_BITS:-32} | 685 | KERNEL_BITS=${KERNEL_BITS:-32} |
| 665 | CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null` | 686 | CPU_VERSION=`(getconf CPU_VERSION) 2>/dev/null` |
diff --git a/src/lib/libssl/src/crypto/Makefile.ssl b/src/lib/libssl/src/crypto/Makefile.ssl index 0f036167f0..2489b614c6 100644 --- a/src/lib/libssl/src/crypto/Makefile.ssl +++ b/src/lib/libssl/src/crypto/Makefile.ssl | |||
| @@ -136,12 +136,12 @@ lint: | |||
| 136 | 136 | ||
| 137 | depend: | 137 | depend: |
| 138 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist | 138 | if [ ! -f buildinf.h ]; then touch buildinf.h; fi # fake buildinf.h if it does not exist |
| 139 | $(MAKEDEPEND) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) | 139 | $(MAKEDEPEND) $(CFLAG) $(INCLUDE) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi | 140 | if [ ! -s buildinf.h ]; then rm buildinf.h; fi |
| 141 | @for i in $(SDIRS) ;\ | 141 | @for i in $(SDIRS) ;\ |
| 142 | do \ | 142 | do \ |
| 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ | 143 | (cd $$i && echo "making depend in crypto/$$i..." && \ |
| 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' DEPFLAG='${DEPFLAG}' depend ); \ | 144 | $(MAKE) MAKEFILE='${MAKEFILE}' INCLUDES='${INCLUDES}' CFLAG='${CFLAG}' DEPFLAG='${DEPFLAG}' PERL='${PERL}' depend ); \ |
| 145 | done; | 145 | done; |
| 146 | 146 | ||
| 147 | clean: | 147 | clean: |
| @@ -180,7 +180,7 @@ cversion.o: ../include/openssl/err.h ../include/openssl/lhash.h | |||
| 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 180 | cversion.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 181 | cversion.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c | 182 | cversion.o: ../include/openssl/symhacks.h buildinf.h cryptlib.h cversion.c |
| 183 | ebcdic.o: ../include/openssl/opensslconf.h ebcdic.c | 183 | ebcdic.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h ebcdic.c |
| 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h | 184 | ex_data.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/buffer.h |
| 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 185 | ex_data.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h | 186 | ex_data.o: ../include/openssl/err.h ../include/openssl/lhash.h |
diff --git a/src/lib/libssl/src/crypto/aes/Makefile.ssl b/src/lib/libssl/src/crypto/aes/Makefile.ssl index aa16bbee2a..9358802a2e 100644 --- a/src/lib/libssl/src/crypto/aes/Makefile.ssl +++ b/src/lib/libssl/src/crypto/aes/Makefile.ssl | |||
| @@ -75,7 +75,7 @@ lint: | |||
| 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 76 | 76 | ||
| 77 | depend: | 77 | depend: |
| 78 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 78 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 79 | 79 | ||
| 80 | dclean: | 80 | dclean: |
| 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/aes/aes_locl.h b/src/lib/libssl/src/crypto/aes/aes_locl.h index 541d1d6e84..18fc2d0747 100644 --- a/src/lib/libssl/src/crypto/aes/aes_locl.h +++ b/src/lib/libssl/src/crypto/aes/aes_locl.h | |||
| @@ -60,10 +60,7 @@ | |||
| 60 | 60 | ||
| 61 | #include <stdio.h> | 61 | #include <stdio.h> |
| 62 | #include <stdlib.h> | 62 | #include <stdlib.h> |
| 63 | |||
| 64 | #if defined(__STDC__) || defined(OPENSSL_SYS_VMS) || defined(M_XENIX) || defined(OPENSSL_SYS_MSDOS) | ||
| 65 | #include <string.h> | 63 | #include <string.h> |
| 66 | #endif | ||
| 67 | 64 | ||
| 68 | #ifdef _MSC_VER | 65 | #ifdef _MSC_VER |
| 69 | # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) | 66 | # define SWAP(x) (_lrotl(x, 8) & 0x00ff00ff | _lrotr(x, 8) & 0xff00ff00) |
diff --git a/src/lib/libssl/src/crypto/asn1/Makefile.ssl b/src/lib/libssl/src/crypto/asn1/Makefile.ssl index 71397df5c8..b5a186c904 100644 --- a/src/lib/libssl/src/crypto/asn1/Makefile.ssl +++ b/src/lib/libssl/src/crypto/asn1/Makefile.ssl | |||
| @@ -98,7 +98,7 @@ lint: | |||
| 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 98 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 99 | 99 | ||
| 100 | depend: | 100 | depend: |
| 101 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 101 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 102 | 102 | ||
| 103 | dclean: | 103 | dclean: |
| 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 104 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -144,18 +144,26 @@ a_d2i_fp.o: ../../include/openssl/opensslconf.h | |||
| 144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 144 | a_d2i_fp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 145 | a_d2i_fp.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c | 146 | a_d2i_fp.o: ../../include/openssl/symhacks.h ../cryptlib.h a_d2i_fp.c |
| 147 | a_digest.o: ../../e_os.h ../../include/openssl/asn1.h | 147 | a_digest.o: ../../e_os.h ../../include/openssl/aes.h |
| 148 | a_digest.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 148 | a_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 149 | a_digest.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 150 | a_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 150 | a_digest.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 151 | a_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 151 | a_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 152 | a_digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 152 | a_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 153 | a_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 154 | a_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 155 | a_digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 156 | a_digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 157 | a_digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 153 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 158 | a_digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 154 | a_digest.o: ../../include/openssl/opensslconf.h | 159 | a_digest.o: ../../include/openssl/opensslconf.h |
| 155 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 160 | a_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 156 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 161 | a_digest.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 162 | a_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 163 | a_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 157 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 164 | a_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 158 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 165 | a_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 166 | a_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 159 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 167 | a_digest.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 160 | a_digest.o: ../cryptlib.h a_digest.c | 168 | a_digest.o: ../cryptlib.h a_digest.c |
| 161 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 169 | a_dup.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| @@ -257,30 +265,46 @@ a_set.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 257 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 265 | a_set.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 258 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 266 | a_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 259 | a_set.o: ../cryptlib.h a_set.c | 267 | a_set.o: ../cryptlib.h a_set.c |
| 260 | a_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 268 | a_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 269 | a_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 261 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 270 | a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 262 | a_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 271 | a_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 263 | a_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 272 | a_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 264 | a_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 273 | a_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 265 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 274 | a_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 275 | a_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 276 | a_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 277 | a_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 278 | a_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 266 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 279 | a_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 267 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 280 | a_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 268 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 281 | a_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 282 | a_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 283 | a_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 269 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 284 | a_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 270 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 285 | a_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 286 | a_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 271 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 287 | a_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 272 | a_sign.o: ../cryptlib.h a_sign.c | 288 | a_sign.o: ../cryptlib.h a_sign.c |
| 273 | a_strex.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 289 | a_strex.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 290 | a_strex.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 274 | a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 291 | a_strex.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 275 | a_strex.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 292 | a_strex.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 276 | a_strex.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 293 | a_strex.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 277 | a_strex.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 294 | a_strex.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 295 | a_strex.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 296 | a_strex.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 297 | a_strex.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 298 | a_strex.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 278 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 299 | a_strex.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 279 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 300 | a_strex.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 280 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 301 | a_strex.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 302 | a_strex.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 303 | a_strex.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 281 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 304 | a_strex.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 282 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 305 | a_strex.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 283 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 306 | a_strex.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 307 | a_strex.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 284 | a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h | 308 | a_strex.o: ../../include/openssl/x509_vfy.h a_strex.c charmap.h |
| 285 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h | 309 | a_strnid.o: ../../e_os.h ../../include/openssl/asn1.h |
| 286 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 310 | a_strnid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| @@ -325,18 +349,26 @@ a_utf8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 325 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 349 | a_utf8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 326 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 350 | a_utf8.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 327 | a_utf8.o: ../cryptlib.h a_utf8.c | 351 | a_utf8.o: ../cryptlib.h a_utf8.c |
| 328 | a_verify.o: ../../e_os.h ../../include/openssl/asn1.h | 352 | a_verify.o: ../../e_os.h ../../include/openssl/aes.h |
| 329 | a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 353 | a_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 330 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 354 | a_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 331 | a_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 355 | a_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 332 | a_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 356 | a_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 333 | a_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 357 | a_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 358 | a_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 359 | a_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 360 | a_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 361 | a_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 362 | a_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 334 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 363 | a_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 335 | a_verify.o: ../../include/openssl/opensslconf.h | 364 | a_verify.o: ../../include/openssl/opensslconf.h |
| 336 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 365 | a_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 337 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 366 | a_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 367 | a_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 368 | a_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 338 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 369 | a_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 339 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 370 | a_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 371 | a_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 340 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 372 | a_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 341 | a_verify.o: ../cryptlib.h a_verify.c | 373 | a_verify.o: ../cryptlib.h a_verify.c |
| 342 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 374 | asn1_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| @@ -347,10 +379,11 @@ asn1_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 347 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 379 | asn1_err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 348 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c | 380 | asn1_err.o: ../../include/openssl/symhacks.h asn1_err.c |
| 349 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 381 | asn1_lib.o: ../../e_os.h ../../include/openssl/asn1.h |
| 350 | asn1_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 382 | asn1_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 351 | asn1_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 383 | asn1_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 352 | asn1_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 384 | asn1_lib.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 353 | asn1_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 385 | asn1_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 386 | asn1_lib.o: ../../include/openssl/opensslconf.h | ||
| 354 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 387 | asn1_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 355 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 388 | asn1_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 356 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c | 389 | asn1_lib.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_lib.c |
| @@ -363,19 +396,27 @@ asn1_par.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | |||
| 363 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 396 | asn1_par.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 364 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 397 | asn1_par.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 365 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c | 398 | asn1_par.o: ../../include/openssl/symhacks.h ../cryptlib.h asn1_par.c |
| 366 | asn_moid.o: ../../e_os.h ../../include/openssl/asn1.h | 399 | asn_moid.o: ../../e_os.h ../../include/openssl/aes.h |
| 367 | asn_moid.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 400 | asn_moid.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 368 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 401 | asn_moid.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 369 | asn_moid.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 402 | asn_moid.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 370 | asn_moid.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 403 | asn_moid.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 371 | asn_moid.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 404 | asn_moid.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 372 | asn_moid.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 405 | asn_moid.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 406 | asn_moid.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 407 | asn_moid.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 408 | asn_moid.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 409 | asn_moid.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 410 | asn_moid.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 373 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 411 | asn_moid.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 374 | asn_moid.o: ../../include/openssl/opensslconf.h | 412 | asn_moid.o: ../../include/openssl/opensslconf.h |
| 375 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 413 | asn_moid.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 376 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 414 | asn_moid.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 415 | asn_moid.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 416 | asn_moid.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 377 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 417 | asn_moid.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 378 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 418 | asn_moid.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 419 | asn_moid.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 379 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 420 | asn_moid.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 380 | asn_moid.o: ../cryptlib.h asn_moid.c | 421 | asn_moid.o: ../cryptlib.h asn_moid.c |
| 381 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h | 422 | asn_pack.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -386,28 +427,44 @@ asn_pack.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 386 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 427 | asn_pack.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 387 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 428 | asn_pack.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 388 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c | 429 | asn_pack.o: ../../include/openssl/symhacks.h ../cryptlib.h asn_pack.c |
| 389 | d2i_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 430 | d2i_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 431 | d2i_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 390 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 432 | d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 391 | d2i_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 433 | d2i_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 392 | d2i_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 434 | d2i_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 393 | d2i_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 435 | d2i_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 394 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 436 | d2i_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 437 | d2i_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 438 | d2i_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 439 | d2i_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 440 | d2i_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 395 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 441 | d2i_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 396 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 442 | d2i_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 443 | d2i_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 444 | d2i_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 397 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 445 | d2i_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 398 | d2i_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 446 | d2i_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 399 | d2i_pr.o: ../cryptlib.h d2i_pr.c | 447 | d2i_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 400 | d2i_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 448 | d2i_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pr.c |
| 449 | d2i_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 450 | d2i_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 401 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 451 | d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 402 | d2i_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 452 | d2i_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 403 | d2i_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 453 | d2i_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 404 | d2i_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 454 | d2i_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 405 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 455 | d2i_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 456 | d2i_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 457 | d2i_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 458 | d2i_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 459 | d2i_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 406 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 460 | d2i_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 407 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 461 | d2i_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 462 | d2i_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 463 | d2i_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 408 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 464 | d2i_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 409 | d2i_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 465 | d2i_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 410 | d2i_pu.o: ../cryptlib.h d2i_pu.c | 466 | d2i_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 467 | d2i_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h d2i_pu.c | ||
| 411 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 468 | evp_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
| 412 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 469 | evp_asn1.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 413 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 470 | evp_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| @@ -441,122 +498,194 @@ f_string.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 441 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 498 | f_string.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 442 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 499 | f_string.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 443 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c | 500 | f_string.o: ../../include/openssl/symhacks.h ../cryptlib.h f_string.c |
| 444 | i2d_pr.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 501 | i2d_pr.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 502 | i2d_pr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 445 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 503 | i2d_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 446 | i2d_pr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 504 | i2d_pr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 447 | i2d_pr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 505 | i2d_pr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 448 | i2d_pr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 506 | i2d_pr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 449 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 507 | i2d_pr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 508 | i2d_pr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 509 | i2d_pr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 510 | i2d_pr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 511 | i2d_pr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 450 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 512 | i2d_pr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 451 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 513 | i2d_pr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 514 | i2d_pr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 515 | i2d_pr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 452 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 516 | i2d_pr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 453 | i2d_pr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 517 | i2d_pr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 454 | i2d_pr.o: ../cryptlib.h i2d_pr.c | 518 | i2d_pr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 455 | i2d_pu.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 519 | i2d_pr.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pr.c |
| 520 | i2d_pu.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 521 | i2d_pu.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 456 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 522 | i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 457 | i2d_pu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 523 | i2d_pu.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 458 | i2d_pu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 524 | i2d_pu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 459 | i2d_pu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 525 | i2d_pu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 460 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 526 | i2d_pu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 527 | i2d_pu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 528 | i2d_pu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 529 | i2d_pu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 530 | i2d_pu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 461 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 531 | i2d_pu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 462 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 532 | i2d_pu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 533 | i2d_pu.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 534 | i2d_pu.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 463 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 535 | i2d_pu.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 464 | i2d_pu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 536 | i2d_pu.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 465 | i2d_pu.o: ../cryptlib.h i2d_pu.c | 537 | i2d_pu.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 466 | n_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 538 | i2d_pu.o: ../../include/openssl/ui_compat.h ../cryptlib.h i2d_pu.c |
| 539 | n_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 467 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h | 540 | n_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/asn1t.h |
| 468 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 541 | n_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 469 | n_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 542 | n_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 543 | n_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 544 | n_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 470 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 545 | n_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 471 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 546 | n_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 472 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 547 | n_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 473 | n_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 548 | n_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 474 | n_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 549 | n_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 475 | n_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 550 | n_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 476 | n_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 551 | n_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 477 | n_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 552 | n_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 478 | n_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 553 | n_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 479 | n_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h n_pkey.c | 554 | n_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 480 | nsseq.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 555 | n_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 481 | nsseq.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 556 | n_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 482 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 557 | n_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 483 | nsseq.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 558 | n_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 484 | nsseq.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 559 | n_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 485 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 560 | n_pkey.o: ../cryptlib.h n_pkey.c |
| 561 | nsseq.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 562 | nsseq.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 563 | nsseq.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 564 | nsseq.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 565 | nsseq.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 566 | nsseq.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 567 | nsseq.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 568 | nsseq.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 569 | nsseq.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 570 | nsseq.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 571 | nsseq.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 486 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 572 | nsseq.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 487 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 573 | nsseq.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 488 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 574 | nsseq.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 575 | nsseq.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 576 | nsseq.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 489 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 577 | nsseq.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 490 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 578 | nsseq.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 579 | nsseq.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 491 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c | 580 | nsseq.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h nsseq.c |
| 492 | p5_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | 581 | p5_pbe.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 493 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 582 | p5_pbe.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 494 | p5_pbe.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 583 | p5_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 495 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 584 | p5_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 585 | p5_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 586 | p5_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 496 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 587 | p5_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 497 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 588 | p5_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 498 | p5_pbe.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 589 | p5_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 499 | p5_pbe.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 590 | p5_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 500 | p5_pbe.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 591 | p5_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 501 | p5_pbe.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 592 | p5_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 502 | p5_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 593 | p5_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 503 | p5_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 594 | p5_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 504 | p5_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 595 | p5_pbe.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 505 | p5_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbe.c | 596 | p5_pbe.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 506 | p5_pbev2.o: ../../e_os.h ../../include/openssl/asn1.h | 597 | p5_pbe.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 507 | p5_pbev2.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 598 | p5_pbe.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 599 | p5_pbe.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 600 | p5_pbe.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 601 | p5_pbe.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 602 | p5_pbe.o: ../cryptlib.h p5_pbe.c | ||
| 603 | p5_pbev2.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 604 | p5_pbev2.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 605 | p5_pbev2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 508 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 606 | p5_pbev2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 509 | p5_pbev2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 607 | p5_pbev2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 510 | p5_pbev2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 608 | p5_pbev2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 511 | p5_pbev2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 609 | p5_pbev2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 512 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 610 | p5_pbev2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 611 | p5_pbev2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 612 | p5_pbev2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 613 | p5_pbev2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 614 | p5_pbev2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 513 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 615 | p5_pbev2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 514 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 616 | p5_pbev2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 515 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 617 | p5_pbev2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 618 | p5_pbev2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 619 | p5_pbev2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 516 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 620 | p5_pbev2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 517 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 621 | p5_pbev2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 518 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 622 | p5_pbev2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 623 | p5_pbev2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 519 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c | 624 | p5_pbev2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_pbev2.c |
| 520 | p8_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 625 | p8_pkey.o: ../../e_os.h ../../include/openssl/aes.h |
| 521 | p8_pkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 626 | p8_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 627 | p8_pkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 522 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 628 | p8_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 523 | p8_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 629 | p8_pkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 524 | p8_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 630 | p8_pkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 525 | p8_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 631 | p8_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 526 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 632 | p8_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 633 | p8_pkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 634 | p8_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 635 | p8_pkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 636 | p8_pkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 527 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 637 | p8_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 528 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 638 | p8_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 529 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 639 | p8_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 640 | p8_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 641 | p8_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 530 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 642 | p8_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 531 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 643 | p8_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 644 | p8_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 532 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 645 | p8_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 533 | p8_pkey.o: ../cryptlib.h p8_pkey.c | 646 | p8_pkey.o: ../cryptlib.h p8_pkey.c |
| 534 | t_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | 647 | t_bitst.o: ../../e_os.h ../../include/openssl/aes.h |
| 535 | t_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 648 | t_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 536 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 649 | t_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 537 | t_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 650 | t_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 538 | t_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 651 | t_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 539 | t_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 652 | t_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 540 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 653 | t_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 654 | t_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 655 | t_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 656 | t_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 657 | t_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 658 | t_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 541 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 659 | t_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 542 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 660 | t_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 543 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 661 | t_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 662 | t_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 663 | t_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 544 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 664 | t_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 545 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 665 | t_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 666 | t_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 546 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 667 | t_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 547 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c | 668 | t_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h t_bitst.c |
| 548 | t_crl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 669 | t_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 670 | t_crl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 549 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 671 | t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 550 | t_crl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 672 | t_crl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 551 | t_crl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 673 | t_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 552 | t_crl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 674 | t_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 553 | t_crl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 675 | t_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 676 | t_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 677 | t_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 678 | t_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 679 | t_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 554 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 680 | t_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 555 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 681 | t_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 556 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 682 | t_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 683 | t_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 684 | t_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 557 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 685 | t_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 558 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 686 | t_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 559 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 687 | t_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 688 | t_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 560 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 689 | t_crl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 561 | t_crl.o: ../cryptlib.h t_crl.c | 690 | t_crl.o: ../cryptlib.h t_crl.c |
| 562 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 691 | t_pkey.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| @@ -568,59 +697,91 @@ t_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 568 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h | 697 | t_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rsa.h |
| 569 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 698 | t_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 570 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c | 699 | t_pkey.o: ../../include/openssl/symhacks.h ../cryptlib.h t_pkey.c |
| 571 | t_req.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 700 | t_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 701 | t_req.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 572 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 702 | t_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 573 | t_req.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 703 | t_req.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 574 | t_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 704 | t_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 575 | t_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 705 | t_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 576 | t_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 706 | t_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 707 | t_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 708 | t_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 709 | t_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 710 | t_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 577 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 711 | t_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 578 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 712 | t_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 579 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 713 | t_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 714 | t_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 715 | t_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 580 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 716 | t_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 581 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 717 | t_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 582 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 718 | t_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 719 | t_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 583 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 720 | t_req.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 584 | t_req.o: ../cryptlib.h t_req.c | 721 | t_req.o: ../cryptlib.h t_req.c |
| 585 | t_spki.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 722 | t_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 723 | t_spki.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 586 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 724 | t_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 587 | t_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 725 | t_spki.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 588 | t_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 726 | t_spki.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 589 | t_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 727 | t_spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 590 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 728 | t_spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 729 | t_spki.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 730 | t_spki.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 731 | t_spki.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 732 | t_spki.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 591 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 733 | t_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 592 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 734 | t_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 593 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 735 | t_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 736 | t_spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 737 | t_spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 594 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 738 | t_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 595 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 739 | t_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 740 | t_spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 596 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 741 | t_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 597 | t_spki.o: ../cryptlib.h t_spki.c | 742 | t_spki.o: ../cryptlib.h t_spki.c |
| 598 | t_x509.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 743 | t_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 744 | t_x509.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 599 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 745 | t_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 600 | t_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 746 | t_x509.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 601 | t_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 747 | t_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 602 | t_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 748 | t_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 603 | t_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 749 | t_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 750 | t_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 751 | t_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 752 | t_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 753 | t_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 604 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 754 | t_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 605 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 755 | t_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 606 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 756 | t_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 757 | t_x509.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 758 | t_x509.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 607 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 759 | t_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 608 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 760 | t_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 609 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 761 | t_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 762 | t_x509.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 610 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 763 | t_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 611 | t_x509.o: ../cryptlib.h t_x509.c | 764 | t_x509.o: ../cryptlib.h t_x509.c |
| 612 | t_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | 765 | t_x509a.o: ../../e_os.h ../../include/openssl/aes.h |
| 613 | t_x509a.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 766 | t_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 614 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 767 | t_x509a.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 615 | t_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 768 | t_x509a.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 616 | t_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 769 | t_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 617 | t_x509a.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 770 | t_x509a.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 771 | t_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 772 | t_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 773 | t_x509a.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 774 | t_x509a.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 775 | t_x509a.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 618 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 776 | t_x509a.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 619 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 777 | t_x509a.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 620 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 778 | t_x509a.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 779 | t_x509a.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 780 | t_x509a.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 621 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 781 | t_x509a.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 622 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 782 | t_x509a.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 623 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 783 | t_x509a.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 784 | t_x509a.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 624 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c | 785 | t_x509a.o: ../../include/openssl/x509_vfy.h ../cryptlib.h t_x509a.c |
| 625 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 786 | tasn_dec.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 626 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 787 | tasn_dec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| @@ -672,31 +833,47 @@ tasn_utl.o: ../../include/openssl/opensslconf.h | |||
| 672 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 833 | tasn_utl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 673 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 834 | tasn_utl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 674 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c | 835 | tasn_utl.o: ../../include/openssl/symhacks.h tasn_utl.c |
| 675 | x_algor.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 836 | x_algor.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 676 | x_algor.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 837 | x_algor.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 677 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 838 | x_algor.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 678 | x_algor.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 839 | x_algor.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 679 | x_algor.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 840 | x_algor.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 680 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 841 | x_algor.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 842 | x_algor.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 843 | x_algor.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 844 | x_algor.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 845 | x_algor.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 846 | x_algor.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 681 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 847 | x_algor.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 682 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 848 | x_algor.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 683 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 849 | x_algor.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 850 | x_algor.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 851 | x_algor.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 684 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 852 | x_algor.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 685 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 853 | x_algor.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 854 | x_algor.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 686 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 855 | x_algor.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 687 | x_algor.o: x_algor.c | 856 | x_algor.o: x_algor.c |
| 688 | x_attrib.o: ../../e_os.h ../../include/openssl/asn1.h | 857 | x_attrib.o: ../../e_os.h ../../include/openssl/aes.h |
| 689 | x_attrib.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 858 | x_attrib.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 859 | x_attrib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 690 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 860 | x_attrib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 691 | x_attrib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 861 | x_attrib.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 692 | x_attrib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 862 | x_attrib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 693 | x_attrib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 863 | x_attrib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 694 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 864 | x_attrib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 865 | x_attrib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 866 | x_attrib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 867 | x_attrib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 868 | x_attrib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 695 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 869 | x_attrib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 696 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 870 | x_attrib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 697 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 871 | x_attrib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 872 | x_attrib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 873 | x_attrib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 698 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 874 | x_attrib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 699 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 875 | x_attrib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 876 | x_attrib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 700 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 877 | x_attrib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 701 | x_attrib.o: ../cryptlib.h x_attrib.c | 878 | x_attrib.o: ../cryptlib.h x_attrib.c |
| 702 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h | 879 | x_bignum.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -708,44 +885,67 @@ x_bignum.o: ../../include/openssl/opensslconf.h | |||
| 708 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 885 | x_bignum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 709 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 886 | x_bignum.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 710 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c | 887 | x_bignum.o: ../../include/openssl/symhacks.h ../cryptlib.h x_bignum.c |
| 711 | x_crl.o: ../../e_os.h ../../include/openssl/asn1.h | 888 | x_crl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 712 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 889 | x_crl.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 713 | x_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 890 | x_crl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 714 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 891 | x_crl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 892 | x_crl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 893 | x_crl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 715 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 894 | x_crl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 716 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 895 | x_crl.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 717 | x_crl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 896 | x_crl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 718 | x_crl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 897 | x_crl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 719 | x_crl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 898 | x_crl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 720 | x_crl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 899 | x_crl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 721 | x_crl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 900 | x_crl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 722 | x_crl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 901 | x_crl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 723 | x_crl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 902 | x_crl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 724 | x_crl.o: ../cryptlib.h x_crl.c | 903 | x_crl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 725 | x_exten.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 904 | x_crl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 726 | x_exten.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 905 | x_crl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 727 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 906 | x_crl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 728 | x_exten.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 907 | x_crl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 729 | x_exten.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 908 | x_crl.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_crl.c |
| 730 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 909 | x_exten.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 910 | x_exten.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 911 | x_exten.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 912 | x_exten.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 913 | x_exten.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 914 | x_exten.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 915 | x_exten.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 916 | x_exten.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 917 | x_exten.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 918 | x_exten.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 919 | x_exten.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 731 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 920 | x_exten.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 732 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 921 | x_exten.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 733 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 922 | x_exten.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 923 | x_exten.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 924 | x_exten.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 734 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 925 | x_exten.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 735 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 926 | x_exten.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 927 | x_exten.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 736 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 928 | x_exten.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 737 | x_exten.o: x_exten.c | 929 | x_exten.o: x_exten.c |
| 738 | x_info.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 930 | x_info.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 931 | x_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 739 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 932 | x_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 740 | x_info.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 933 | x_info.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 741 | x_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 934 | x_info.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 742 | x_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 935 | x_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 743 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 936 | x_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 937 | x_info.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 938 | x_info.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 939 | x_info.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 940 | x_info.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 744 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 941 | x_info.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 745 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 942 | x_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 746 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 943 | x_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 944 | x_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 945 | x_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 747 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 946 | x_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 748 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 947 | x_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 948 | x_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 749 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 949 | x_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 750 | x_info.o: ../cryptlib.h x_info.c | 950 | x_info.o: ../cryptlib.h x_info.c |
| 751 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h | 951 | x_long.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -757,130 +957,195 @@ x_long.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 757 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 957 | x_long.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 758 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 958 | x_long.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 759 | x_long.o: ../cryptlib.h x_long.c | 959 | x_long.o: ../cryptlib.h x_long.c |
| 760 | x_name.o: ../../e_os.h ../../include/openssl/asn1.h | 960 | x_name.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 761 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 961 | x_name.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 762 | x_name.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 962 | x_name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 763 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 963 | x_name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 964 | x_name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 965 | x_name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 764 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 966 | x_name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 765 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 967 | x_name.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 766 | x_name.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 968 | x_name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 767 | x_name.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 969 | x_name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 768 | x_name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 970 | x_name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 769 | x_name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 971 | x_name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 770 | x_name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 972 | x_name.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 771 | x_name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 973 | x_name.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 772 | x_name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 974 | x_name.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 773 | x_name.o: ../cryptlib.h x_name.c | 975 | x_name.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 774 | x_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 976 | x_name.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 977 | x_name.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 978 | x_name.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 979 | x_name.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 980 | x_name.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_name.c | ||
| 981 | x_pkey.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 775 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 982 | x_pkey.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 776 | x_pkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 983 | x_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 777 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 984 | x_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 985 | x_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 986 | x_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 778 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 987 | x_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 779 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 988 | x_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 780 | x_pkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 989 | x_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 781 | x_pkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 990 | x_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 782 | x_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 991 | x_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 783 | x_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 992 | x_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 784 | x_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 993 | x_pkey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 785 | x_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 994 | x_pkey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 786 | x_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 995 | x_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 787 | x_pkey.o: ../cryptlib.h x_pkey.c | 996 | x_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 788 | x_pubkey.o: ../../e_os.h ../../include/openssl/asn1.h | 997 | x_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 789 | x_pubkey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 998 | x_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 999 | x_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1000 | x_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1001 | x_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_pkey.c | ||
| 1002 | x_pubkey.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1003 | x_pubkey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1004 | x_pubkey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 790 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1005 | x_pubkey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 791 | x_pubkey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1006 | x_pubkey.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 792 | x_pubkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1007 | x_pubkey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 793 | x_pubkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1008 | x_pubkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 794 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1009 | x_pubkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1010 | x_pubkey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1011 | x_pubkey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1012 | x_pubkey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1013 | x_pubkey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 795 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1014 | x_pubkey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 796 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1015 | x_pubkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 797 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1016 | x_pubkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1017 | x_pubkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1018 | x_pubkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 798 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1019 | x_pubkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 799 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1020 | x_pubkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1021 | x_pubkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 800 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1022 | x_pubkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 801 | x_pubkey.o: ../cryptlib.h x_pubkey.c | 1023 | x_pubkey.o: ../cryptlib.h x_pubkey.c |
| 802 | x_req.o: ../../e_os.h ../../include/openssl/asn1.h | 1024 | x_req.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 803 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1025 | x_req.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 804 | x_req.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1026 | x_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 805 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1027 | x_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1028 | x_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1029 | x_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 806 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1030 | x_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 807 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1031 | x_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 808 | x_req.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1032 | x_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 809 | x_req.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1033 | x_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 810 | x_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1034 | x_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 811 | x_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1035 | x_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 812 | x_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1036 | x_req.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 813 | x_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1037 | x_req.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 814 | x_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1038 | x_req.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 815 | x_req.o: ../cryptlib.h x_req.c | 1039 | x_req.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 816 | x_sig.o: ../../e_os.h ../../include/openssl/asn1.h | 1040 | x_req.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1041 | x_req.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1042 | x_req.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1043 | x_req.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1044 | x_req.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_req.c | ||
| 1045 | x_sig.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 817 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1046 | x_sig.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 818 | x_sig.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1047 | x_sig.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 819 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1048 | x_sig.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1049 | x_sig.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1050 | x_sig.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 820 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1051 | x_sig.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 821 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1052 | x_sig.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 822 | x_sig.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1053 | x_sig.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 823 | x_sig.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1054 | x_sig.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 824 | x_sig.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1055 | x_sig.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 825 | x_sig.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1056 | x_sig.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 826 | x_sig.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1057 | x_sig.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 827 | x_sig.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1058 | x_sig.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 828 | x_sig.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1059 | x_sig.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 829 | x_sig.o: ../cryptlib.h x_sig.c | 1060 | x_sig.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 830 | x_spki.o: ../../e_os.h ../../include/openssl/asn1.h | 1061 | x_sig.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1062 | x_sig.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1063 | x_sig.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1064 | x_sig.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1065 | x_sig.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_sig.c | ||
| 1066 | x_spki.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 831 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1067 | x_spki.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 832 | x_spki.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1068 | x_spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 833 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1069 | x_spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1070 | x_spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1071 | x_spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 834 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1072 | x_spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 835 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1073 | x_spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 836 | x_spki.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1074 | x_spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 837 | x_spki.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1075 | x_spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 838 | x_spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1076 | x_spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 839 | x_spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1077 | x_spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 840 | x_spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1078 | x_spki.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 841 | x_spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1079 | x_spki.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 842 | x_spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1080 | x_spki.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 843 | x_spki.o: ../cryptlib.h x_spki.c | 1081 | x_spki.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 844 | x_val.o: ../../e_os.h ../../include/openssl/asn1.h | 1082 | x_spki.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1083 | x_spki.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1084 | x_spki.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1085 | x_spki.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1086 | x_spki.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_spki.c | ||
| 1087 | x_val.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 845 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1088 | x_val.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 846 | x_val.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1089 | x_val.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 847 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1090 | x_val.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 1091 | x_val.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 1092 | x_val.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 848 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1093 | x_val.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 849 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1094 | x_val.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 850 | x_val.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1095 | x_val.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 851 | x_val.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1096 | x_val.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 852 | x_val.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1097 | x_val.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 853 | x_val.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1098 | x_val.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 854 | x_val.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1099 | x_val.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 855 | x_val.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1100 | x_val.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 856 | x_val.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1101 | x_val.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 857 | x_val.o: ../cryptlib.h x_val.c | 1102 | x_val.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 858 | x_x509.o: ../../e_os.h ../../include/openssl/asn1.h | 1103 | x_val.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 1104 | x_val.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 1105 | x_val.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 1106 | x_val.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 1107 | x_val.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x_val.c | ||
| 1108 | x_x509.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 859 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1109 | x_x509.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 860 | x_x509.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1110 | x_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 1111 | x_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 861 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 1112 | x_x509.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 1113 | x_x509.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 862 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 1114 | x_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 863 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 1115 | x_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 864 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 1116 | x_x509.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 865 | x_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 1117 | x_x509.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 866 | x_x509.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 1118 | x_x509.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 867 | x_x509.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 1119 | x_x509.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 868 | x_x509.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 1120 | x_x509.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 869 | x_x509.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 1121 | x_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 870 | x_x509.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 1122 | x_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 871 | x_x509.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 1123 | x_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 872 | x_x509.o: ../cryptlib.h x_x509.c | 1124 | x_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 873 | x_x509a.o: ../../e_os.h ../../include/openssl/asn1.h | 1125 | x_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 874 | x_x509a.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 1126 | x_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1127 | x_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 1128 | x_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 1129 | x_x509.o: ../../include/openssl/x509v3.h ../cryptlib.h x_x509.c | ||
| 1130 | x_x509a.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 1131 | x_x509a.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | ||
| 1132 | x_x509a.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 875 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1133 | x_x509a.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 876 | x_x509a.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1134 | x_x509a.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 877 | x_x509a.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1135 | x_x509a.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 878 | x_x509a.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1136 | x_x509a.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 879 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1137 | x_x509a.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1138 | x_x509a.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1139 | x_x509a.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1140 | x_x509a.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1141 | x_x509a.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 880 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1142 | x_x509a.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 881 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1143 | x_x509a.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 882 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1144 | x_x509a.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1145 | x_x509a.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1146 | x_x509a.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 883 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1147 | x_x509a.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 884 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1148 | x_x509a.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1149 | x_x509a.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 885 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1150 | x_x509a.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 886 | x_x509a.o: ../cryptlib.h x_x509a.c | 1151 | x_x509a.o: ../cryptlib.h x_x509a.c |
diff --git a/src/lib/libssl/src/crypto/asn1/a_strex.c b/src/lib/libssl/src/crypto/asn1/a_strex.c index 128aa7e772..8dab29dca1 100644 --- a/src/lib/libssl/src/crypto/asn1/a_strex.c +++ b/src/lib/libssl/src/crypto/asn1/a_strex.c | |||
| @@ -77,8 +77,8 @@ | |||
| 77 | /* Three IO functions for sending data to memory, a BIO and | 77 | /* Three IO functions for sending data to memory, a BIO and |
| 78 | * and a FILE pointer. | 78 | * and a FILE pointer. |
| 79 | */ | 79 | */ |
| 80 | 80 | #if 0 /* never used */ | |
| 81 | int send_mem_chars(void *arg, const void *buf, int len) | 81 | static int send_mem_chars(void *arg, const void *buf, int len) |
| 82 | { | 82 | { |
| 83 | unsigned char **out = arg; | 83 | unsigned char **out = arg; |
| 84 | if(!out) return 1; | 84 | if(!out) return 1; |
| @@ -86,15 +86,16 @@ int send_mem_chars(void *arg, const void *buf, int len) | |||
| 86 | *out += len; | 86 | *out += len; |
| 87 | return 1; | 87 | return 1; |
| 88 | } | 88 | } |
| 89 | #endif | ||
| 89 | 90 | ||
| 90 | int send_bio_chars(void *arg, const void *buf, int len) | 91 | static int send_bio_chars(void *arg, const void *buf, int len) |
| 91 | { | 92 | { |
| 92 | if(!arg) return 1; | 93 | if(!arg) return 1; |
| 93 | if(BIO_write(arg, buf, len) != len) return 0; | 94 | if(BIO_write(arg, buf, len) != len) return 0; |
| 94 | return 1; | 95 | return 1; |
| 95 | } | 96 | } |
| 96 | 97 | ||
| 97 | int send_fp_chars(void *arg, const void *buf, int len) | 98 | static int send_fp_chars(void *arg, const void *buf, int len) |
| 98 | { | 99 | { |
| 99 | if(!arg) return 1; | 100 | if(!arg) return 1; |
| 100 | if(fwrite(buf, 1, len, arg) != (unsigned int)len) return 0; | 101 | if(fwrite(buf, 1, len, arg) != (unsigned int)len) return 0; |
| @@ -240,7 +241,7 @@ static int do_hex_dump(char_io *io_ch, void *arg, unsigned char *buf, int buflen | |||
| 240 | * #01234 format. | 241 | * #01234 format. |
| 241 | */ | 242 | */ |
| 242 | 243 | ||
| 243 | int do_dump(unsigned long lflags, char_io *io_ch, void *arg, ASN1_STRING *str) | 244 | static int do_dump(unsigned long lflags, char_io *io_ch, void *arg, ASN1_STRING *str) |
| 244 | { | 245 | { |
| 245 | /* Placing the ASN1_STRING in a temp ASN1_TYPE allows | 246 | /* Placing the ASN1_STRING in a temp ASN1_TYPE allows |
| 246 | * the DER encoding to readily obtained | 247 | * the DER encoding to readily obtained |
diff --git a/src/lib/libssl/src/crypto/asn1/a_utctm.c b/src/lib/libssl/src/crypto/asn1/a_utctm.c index ed2d827db2..dbb4a42c9d 100644 --- a/src/lib/libssl/src/crypto/asn1/a_utctm.c +++ b/src/lib/libssl/src/crypto/asn1/a_utctm.c | |||
| @@ -222,6 +222,7 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t) | |||
| 222 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | 222 | int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) |
| 223 | { | 223 | { |
| 224 | struct tm *tm; | 224 | struct tm *tm; |
| 225 | struct tm data; | ||
| 225 | int offset; | 226 | int offset; |
| 226 | int year; | 227 | int year; |
| 227 | 228 | ||
| @@ -238,7 +239,7 @@ int ASN1_UTCTIME_cmp_time_t(const ASN1_UTCTIME *s, time_t t) | |||
| 238 | 239 | ||
| 239 | t -= offset*60; /* FIXME: may overflow in extreme cases */ | 240 | t -= offset*60; /* FIXME: may overflow in extreme cases */ |
| 240 | 241 | ||
| 241 | { struct tm data; tm = OPENSSL_gmtime(&t, &data); } | 242 | tm = OPENSSL_gmtime(&t, &data); |
| 242 | 243 | ||
| 243 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 | 244 | #define return_cmp(a,b) if ((a)<(b)) return -1; else if ((a)>(b)) return 1 |
| 244 | year = g2(s->data); | 245 | year = g2(s->data); |
diff --git a/src/lib/libssl/src/crypto/asn1/asn1.h b/src/lib/libssl/src/crypto/asn1/asn1.h index 0d1713f8dd..dbb30f4f22 100644 --- a/src/lib/libssl/src/crypto/asn1/asn1.h +++ b/src/lib/libssl/src/crypto/asn1/asn1.h | |||
| @@ -773,6 +773,7 @@ int ASN1_OCTET_STRING_cmp(ASN1_OCTET_STRING *a, ASN1_OCTET_STRING *b); | |||
| 773 | int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, unsigned char *data, int len); | 773 | int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, unsigned char *data, int len); |
| 774 | 774 | ||
| 775 | DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING) | 775 | DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING) |
| 776 | DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING) | ||
| 776 | DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING) | 777 | DECLARE_ASN1_FUNCTIONS(ASN1_UTF8STRING) |
| 777 | DECLARE_ASN1_FUNCTIONS(ASN1_NULL) | 778 | DECLARE_ASN1_FUNCTIONS(ASN1_NULL) |
| 778 | DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING) | 779 | DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING) |
diff --git a/src/lib/libssl/src/crypto/asn1/asn1_lib.c b/src/lib/libssl/src/crypto/asn1/asn1_lib.c index f210be9559..0638870ab7 100644 --- a/src/lib/libssl/src/crypto/asn1/asn1_lib.c +++ b/src/lib/libssl/src/crypto/asn1/asn1_lib.c | |||
| @@ -60,6 +60,7 @@ | |||
| 60 | #include <limits.h> | 60 | #include <limits.h> |
| 61 | #include "cryptlib.h" | 61 | #include "cryptlib.h" |
| 62 | #include <openssl/asn1.h> | 62 | #include <openssl/asn1.h> |
| 63 | #include <openssl/asn1_mac.h> | ||
| 63 | 64 | ||
| 64 | static int asn1_get_length(unsigned char **pp,int *inf,long *rl,int max); | 65 | static int asn1_get_length(unsigned char **pp,int *inf,long *rl,int max); |
| 65 | static void asn1_put_length(unsigned char **pp, int length); | 66 | static void asn1_put_length(unsigned char **pp, int length); |
diff --git a/src/lib/libssl/src/crypto/asn1/n_pkey.c b/src/lib/libssl/src/crypto/asn1/n_pkey.c index 49f80fffd2..9146ee02c9 100644 --- a/src/lib/libssl/src/crypto/asn1/n_pkey.c +++ b/src/lib/libssl/src/crypto/asn1/n_pkey.c | |||
| @@ -92,6 +92,8 @@ ASN1_BROKEN_SEQUENCE(NETSCAPE_ENCRYPTED_PKEY) = { | |||
| 92 | ASN1_SIMPLE(NETSCAPE_ENCRYPTED_PKEY, enckey, X509_SIG) | 92 | ASN1_SIMPLE(NETSCAPE_ENCRYPTED_PKEY, enckey, X509_SIG) |
| 93 | } ASN1_BROKEN_SEQUENCE_END(NETSCAPE_ENCRYPTED_PKEY) | 93 | } ASN1_BROKEN_SEQUENCE_END(NETSCAPE_ENCRYPTED_PKEY) |
| 94 | 94 | ||
| 95 | DECLARE_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY) | ||
| 96 | DECLARE_ASN1_ENCODE_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY,NETSCAPE_ENCRYPTED_PKEY) | ||
| 95 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY) | 97 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_ENCRYPTED_PKEY) |
| 96 | 98 | ||
| 97 | ASN1_SEQUENCE(NETSCAPE_PKEY) = { | 99 | ASN1_SEQUENCE(NETSCAPE_PKEY) = { |
| @@ -100,6 +102,8 @@ ASN1_SEQUENCE(NETSCAPE_PKEY) = { | |||
| 100 | ASN1_SIMPLE(NETSCAPE_PKEY, private_key, ASN1_OCTET_STRING) | 102 | ASN1_SIMPLE(NETSCAPE_PKEY, private_key, ASN1_OCTET_STRING) |
| 101 | } ASN1_SEQUENCE_END(NETSCAPE_PKEY) | 103 | } ASN1_SEQUENCE_END(NETSCAPE_PKEY) |
| 102 | 104 | ||
| 105 | DECLARE_ASN1_FUNCTIONS_const(NETSCAPE_PKEY) | ||
| 106 | DECLARE_ASN1_ENCODE_FUNCTIONS_const(NETSCAPE_PKEY,NETSCAPE_PKEY) | ||
| 103 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_PKEY) | 107 | IMPLEMENT_ASN1_FUNCTIONS_const(NETSCAPE_PKEY) |
| 104 | 108 | ||
| 105 | static RSA *d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os, | 109 | static RSA *d2i_RSA_NET_2(RSA **a, ASN1_OCTET_STRING *os, |
diff --git a/src/lib/libssl/src/crypto/asn1/t_pkey.c b/src/lib/libssl/src/crypto/asn1/t_pkey.c index 8060115202..2d46914cb1 100644 --- a/src/lib/libssl/src/crypto/asn1/t_pkey.c +++ b/src/lib/libssl/src/crypto/asn1/t_pkey.c | |||
| @@ -96,10 +96,34 @@ int RSA_print(BIO *bp, const RSA *x, int off) | |||
| 96 | char str[128]; | 96 | char str[128]; |
| 97 | const char *s; | 97 | const char *s; |
| 98 | unsigned char *m=NULL; | 98 | unsigned char *m=NULL; |
| 99 | int i,ret=0; | 99 | int ret=0; |
| 100 | size_t buf_len=0, i; | ||
| 100 | 101 | ||
| 101 | i=RSA_size(x); | 102 | if (x->n) |
| 102 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 103 | buf_len = (size_t)BN_num_bytes(x->n); |
| 104 | if (x->e) | ||
| 105 | if (buf_len < (i = (size_t)BN_num_bytes(x->e))) | ||
| 106 | buf_len = i; | ||
| 107 | if (x->d) | ||
| 108 | if (buf_len < (i = (size_t)BN_num_bytes(x->d))) | ||
| 109 | buf_len = i; | ||
| 110 | if (x->p) | ||
| 111 | if (buf_len < (i = (size_t)BN_num_bytes(x->p))) | ||
| 112 | buf_len = i; | ||
| 113 | if (x->q) | ||
| 114 | if (buf_len < (i = (size_t)BN_num_bytes(x->q))) | ||
| 115 | buf_len = i; | ||
| 116 | if (x->dmp1) | ||
| 117 | if (buf_len < (i = (size_t)BN_num_bytes(x->dmp1))) | ||
| 118 | buf_len = i; | ||
| 119 | if (x->dmq1) | ||
| 120 | if (buf_len < (i = (size_t)BN_num_bytes(x->dmq1))) | ||
| 121 | buf_len = i; | ||
| 122 | if (x->iqmp) | ||
| 123 | if (buf_len < (i = (size_t)BN_num_bytes(x->iqmp))) | ||
| 124 | buf_len = i; | ||
| 125 | |||
| 126 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 103 | if (m == NULL) | 127 | if (m == NULL) |
| 104 | { | 128 | { |
| 105 | RSAerr(RSA_F_RSA_PRINT,ERR_R_MALLOC_FAILURE); | 129 | RSAerr(RSA_F_RSA_PRINT,ERR_R_MALLOC_FAILURE); |
| @@ -161,22 +185,25 @@ int DSA_print(BIO *bp, const DSA *x, int off) | |||
| 161 | { | 185 | { |
| 162 | char str[128]; | 186 | char str[128]; |
| 163 | unsigned char *m=NULL; | 187 | unsigned char *m=NULL; |
| 164 | int i,ret=0; | 188 | int ret=0; |
| 165 | BIGNUM *bn=NULL; | 189 | size_t buf_len=0,i; |
| 166 | 190 | ||
| 167 | if (x->p != NULL) | 191 | if (x->p) |
| 168 | bn=x->p; | 192 | buf_len = (size_t)BN_num_bytes(x->p); |
| 169 | else if (x->priv_key != NULL) | 193 | if (x->q) |
| 170 | bn=x->priv_key; | 194 | if (buf_len < (i = (size_t)BN_num_bytes(x->q))) |
| 171 | else if (x->pub_key != NULL) | 195 | buf_len = i; |
| 172 | bn=x->pub_key; | 196 | if (x->g) |
| 173 | 197 | if (buf_len < (i = (size_t)BN_num_bytes(x->g))) | |
| 174 | /* larger than needed but what the hell :-) */ | 198 | buf_len = i; |
| 175 | if (bn != NULL) | 199 | if (x->priv_key) |
| 176 | i=BN_num_bytes(bn)*2; | 200 | if (buf_len < (i = (size_t)BN_num_bytes(x->priv_key))) |
| 177 | else | 201 | buf_len = i; |
| 178 | i=256; | 202 | if (x->pub_key) |
| 179 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 203 | if (buf_len < (i = (size_t)BN_num_bytes(x->pub_key))) |
| 204 | buf_len = i; | ||
| 205 | |||
| 206 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 180 | if (m == NULL) | 207 | if (m == NULL) |
| 181 | { | 208 | { |
| 182 | DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE); | 209 | DSAerr(DSA_F_DSA_PRINT,ERR_R_MALLOC_FAILURE); |
| @@ -281,10 +308,15 @@ int DHparams_print_fp(FILE *fp, const DH *x) | |||
| 281 | int DHparams_print(BIO *bp, const DH *x) | 308 | int DHparams_print(BIO *bp, const DH *x) |
| 282 | { | 309 | { |
| 283 | unsigned char *m=NULL; | 310 | unsigned char *m=NULL; |
| 284 | int reason=ERR_R_BUF_LIB,i,ret=0; | 311 | int reason=ERR_R_BUF_LIB,ret=0; |
| 312 | size_t buf_len=0, i; | ||
| 285 | 313 | ||
| 286 | i=BN_num_bytes(x->p); | 314 | if (x->p) |
| 287 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 315 | buf_len = (size_t)BN_num_bytes(x->p); |
| 316 | if (x->g) | ||
| 317 | if (buf_len < (i = (size_t)BN_num_bytes(x->g))) | ||
| 318 | buf_len = i; | ||
| 319 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 288 | if (m == NULL) | 320 | if (m == NULL) |
| 289 | { | 321 | { |
| 290 | reason=ERR_R_MALLOC_FAILURE; | 322 | reason=ERR_R_MALLOC_FAILURE; |
| @@ -334,10 +366,18 @@ int DSAparams_print_fp(FILE *fp, const DSA *x) | |||
| 334 | int DSAparams_print(BIO *bp, const DSA *x) | 366 | int DSAparams_print(BIO *bp, const DSA *x) |
| 335 | { | 367 | { |
| 336 | unsigned char *m=NULL; | 368 | unsigned char *m=NULL; |
| 337 | int reason=ERR_R_BUF_LIB,i,ret=0; | 369 | int reason=ERR_R_BUF_LIB,ret=0; |
| 370 | size_t buf_len=0,i; | ||
| 338 | 371 | ||
| 339 | i=BN_num_bytes(x->p); | 372 | if (x->p) |
| 340 | m=(unsigned char *)OPENSSL_malloc((unsigned int)i+10); | 373 | buf_len = (size_t)BN_num_bytes(x->p); |
| 374 | if (x->q) | ||
| 375 | if (buf_len < (i = (size_t)BN_num_bytes(x->q))) | ||
| 376 | buf_len = i; | ||
| 377 | if (x->g) | ||
| 378 | if (buf_len < (i = (size_t)BN_num_bytes(x->g))) | ||
| 379 | buf_len = i; | ||
| 380 | m=(unsigned char *)OPENSSL_malloc(buf_len+10); | ||
| 341 | if (m == NULL) | 381 | if (m == NULL) |
| 342 | { | 382 | { |
| 343 | reason=ERR_R_MALLOC_FAILURE; | 383 | reason=ERR_R_MALLOC_FAILURE; |
diff --git a/src/lib/libssl/src/crypto/bf/Makefile.ssl b/src/lib/libssl/src/crypto/bf/Makefile.ssl index e304d33732..079f7e860c 100644 --- a/src/lib/libssl/src/crypto/bf/Makefile.ssl +++ b/src/lib/libssl/src/crypto/bf/Makefile.ssl | |||
| @@ -96,7 +96,7 @@ lint: | |||
| 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 96 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 97 | 97 | ||
| 98 | depend: | 98 | depend: |
| 99 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 99 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 100 | 100 | ||
| 101 | dclean: | 101 | dclean: |
| 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 102 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/bio/Makefile.ssl b/src/lib/libssl/src/crypto/bio/Makefile.ssl index e8826ae292..dfcee03448 100644 --- a/src/lib/libssl/src/crypto/bio/Makefile.ssl +++ b/src/lib/libssl/src/crypto/bio/Makefile.ssl | |||
| @@ -78,7 +78,7 @@ lint: | |||
| 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 79 | 79 | ||
| 80 | depend: | 80 | depend: |
| 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 82 | 82 | ||
| 83 | dclean: | 83 | dclean: |
| 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/bio/b_sock.c b/src/lib/libssl/src/crypto/bio/b_sock.c index dcaef68ea7..45bd7c47e8 100644 --- a/src/lib/libssl/src/crypto/bio/b_sock.c +++ b/src/lib/libssl/src/crypto/bio/b_sock.c | |||
| @@ -484,7 +484,11 @@ int BIO_socket_ioctl(int fd, long type, unsigned long *arg) | |||
| 484 | { | 484 | { |
| 485 | int i; | 485 | int i; |
| 486 | 486 | ||
| 487 | #ifdef __DJGPP__ | ||
| 488 | i=ioctlsocket(fd,type,(char *)arg); | ||
| 489 | #else | ||
| 487 | i=ioctlsocket(fd,type,arg); | 490 | i=ioctlsocket(fd,type,arg); |
| 491 | #endif /* __DJGPP__ */ | ||
| 488 | if (i < 0) | 492 | if (i < 0) |
| 489 | SYSerr(SYS_F_IOCTLSOCKET,get_last_socket_error()); | 493 | SYSerr(SYS_F_IOCTLSOCKET,get_last_socket_error()); |
| 490 | return(i); | 494 | return(i); |
diff --git a/src/lib/libssl/src/crypto/bio/bio.h b/src/lib/libssl/src/crypto/bio/bio.h index b122c7069d..c5caf253c9 100644 --- a/src/lib/libssl/src/crypto/bio/bio.h +++ b/src/lib/libssl/src/crypto/bio/bio.h | |||
| @@ -554,7 +554,9 @@ BIO_METHOD *BIO_s_socket(void); | |||
| 554 | BIO_METHOD *BIO_s_connect(void); | 554 | BIO_METHOD *BIO_s_connect(void); |
| 555 | BIO_METHOD *BIO_s_accept(void); | 555 | BIO_METHOD *BIO_s_accept(void); |
| 556 | BIO_METHOD *BIO_s_fd(void); | 556 | BIO_METHOD *BIO_s_fd(void); |
| 557 | #ifndef OPENSSL_SYS_OS2 | ||
| 557 | BIO_METHOD *BIO_s_log(void); | 558 | BIO_METHOD *BIO_s_log(void); |
| 559 | #endif | ||
| 558 | BIO_METHOD *BIO_s_bio(void); | 560 | BIO_METHOD *BIO_s_bio(void); |
| 559 | BIO_METHOD *BIO_s_null(void); | 561 | BIO_METHOD *BIO_s_null(void); |
| 560 | BIO_METHOD *BIO_f_null(void); | 562 | BIO_METHOD *BIO_f_null(void); |
| @@ -647,6 +649,7 @@ void ERR_load_BIO_strings(void); | |||
| 647 | #define BIO_F_CONN_CTRL 127 | 649 | #define BIO_F_CONN_CTRL 127 |
| 648 | #define BIO_F_CONN_STATE 115 | 650 | #define BIO_F_CONN_STATE 115 |
| 649 | #define BIO_F_FILE_CTRL 116 | 651 | #define BIO_F_FILE_CTRL 116 |
| 652 | #define BIO_F_FILE_READ 130 | ||
| 650 | #define BIO_F_LINEBUFFER_CTRL 129 | 653 | #define BIO_F_LINEBUFFER_CTRL 129 |
| 651 | #define BIO_F_MEM_READ 128 | 654 | #define BIO_F_MEM_READ 128 |
| 652 | #define BIO_F_MEM_WRITE 117 | 655 | #define BIO_F_MEM_WRITE 117 |
diff --git a/src/lib/libssl/src/crypto/bio/bio_err.c b/src/lib/libssl/src/crypto/bio/bio_err.c index 99ca3cd0da..68a119d895 100644 --- a/src/lib/libssl/src/crypto/bio/bio_err.c +++ b/src/lib/libssl/src/crypto/bio/bio_err.c | |||
| @@ -91,6 +91,7 @@ static ERR_STRING_DATA BIO_str_functs[]= | |||
| 91 | {ERR_PACK(0,BIO_F_CONN_CTRL,0), "CONN_CTRL"}, | 91 | {ERR_PACK(0,BIO_F_CONN_CTRL,0), "CONN_CTRL"}, |
| 92 | {ERR_PACK(0,BIO_F_CONN_STATE,0), "CONN_STATE"}, | 92 | {ERR_PACK(0,BIO_F_CONN_STATE,0), "CONN_STATE"}, |
| 93 | {ERR_PACK(0,BIO_F_FILE_CTRL,0), "FILE_CTRL"}, | 93 | {ERR_PACK(0,BIO_F_FILE_CTRL,0), "FILE_CTRL"}, |
| 94 | {ERR_PACK(0,BIO_F_FILE_READ,0), "FILE_READ"}, | ||
| 94 | {ERR_PACK(0,BIO_F_LINEBUFFER_CTRL,0), "LINEBUFFER_CTRL"}, | 95 | {ERR_PACK(0,BIO_F_LINEBUFFER_CTRL,0), "LINEBUFFER_CTRL"}, |
| 95 | {ERR_PACK(0,BIO_F_MEM_READ,0), "MEM_READ"}, | 96 | {ERR_PACK(0,BIO_F_MEM_READ,0), "MEM_READ"}, |
| 96 | {ERR_PACK(0,BIO_F_MEM_WRITE,0), "MEM_WRITE"}, | 97 | {ERR_PACK(0,BIO_F_MEM_WRITE,0), "MEM_WRITE"}, |
diff --git a/src/lib/libssl/src/crypto/bio/bss_file.c b/src/lib/libssl/src/crypto/bio/bss_file.c index 8b3ff278d9..826b361fa2 100644 --- a/src/lib/libssl/src/crypto/bio/bss_file.c +++ b/src/lib/libssl/src/crypto/bio/bss_file.c | |||
| @@ -162,6 +162,12 @@ static int MS_CALLBACK file_read(BIO *b, char *out, int outl) | |||
| 162 | if (b->init && (out != NULL)) | 162 | if (b->init && (out != NULL)) |
| 163 | { | 163 | { |
| 164 | ret=fread(out,1,(int)outl,(FILE *)b->ptr); | 164 | ret=fread(out,1,(int)outl,(FILE *)b->ptr); |
| 165 | if(ret == 0 && ferror((FILE *)b->ptr)) | ||
| 166 | { | ||
| 167 | SYSerr(SYS_F_FREAD,get_last_sys_error()); | ||
| 168 | BIOerr(BIO_F_FILE_READ,ERR_R_SYS_LIB); | ||
| 169 | ret=-1; | ||
| 170 | } | ||
| 165 | } | 171 | } |
| 166 | return(ret); | 172 | return(ret); |
| 167 | } | 173 | } |
diff --git a/src/lib/libssl/src/crypto/bn/Makefile.ssl b/src/lib/libssl/src/crypto/bn/Makefile.ssl index 9d67fab1d6..6a479726c4 100644 --- a/src/lib/libssl/src/crypto/bn/Makefile.ssl +++ b/src/lib/libssl/src/crypto/bn/Makefile.ssl | |||
| @@ -169,7 +169,7 @@ lint: | |||
| 169 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 169 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 170 | 170 | ||
| 171 | depend: | 171 | depend: |
| 172 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 172 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 173 | 173 | ||
| 174 | dclean: | 174 | dclean: |
| 175 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 175 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/bn/bn_lib.c b/src/lib/libssl/src/crypto/bn/bn_lib.c index a016cb7f53..8abe095af2 100644 --- a/src/lib/libssl/src/crypto/bn/bn_lib.c +++ b/src/lib/libssl/src/crypto/bn/bn_lib.c | |||
| @@ -397,6 +397,12 @@ BIGNUM *bn_dup_expand(const BIGNUM *b, int words) | |||
| 397 | { | 397 | { |
| 398 | BIGNUM *r = NULL; | 398 | BIGNUM *r = NULL; |
| 399 | 399 | ||
| 400 | /* This function does not work if | ||
| 401 | * words <= b->dmax && top < words | ||
| 402 | * because BN_dup() does not preserve 'dmax'! | ||
| 403 | * (But bn_dup_expand() is not used anywhere yet.) | ||
| 404 | */ | ||
| 405 | |||
| 400 | if (words > b->dmax) | 406 | if (words > b->dmax) |
| 401 | { | 407 | { |
| 402 | BN_ULONG *a = bn_expand_internal(b, words); | 408 | BN_ULONG *a = bn_expand_internal(b, words); |
diff --git a/src/lib/libssl/src/crypto/bn/bn_mul.c b/src/lib/libssl/src/crypto/bn/bn_mul.c index fd598b8b3d..b03458d002 100644 --- a/src/lib/libssl/src/crypto/bn/bn_mul.c +++ b/src/lib/libssl/src/crypto/bn/bn_mul.c | |||
| @@ -66,7 +66,7 @@ | |||
| 66 | #include "cryptlib.h" | 66 | #include "cryptlib.h" |
| 67 | #include "bn_lcl.h" | 67 | #include "bn_lcl.h" |
| 68 | 68 | ||
| 69 | #if defined(OPENSSL_NO_ASM) || !(defined(__i386) || defined(__i386__))/* Assembler implementation exists only for x86 */ | 69 | #if defined(OPENSSL_NO_ASM) || !(defined(__i386) || defined(__i386__)) || defined(__DJGPP__) /* Assembler implementation exists only for x86 */ |
| 70 | /* Here follows specialised variants of bn_add_words() and | 70 | /* Here follows specialised variants of bn_add_words() and |
| 71 | bn_sub_words(). They have the property performing operations on | 71 | bn_sub_words(). They have the property performing operations on |
| 72 | arrays of different sizes. The sizes of those arrays is expressed through | 72 | arrays of different sizes. The sizes of those arrays is expressed through |
diff --git a/src/lib/libssl/src/crypto/bn/bntest.c b/src/lib/libssl/src/crypto/bn/bntest.c index 443cf420e5..8158a67374 100644 --- a/src/lib/libssl/src/crypto/bn/bntest.c +++ b/src/lib/libssl/src/crypto/bn/bntest.c | |||
| @@ -925,7 +925,7 @@ int test_kron(BIO *bp, BN_CTX *ctx) | |||
| 925 | /* r := a^t mod b */ | 925 | /* r := a^t mod b */ |
| 926 | b->neg=0; | 926 | b->neg=0; |
| 927 | 927 | ||
| 928 | if (!BN_mod_exp_recp(r, a, t, b, ctx)) goto err; /* XXX should be BN_mod_exp_recp, but ..._recp triggers a bug that must be fixed */ | 928 | if (!BN_mod_exp_recp(r, a, t, b, ctx)) goto err; |
| 929 | b->neg=1; | 929 | b->neg=1; |
| 930 | 930 | ||
| 931 | if (BN_is_word(r, 1)) | 931 | if (BN_is_word(r, 1)) |
diff --git a/src/lib/libssl/src/crypto/buffer/Makefile.ssl b/src/lib/libssl/src/crypto/buffer/Makefile.ssl index 8ee016322a..240a6b9a89 100644 --- a/src/lib/libssl/src/crypto/buffer/Makefile.ssl +++ b/src/lib/libssl/src/crypto/buffer/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/cast/Makefile.ssl b/src/lib/libssl/src/crypto/cast/Makefile.ssl index a52217a6f7..2defbdd68a 100644 --- a/src/lib/libssl/src/crypto/cast/Makefile.ssl +++ b/src/lib/libssl/src/crypto/cast/Makefile.ssl | |||
| @@ -97,7 +97,7 @@ lint: | |||
| 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 98 | 98 | ||
| 99 | depend: | 99 | depend: |
| 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 101 | 101 | ||
| 102 | dclean: | 102 | dclean: |
| 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/comp/Makefile.ssl b/src/lib/libssl/src/crypto/comp/Makefile.ssl index 972cb9fbc3..7c1ec81229 100644 --- a/src/lib/libssl/src/crypto/comp/Makefile.ssl +++ b/src/lib/libssl/src/crypto/comp/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/conf/Makefile.ssl b/src/lib/libssl/src/crypto/conf/Makefile.ssl index d7489c87a2..133c2329e6 100644 --- a/src/lib/libssl/src/crypto/conf/Makefile.ssl +++ b/src/lib/libssl/src/crypto/conf/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -89,14 +89,14 @@ conf_api.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 89 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 89 | conf_api.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 90 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 90 | conf_api.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 91 | conf_api.o: conf_api.c | 91 | conf_api.o: conf_api.c |
| 92 | conf_def.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | 92 | conf_def.o: ../../e_os.h ../../include/openssl/bio.h |
| 93 | conf_def.o: ../../include/openssl/conf.h ../../include/openssl/conf_api.h | 93 | conf_def.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h |
| 94 | conf_def.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 94 | conf_def.o: ../../include/openssl/conf_api.h ../../include/openssl/crypto.h |
| 95 | conf_def.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 95 | conf_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 96 | conf_def.o: ../../include/openssl/opensslconf.h | 96 | conf_def.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h |
| 97 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 97 | conf_def.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 98 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 98 | conf_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 99 | conf_def.o: conf_def.c conf_def.h | 99 | conf_def.o: ../cryptlib.h conf_def.c conf_def.h |
| 100 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h | 100 | conf_err.o: ../../include/openssl/bio.h ../../include/openssl/conf.h |
| 101 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 101 | conf_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 102 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 102 | conf_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| @@ -111,51 +111,73 @@ conf_lib.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | |||
| 111 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h | 111 | conf_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/safestack.h |
| 112 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 112 | conf_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 113 | conf_lib.o: conf_lib.c | 113 | conf_lib.o: conf_lib.c |
| 114 | conf_mall.o: ../../e_os.h ../../include/openssl/asn1.h | 114 | conf_mall.o: ../../e_os.h ../../include/openssl/aes.h |
| 115 | conf_mall.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 115 | conf_mall.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 116 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 116 | conf_mall.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 117 | conf_mall.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 117 | conf_mall.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 118 | conf_mall.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 118 | conf_mall.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 119 | conf_mall.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 119 | conf_mall.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 120 | conf_mall.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 120 | conf_mall.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 121 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 121 | conf_mall.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 122 | conf_mall.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 123 | conf_mall.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 124 | conf_mall.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 125 | conf_mall.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 126 | conf_mall.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 122 | conf_mall.o: ../../include/openssl/objects.h | 127 | conf_mall.o: ../../include/openssl/objects.h |
| 123 | conf_mall.o: ../../include/openssl/opensslconf.h | 128 | conf_mall.o: ../../include/openssl/opensslconf.h |
| 124 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 129 | conf_mall.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 130 | conf_mall.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 131 | conf_mall.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 132 | conf_mall.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 126 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 133 | conf_mall.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 127 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 134 | conf_mall.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 128 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 135 | conf_mall.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 129 | conf_mall.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 136 | conf_mall.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 130 | conf_mall.o: ../cryptlib.h conf_mall.c | 137 | conf_mall.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_mall.c |
| 131 | conf_mod.o: ../../e_os.h ../../include/openssl/asn1.h | 138 | conf_mod.o: ../../e_os.h ../../include/openssl/aes.h |
| 132 | conf_mod.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 139 | conf_mod.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 133 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 140 | conf_mod.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 134 | conf_mod.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 141 | conf_mod.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 135 | conf_mod.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 142 | conf_mod.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 136 | conf_mod.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 143 | conf_mod.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 137 | conf_mod.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 144 | conf_mod.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 145 | conf_mod.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | ||
| 146 | conf_mod.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 147 | conf_mod.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 148 | conf_mod.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 149 | conf_mod.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 138 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 150 | conf_mod.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 139 | conf_mod.o: ../../include/openssl/opensslconf.h | 151 | conf_mod.o: ../../include/openssl/opensslconf.h |
| 140 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 152 | conf_mod.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 141 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 153 | conf_mod.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 154 | conf_mod.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 155 | conf_mod.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 142 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 156 | conf_mod.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 143 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 157 | conf_mod.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 158 | conf_mod.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 144 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 159 | conf_mod.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 145 | conf_mod.o: ../cryptlib.h conf_mod.c | 160 | conf_mod.o: ../cryptlib.h conf_mod.c |
| 146 | conf_sap.o: ../../e_os.h ../../include/openssl/asn1.h | 161 | conf_sap.o: ../../e_os.h ../../include/openssl/aes.h |
| 147 | conf_sap.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 162 | conf_sap.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 148 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 163 | conf_sap.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 149 | conf_sap.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 164 | conf_sap.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 150 | conf_sap.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | 165 | conf_sap.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 151 | conf_sap.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 166 | conf_sap.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 152 | conf_sap.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 167 | conf_sap.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 153 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 168 | conf_sap.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h |
| 169 | conf_sap.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 170 | conf_sap.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 171 | conf_sap.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 172 | conf_sap.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 173 | conf_sap.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 154 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 174 | conf_sap.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 155 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 175 | conf_sap.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 156 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 176 | conf_sap.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 177 | conf_sap.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 178 | conf_sap.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 157 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 179 | conf_sap.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 158 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 180 | conf_sap.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 159 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 181 | conf_sap.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 160 | conf_sap.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 182 | conf_sap.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 161 | conf_sap.o: ../cryptlib.h conf_sap.c | 183 | conf_sap.o: ../../include/openssl/x509_vfy.h ../cryptlib.h conf_sap.c |
diff --git a/src/lib/libssl/src/crypto/conf/conf.h b/src/lib/libssl/src/crypto/conf/conf.h index 3c03fb19c0..f4671442ab 100644 --- a/src/lib/libssl/src/crypto/conf/conf.h +++ b/src/lib/libssl/src/crypto/conf/conf.h | |||
| @@ -129,6 +129,7 @@ int CONF_dump_fp(LHASH *conf, FILE *out); | |||
| 129 | int CONF_dump_bio(LHASH *conf, BIO *out); | 129 | int CONF_dump_bio(LHASH *conf, BIO *out); |
| 130 | 130 | ||
| 131 | void OPENSSL_config(const char *config_name); | 131 | void OPENSSL_config(const char *config_name); |
| 132 | void OPENSSL_no_config(void); | ||
| 132 | 133 | ||
| 133 | /* New conf code. The semantics are different from the functions above. | 134 | /* New conf code. The semantics are different from the functions above. |
| 134 | If that wasn't the case, the above functions would have been replaced */ | 135 | If that wasn't the case, the above functions would have been replaced */ |
| @@ -141,10 +142,10 @@ struct conf_st | |||
| 141 | }; | 142 | }; |
| 142 | 143 | ||
| 143 | CONF *NCONF_new(CONF_METHOD *meth); | 144 | CONF *NCONF_new(CONF_METHOD *meth); |
| 144 | CONF_METHOD *NCONF_default(); | 145 | CONF_METHOD *NCONF_default(void); |
| 145 | CONF_METHOD *NCONF_WIN32(); | 146 | CONF_METHOD *NCONF_WIN32(void); |
| 146 | #if 0 /* Just to give you an idea of what I have in mind */ | 147 | #if 0 /* Just to give you an idea of what I have in mind */ |
| 147 | CONF_METHOD *NCONF_XML(); | 148 | CONF_METHOD *NCONF_XML(void); |
| 148 | #endif | 149 | #endif |
| 149 | void NCONF_free(CONF *conf); | 150 | void NCONF_free(CONF *conf); |
| 150 | void NCONF_free_data(CONF *conf); | 151 | void NCONF_free_data(CONF *conf); |
| @@ -176,6 +177,7 @@ int CONF_modules_load_file(const char *filename, const char *appname, | |||
| 176 | unsigned long flags); | 177 | unsigned long flags); |
| 177 | void CONF_modules_unload(int all); | 178 | void CONF_modules_unload(int all); |
| 178 | void CONF_modules_finish(void); | 179 | void CONF_modules_finish(void); |
| 180 | void CONF_modules_free(void); | ||
| 179 | int CONF_module_add(const char *name, conf_init_func *ifunc, | 181 | int CONF_module_add(const char *name, conf_init_func *ifunc, |
| 180 | conf_finish_func *ffunc); | 182 | conf_finish_func *ffunc); |
| 181 | 183 | ||
diff --git a/src/lib/libssl/src/crypto/conf/conf_lib.c b/src/lib/libssl/src/crypto/conf/conf_lib.c index 7998f34c7b..6a3cf109dd 100644 --- a/src/lib/libssl/src/crypto/conf/conf_lib.c +++ b/src/lib/libssl/src/crypto/conf/conf_lib.c | |||
| @@ -382,8 +382,9 @@ int NCONF_dump_bio(const CONF *conf, BIO *out) | |||
| 382 | return conf->meth->dump(conf, out); | 382 | return conf->meth->dump(conf, out); |
| 383 | } | 383 | } |
| 384 | 384 | ||
| 385 | |||
| 385 | /* This function should be avoided */ | 386 | /* This function should be avoided */ |
| 386 | #undef NCONF_get_number | 387 | #if 0 |
| 387 | long NCONF_get_number(CONF *conf,char *group,char *name) | 388 | long NCONF_get_number(CONF *conf,char *group,char *name) |
| 388 | { | 389 | { |
| 389 | int status; | 390 | int status; |
| @@ -397,4 +398,4 @@ long NCONF_get_number(CONF *conf,char *group,char *name) | |||
| 397 | } | 398 | } |
| 398 | return ret; | 399 | return ret; |
| 399 | } | 400 | } |
| 400 | 401 | #endif | |
diff --git a/src/lib/libssl/src/crypto/cryptlib.h b/src/lib/libssl/src/crypto/cryptlib.h index 37ce7721fb..88e4ae509f 100644 --- a/src/lib/libssl/src/crypto/cryptlib.h +++ b/src/lib/libssl/src/crypto/cryptlib.h | |||
| @@ -91,6 +91,7 @@ extern "C" { | |||
| 91 | 91 | ||
| 92 | /* size of string represenations */ | 92 | /* size of string represenations */ |
| 93 | #define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1) | 93 | #define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1) |
| 94 | #define HEX_SIZE(type) ((sizeof(type)*2) | ||
| 94 | 95 | ||
| 95 | #ifdef __cplusplus | 96 | #ifdef __cplusplus |
| 96 | } | 97 | } |
diff --git a/src/lib/libssl/src/crypto/des/Makefile.ssl b/src/lib/libssl/src/crypto/des/Makefile.ssl index 473810bec1..ee5849d8fa 100644 --- a/src/lib/libssl/src/crypto/des/Makefile.ssl +++ b/src/lib/libssl/src/crypto/des/Makefile.ssl | |||
| @@ -108,7 +108,6 @@ files: | |||
| 108 | 108 | ||
| 109 | links: | 109 | links: |
| 110 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | 110 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile |
| 111 | @sh $(TOP)/util/point.sh ../../perlasm asm/perlasm | ||
| 112 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | 111 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) |
| 113 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | 112 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) |
| 114 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | 113 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) |
| @@ -131,7 +130,7 @@ lint: | |||
| 131 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 130 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 132 | 131 | ||
| 133 | depend: | 132 | depend: |
| 134 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 133 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 135 | 134 | ||
| 136 | dclean: | 135 | dclean: |
| 137 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 136 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/des/des_old.h b/src/lib/libssl/src/crypto/des/des_old.h index 2bb5fa9d1b..2b7c0fc02a 100644 --- a/src/lib/libssl/src/crypto/des/des_old.h +++ b/src/lib/libssl/src/crypto/des/des_old.h | |||
| @@ -362,7 +362,7 @@ int _ossl_old_des_enc_write(int fd,char *buf,int len,_ossl_old_des_key_schedule | |||
| 362 | _ossl_old_des_cblock *iv); | 362 | _ossl_old_des_cblock *iv); |
| 363 | char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret); | 363 | char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret); |
| 364 | char *_ossl_old_des_crypt(const char *buf,const char *salt); | 364 | char *_ossl_old_des_crypt(const char *buf,const char *salt); |
| 365 | #if !defined(PERL5) && !defined(__FreeBSD__) && !defined(NeXT) | 365 | #if !defined(PERL5) && !defined(NeXT) |
| 366 | char *_ossl_old_crypt(const char *buf,const char *salt); | 366 | char *_ossl_old_crypt(const char *buf,const char *salt); |
| 367 | #endif | 367 | #endif |
| 368 | void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out, | 368 | void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out, |
diff --git a/src/lib/libssl/src/crypto/des/read_pwd.c b/src/lib/libssl/src/crypto/des/read_pwd.c index 00000190f8..9061935f21 100644 --- a/src/lib/libssl/src/crypto/des/read_pwd.c +++ b/src/lib/libssl/src/crypto/des/read_pwd.c | |||
| @@ -246,7 +246,7 @@ int des_read_pw(char *buf, char *buff, int size, const char *prompt, | |||
| 246 | long status; | 246 | long status; |
| 247 | unsigned short channel = 0; | 247 | unsigned short channel = 0; |
| 248 | #else | 248 | #else |
| 249 | #ifndef OPENSSL_SYS_MSDOS | 249 | #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) |
| 250 | TTY_STRUCT tty_orig,tty_new; | 250 | TTY_STRUCT tty_orig,tty_new; |
| 251 | #endif | 251 | #endif |
| 252 | #endif | 252 | #endif |
diff --git a/src/lib/libssl/src/crypto/dh/Makefile.ssl b/src/lib/libssl/src/crypto/dh/Makefile.ssl index a38a3e85c4..5e1aaae160 100644 --- a/src/lib/libssl/src/crypto/dh/Makefile.ssl +++ b/src/lib/libssl/src/crypto/dh/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/dsa/Makefile.ssl b/src/lib/libssl/src/crypto/dsa/Makefile.ssl index c1859abe08..d308caafca 100644 --- a/src/lib/libssl/src/crypto/dsa/Makefile.ssl +++ b/src/lib/libssl/src/crypto/dsa/Makefile.ssl | |||
| @@ -70,7 +70,7 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 71 | ||
| 72 | depend: | 72 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 74 | ||
| 75 | dclean: | 75 | dclean: |
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -99,18 +99,26 @@ dsa_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | |||
| 99 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 99 | dsa_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h |
| 100 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 100 | dsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 101 | dsa_err.o: dsa_err.c | 101 | dsa_err.o: dsa_err.c |
| 102 | dsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | 102 | dsa_gen.o: ../../e_os.h ../../include/openssl/aes.h |
| 103 | dsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 103 | dsa_gen.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 104 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 104 | dsa_gen.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 105 | dsa_gen.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 105 | dsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 106 | dsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 106 | dsa_gen.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 107 | dsa_gen.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 107 | dsa_gen.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 108 | dsa_gen.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 109 | dsa_gen.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 110 | dsa_gen.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 111 | dsa_gen.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 112 | dsa_gen.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 108 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 113 | dsa_gen.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 109 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 114 | dsa_gen.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 110 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 115 | dsa_gen.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 111 | dsa_gen.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 116 | dsa_gen.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 112 | dsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 117 | dsa_gen.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 113 | dsa_gen.o: ../cryptlib.h dsa_gen.c | 118 | dsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 119 | dsa_gen.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 120 | dsa_gen.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 121 | dsa_gen.o: ../../include/openssl/ui_compat.h ../cryptlib.h dsa_gen.c | ||
| 114 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h | 122 | dsa_key.o: ../../e_os.h ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 115 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 123 | dsa_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 116 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 124 | dsa_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
diff --git a/src/lib/libssl/src/crypto/dso/Makefile.ssl b/src/lib/libssl/src/crypto/dso/Makefile.ssl index 1f48fdb8a7..5a55125824 100644 --- a/src/lib/libssl/src/crypto/dso/Makefile.ssl +++ b/src/lib/libssl/src/crypto/dso/Makefile.ssl | |||
| @@ -70,7 +70,7 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 71 | ||
| 72 | depend: | 72 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 74 | ||
| 75 | dclean: | 75 | dclean: |
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/ebcdic.c b/src/lib/libssl/src/crypto/ebcdic.c index bc968ea807..d1bece87f7 100644 --- a/src/lib/libssl/src/crypto/ebcdic.c +++ b/src/lib/libssl/src/crypto/ebcdic.c | |||
| @@ -211,8 +211,8 @@ ascii2ebcdic(void *dest, const void *srce, size_t count) | |||
| 211 | } | 211 | } |
| 212 | 212 | ||
| 213 | #else /*CHARSET_EBCDIC*/ | 213 | #else /*CHARSET_EBCDIC*/ |
| 214 | #include <openssl/opensslconf.h> | 214 | #include <openssl/e_os2.h> |
| 215 | #if defined(PEDANTIC) || defined(__DECC) | 215 | #if defined(PEDANTIC) || defined(__DECC) || defined(OPENSSL_SYS_MACOSX) |
| 216 | static void *dummy=&dummy; | 216 | static void *dummy=&dummy; |
| 217 | #endif | 217 | #endif |
| 218 | #endif | 218 | #endif |
diff --git a/src/lib/libssl/src/crypto/ec/Makefile.ssl b/src/lib/libssl/src/crypto/ec/Makefile.ssl index fb6f22130f..ed602b4a7f 100644 --- a/src/lib/libssl/src/crypto/ec/Makefile.ssl +++ b/src/lib/libssl/src/crypto/ec/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/ec/ectest.c b/src/lib/libssl/src/crypto/ec/ectest.c index 243cd83fb5..eab46cc080 100644 --- a/src/lib/libssl/src/crypto/ec/ectest.c +++ b/src/lib/libssl/src/crypto/ec/ectest.c | |||
| @@ -75,8 +75,8 @@ int main(int argc, char * argv[]) { puts("Elliptic curves are disabled."); retur | |||
| 75 | exit(1); \ | 75 | exit(1); \ |
| 76 | } while (0) | 76 | } while (0) |
| 77 | 77 | ||
| 78 | 78 | #if 0 | |
| 79 | void timings(EC_GROUP *group, int multi, BN_CTX *ctx) | 79 | static void timings(EC_GROUP *group, int multi, BN_CTX *ctx) |
| 80 | { | 80 | { |
| 81 | clock_t clck; | 81 | clock_t clck; |
| 82 | int i, j; | 82 | int i, j; |
| @@ -138,7 +138,7 @@ void timings(EC_GROUP *group, int multi, BN_CTX *ctx) | |||
| 138 | BN_free(s); | 138 | BN_free(s); |
| 139 | BN_free(s0); | 139 | BN_free(s0); |
| 140 | } | 140 | } |
| 141 | 141 | #endif | |
| 142 | 142 | ||
| 143 | int main(int argc, char *argv[]) | 143 | int main(int argc, char *argv[]) |
| 144 | { | 144 | { |
diff --git a/src/lib/libssl/src/crypto/engine/Makefile.ssl b/src/lib/libssl/src/crypto/engine/Makefile.ssl index 5172028f93..8bc8985e02 100644 --- a/src/lib/libssl/src/crypto/engine/Makefile.ssl +++ b/src/lib/libssl/src/crypto/engine/Makefile.ssl | |||
| @@ -74,7 +74,7 @@ tags: | |||
| 74 | 74 | ||
| 75 | errors: | 75 | errors: |
| 76 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ | 76 | $(PERL) $(TOP)/util/mkerr.pl -conf hw.ec \ |
| 77 | -nostatic -staticloader -write hw_*.c; \ | 77 | -nostatic -staticloader -write hw_*.c |
| 78 | 78 | ||
| 79 | tests: | 79 | tests: |
| 80 | 80 | ||
| @@ -82,7 +82,7 @@ lint: | |||
| 82 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 82 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 83 | 83 | ||
| 84 | depend: | 84 | depend: |
| 85 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 85 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 86 | 86 | ||
| 87 | dclean: | 87 | dclean: |
| 88 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 88 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -196,22 +196,29 @@ eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 196 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 196 | eng_list.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 197 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 197 | eng_list.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 198 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c | 198 | eng_list.o: ../cryptlib.h eng_int.h eng_list.c |
| 199 | eng_openssl.o: ../../e_os.h ../../include/openssl/asn1.h | 199 | eng_openssl.o: ../../e_os.h ../../include/openssl/aes.h |
| 200 | eng_openssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 200 | eng_openssl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 201 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 201 | eng_openssl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 202 | eng_openssl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 202 | eng_openssl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 203 | eng_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 203 | eng_openssl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 204 | eng_openssl.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 204 | eng_openssl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 205 | eng_openssl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 205 | eng_openssl.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 206 | eng_openssl.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 207 | eng_openssl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 208 | eng_openssl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 209 | eng_openssl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 210 | eng_openssl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 206 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 211 | eng_openssl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 207 | eng_openssl.o: ../../include/openssl/opensslconf.h | 212 | eng_openssl.o: ../../include/openssl/opensslconf.h |
| 208 | eng_openssl.o: ../../include/openssl/opensslv.h | 213 | eng_openssl.o: ../../include/openssl/opensslv.h |
| 209 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 214 | eng_openssl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 210 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 215 | eng_openssl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 211 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc4.h | 216 | eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 212 | eng_openssl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 217 | eng_openssl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 213 | eng_openssl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 218 | eng_openssl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 214 | eng_openssl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 219 | eng_openssl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 220 | eng_openssl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 221 | eng_openssl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 215 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 222 | eng_openssl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 216 | eng_openssl.o: ../cryptlib.h eng_openssl.c | 223 | eng_openssl.o: ../cryptlib.h eng_openssl.c |
| 217 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 224 | eng_pkey.o: ../../e_os.h ../../include/openssl/asn1.h |
| @@ -226,47 +233,64 @@ eng_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 226 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 233 | eng_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 227 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 234 | eng_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 228 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c | 235 | eng_pkey.o: ../cryptlib.h eng_int.h eng_pkey.c |
| 229 | eng_table.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 236 | eng_table.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 230 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 237 | eng_table.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 231 | eng_table.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 238 | eng_table.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 232 | eng_table.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 239 | eng_table.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 233 | eng_table.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 240 | eng_table.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 234 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 241 | eng_table.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 242 | eng_table.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 243 | eng_table.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 244 | eng_table.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 245 | eng_table.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 246 | eng_table.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 235 | eng_table.o: ../../include/openssl/objects.h | 247 | eng_table.o: ../../include/openssl/objects.h |
| 236 | eng_table.o: ../../include/openssl/opensslconf.h | 248 | eng_table.o: ../../include/openssl/opensslconf.h |
| 237 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 249 | eng_table.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 238 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 250 | eng_table.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 239 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 251 | eng_table.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 240 | eng_table.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 252 | eng_table.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 253 | eng_table.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 254 | eng_table.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 255 | eng_table.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 241 | eng_table.o: eng_int.h eng_table.c | 256 | eng_table.o: eng_int.h eng_table.c |
| 242 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/asn1.h | 257 | hw_4758_cca.o: ../../e_os.h ../../include/openssl/aes.h |
| 243 | hw_4758_cca.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 258 | hw_4758_cca.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 244 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 259 | hw_4758_cca.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 245 | hw_4758_cca.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 260 | hw_4758_cca.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 246 | hw_4758_cca.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 261 | hw_4758_cca.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 247 | hw_4758_cca.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 262 | hw_4758_cca.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 248 | hw_4758_cca.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 263 | hw_4758_cca.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 264 | hw_4758_cca.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 265 | hw_4758_cca.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 266 | hw_4758_cca.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 267 | hw_4758_cca.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 268 | hw_4758_cca.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 249 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 269 | hw_4758_cca.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 250 | hw_4758_cca.o: ../../include/openssl/opensslconf.h | 270 | hw_4758_cca.o: ../../include/openssl/opensslconf.h |
| 251 | hw_4758_cca.o: ../../include/openssl/opensslv.h | 271 | hw_4758_cca.o: ../../include/openssl/opensslv.h |
| 252 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 272 | hw_4758_cca.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 253 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 273 | hw_4758_cca.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 274 | hw_4758_cca.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 275 | hw_4758_cca.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 254 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 276 | hw_4758_cca.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 255 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 277 | hw_4758_cca.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 256 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | 278 | hw_4758_cca.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 257 | hw_4758_cca.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_4758_cca.c | 279 | hw_4758_cca.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 258 | hw_4758_cca.o: hw_4758_cca_err.c hw_4758_cca_err.h vendor_defns/hw_4758_cca.h | 280 | hw_4758_cca.o: ../cryptlib.h hw_4758_cca.c hw_4758_cca_err.c hw_4758_cca_err.h |
| 281 | hw_4758_cca.o: vendor_defns/hw_4758_cca.h | ||
| 259 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 282 | hw_aep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 260 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 283 | hw_aep.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 261 | hw_aep.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 284 | hw_aep.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h |
| 262 | hw_aep.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 285 | hw_aep.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 263 | hw_aep.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 286 | hw_aep.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 264 | hw_aep.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | 287 | hw_aep.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| 265 | hw_aep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 288 | hw_aep.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 266 | hw_aep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 289 | hw_aep.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 267 | hw_aep.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 290 | hw_aep.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 268 | hw_aep.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h hw_aep.c | 291 | hw_aep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 269 | hw_aep.o: hw_aep_err.c hw_aep_err.h vendor_defns/aep.h | 292 | hw_aep.o: ../../include/openssl/ui.h hw_aep.c hw_aep_err.c hw_aep_err.h |
| 293 | hw_aep.o: vendor_defns/aep.h | ||
| 270 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h | 294 | hw_atalla.o: ../../e_os.h ../../include/openssl/asn1.h |
| 271 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 295 | hw_atalla.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 272 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 296 | hw_atalla.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -293,24 +317,31 @@ hw_cswift.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |||
| 293 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 317 | hw_cswift.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 294 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h | 318 | hw_cswift.o: ../cryptlib.h hw_cswift.c hw_cswift_err.c hw_cswift_err.h |
| 295 | hw_cswift.o: vendor_defns/cswift.h | 319 | hw_cswift.o: vendor_defns/cswift.h |
| 296 | hw_ncipher.o: ../../e_os.h ../../include/openssl/asn1.h | 320 | hw_ncipher.o: ../../e_os.h ../../include/openssl/aes.h |
| 297 | hw_ncipher.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 321 | hw_ncipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 298 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 322 | hw_ncipher.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 299 | hw_ncipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 323 | hw_ncipher.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 300 | hw_ncipher.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 324 | hw_ncipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 301 | hw_ncipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 325 | hw_ncipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 302 | hw_ncipher.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 326 | hw_ncipher.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 327 | hw_ncipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 328 | hw_ncipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 329 | hw_ncipher.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 330 | hw_ncipher.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 331 | hw_ncipher.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 303 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 332 | hw_ncipher.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 304 | hw_ncipher.o: ../../include/openssl/opensslconf.h | 333 | hw_ncipher.o: ../../include/openssl/opensslconf.h |
| 305 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 334 | hw_ncipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 306 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 335 | hw_ncipher.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 307 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 336 | hw_ncipher.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 337 | hw_ncipher.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 338 | hw_ncipher.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 308 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 339 | hw_ncipher.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 309 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 340 | hw_ncipher.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 310 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 341 | hw_ncipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 311 | hw_ncipher.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 342 | hw_ncipher.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 312 | hw_ncipher.o: ../cryptlib.h hw_ncipher.c hw_ncipher_err.c hw_ncipher_err.h | 343 | hw_ncipher.o: ../../include/openssl/x509_vfy.h ../cryptlib.h hw_ncipher.c |
| 313 | hw_ncipher.o: vendor_defns/hwcryptohook.h | 344 | hw_ncipher.o: hw_ncipher_err.c hw_ncipher_err.h vendor_defns/hwcryptohook.h |
| 314 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h | 345 | hw_nuron.o: ../../e_os.h ../../include/openssl/asn1.h |
| 315 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 346 | hw_nuron.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 316 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 347 | hw_nuron.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -323,47 +354,71 @@ hw_nuron.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 323 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 354 | hw_nuron.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 324 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 355 | hw_nuron.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 325 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h | 356 | hw_nuron.o: ../cryptlib.h hw_nuron.c hw_nuron_err.c hw_nuron_err.h |
| 357 | hw_cryptodev.o: ../../include/openssl/aes.h | ||
| 326 | hw_cryptodev.o: ../../include/openssl/asn1.h | 358 | hw_cryptodev.o: ../../include/openssl/asn1.h |
| 327 | hw_cryptodev.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 359 | hw_cryptodev.o: ../../include/openssl/bio.h |
| 360 | hw_cryptodev.o: ../../include/openssl/blowfish.h | ||
| 361 | hw_cryptodev.o: ../../include/openssl/bn.h | ||
| 362 | hw_cryptodev.o: ../../include/openssl/cast.h | ||
| 328 | hw_cryptodev.o: ../../include/openssl/conf.h | 363 | hw_cryptodev.o: ../../include/openssl/conf.h |
| 329 | hw_cryptodev.o: ../../include/openssl/crypto.h | 364 | hw_cryptodev.o: ../../include/openssl/crypto.h |
| 365 | hw_cryptodev.o: ../../include/openssl/des.h | ||
| 366 | hw_cryptodev.o: ../../include/openssl/des_old.h | ||
| 330 | hw_cryptodev.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 367 | hw_cryptodev.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 331 | hw_cryptodev.o: ../../include/openssl/e_os2.h | 368 | hw_cryptodev.o: ../../include/openssl/e_os2.h |
| 332 | hw_cryptodev.o: ../../include/openssl/engine.h | 369 | hw_cryptodev.o: ../../include/openssl/engine.h |
| 333 | hw_cryptodev.o: ../../include/openssl/err.h | 370 | hw_cryptodev.o: ../../include/openssl/err.h |
| 334 | hw_cryptodev.o: ../../include/openssl/evp.h | 371 | hw_cryptodev.o: ../../include/openssl/evp.h |
| 372 | hw_cryptodev.o: ../../include/openssl/idea.h | ||
| 335 | hw_cryptodev.o: ../../include/openssl/lhash.h | 373 | hw_cryptodev.o: ../../include/openssl/lhash.h |
| 374 | hw_cryptodev.o: ../../include/openssl/md2.h | ||
| 375 | hw_cryptodev.o: ../../include/openssl/md4.h | ||
| 376 | hw_cryptodev.o: ../../include/openssl/md5.h | ||
| 377 | hw_cryptodev.o: ../../include/openssl/mdc2.h | ||
| 336 | hw_cryptodev.o: ../../include/openssl/obj_mac.h | 378 | hw_cryptodev.o: ../../include/openssl/obj_mac.h |
| 337 | hw_cryptodev.o: ../../include/openssl/objects.h | 379 | hw_cryptodev.o: ../../include/openssl/objects.h |
| 338 | hw_cryptodev.o: ../../include/openssl/opensslconf.h | 380 | hw_cryptodev.o: ../../include/openssl/opensslconf.h |
| 339 | hw_cryptodev.o: ../../include/openssl/opensslv.h | 381 | hw_cryptodev.o: ../../include/openssl/opensslv.h |
| 340 | hw_cryptodev.o: ../../include/openssl/ossl_typ.h | 382 | hw_cryptodev.o: ../../include/openssl/ossl_typ.h |
| 341 | hw_cryptodev.o: ../../include/openssl/rand.h | 383 | hw_cryptodev.o: ../../include/openssl/rand.h |
| 384 | hw_cryptodev.o: ../../include/openssl/rc2.h | ||
| 385 | hw_cryptodev.o: ../../include/openssl/rc4.h | ||
| 386 | hw_cryptodev.o: ../../include/openssl/rc5.h | ||
| 387 | hw_cryptodev.o: ../../include/openssl/ripemd.h | ||
| 342 | hw_cryptodev.o: ../../include/openssl/rsa.h | 388 | hw_cryptodev.o: ../../include/openssl/rsa.h |
| 343 | hw_cryptodev.o: ../../include/openssl/safestack.h | 389 | hw_cryptodev.o: ../../include/openssl/safestack.h |
| 390 | hw_cryptodev.o: ../../include/openssl/sha.h | ||
| 344 | hw_cryptodev.o: ../../include/openssl/stack.h | 391 | hw_cryptodev.o: ../../include/openssl/stack.h |
| 345 | hw_cryptodev.o: ../../include/openssl/symhacks.h | 392 | hw_cryptodev.o: ../../include/openssl/symhacks.h |
| 346 | hw_cryptodev.o: ../../include/openssl/ui.h ../evp/evp_locl.h eng_int.h | 393 | hw_cryptodev.o: ../../include/openssl/ui.h |
| 347 | hw_cryptodev.o: hw_cryptodev.c | 394 | hw_cryptodev.o: ../../include/openssl/ui_compat.h ../evp/evp_locl.h |
| 348 | hw_sureware.o: ../../e_os.h ../../include/openssl/asn1.h | 395 | hw_cryptodev.o: eng_int.h hw_cryptodev.c |
| 349 | hw_sureware.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 396 | hw_sureware.o: ../../e_os.h ../../include/openssl/aes.h |
| 350 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 397 | hw_sureware.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 351 | hw_sureware.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 398 | hw_sureware.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 352 | hw_sureware.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 399 | hw_sureware.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 353 | hw_sureware.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 400 | hw_sureware.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 354 | hw_sureware.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 401 | hw_sureware.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 402 | hw_sureware.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h | ||
| 403 | hw_sureware.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 404 | hw_sureware.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 405 | hw_sureware.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 406 | hw_sureware.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 407 | hw_sureware.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 355 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 408 | hw_sureware.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 356 | hw_sureware.o: ../../include/openssl/opensslconf.h | 409 | hw_sureware.o: ../../include/openssl/opensslconf.h |
| 357 | hw_sureware.o: ../../include/openssl/opensslv.h | 410 | hw_sureware.o: ../../include/openssl/opensslv.h |
| 358 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 411 | hw_sureware.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 359 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 412 | hw_sureware.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 360 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 413 | hw_sureware.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 414 | hw_sureware.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 415 | hw_sureware.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 361 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 416 | hw_sureware.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 362 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 417 | hw_sureware.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 363 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | 418 | hw_sureware.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 364 | hw_sureware.o: ../../include/openssl/x509_vfy.h ../cryptlib.h eng_int.h | 419 | hw_sureware.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 365 | hw_sureware.o: engine.h hw_sureware.c hw_sureware_err.c hw_sureware_err.h | 420 | hw_sureware.o: ../cryptlib.h eng_int.h engine.h hw_sureware.c hw_sureware_err.c |
| 366 | hw_sureware.o: vendor_defns/sureware.h | 421 | hw_sureware.o: hw_sureware_err.h vendor_defns/sureware.h |
| 367 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h | 422 | hw_ubsec.o: ../../e_os.h ../../include/openssl/asn1.h |
| 368 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 423 | hw_ubsec.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 369 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 424 | hw_ubsec.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -377,77 +432,125 @@ hw_ubsec.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | |||
| 377 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 432 | hw_ubsec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 378 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h | 433 | hw_ubsec.o: ../cryptlib.h hw_ubsec.c hw_ubsec_err.c hw_ubsec_err.h |
| 379 | hw_ubsec.o: vendor_defns/hw_ubsec.h | 434 | hw_ubsec.o: vendor_defns/hw_ubsec.h |
| 380 | tb_cipher.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 435 | tb_cipher.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 381 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 436 | tb_cipher.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 382 | tb_cipher.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 437 | tb_cipher.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 383 | tb_cipher.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 438 | tb_cipher.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 384 | tb_cipher.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 439 | tb_cipher.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 385 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 440 | tb_cipher.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 441 | tb_cipher.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 442 | tb_cipher.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 443 | tb_cipher.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 444 | tb_cipher.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 445 | tb_cipher.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 386 | tb_cipher.o: ../../include/openssl/objects.h | 446 | tb_cipher.o: ../../include/openssl/objects.h |
| 387 | tb_cipher.o: ../../include/openssl/opensslconf.h | 447 | tb_cipher.o: ../../include/openssl/opensslconf.h |
| 388 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 448 | tb_cipher.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 389 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 449 | tb_cipher.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 390 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 450 | tb_cipher.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 391 | tb_cipher.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 451 | tb_cipher.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 452 | tb_cipher.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 453 | tb_cipher.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 454 | tb_cipher.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 392 | tb_cipher.o: eng_int.h tb_cipher.c | 455 | tb_cipher.o: eng_int.h tb_cipher.c |
| 393 | tb_dh.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 456 | tb_dh.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 394 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 457 | tb_dh.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 395 | tb_dh.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 458 | tb_dh.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 396 | tb_dh.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 459 | tb_dh.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 397 | tb_dh.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 460 | tb_dh.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 398 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 461 | tb_dh.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 462 | tb_dh.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 463 | tb_dh.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 464 | tb_dh.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 465 | tb_dh.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 466 | tb_dh.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 399 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 467 | tb_dh.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 400 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 468 | tb_dh.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 401 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 469 | tb_dh.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 402 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 470 | tb_dh.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 403 | tb_dh.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | 471 | tb_dh.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 472 | tb_dh.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 473 | tb_dh.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 474 | tb_dh.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h eng_int.h | ||
| 404 | tb_dh.o: tb_dh.c | 475 | tb_dh.o: tb_dh.c |
| 405 | tb_digest.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 476 | tb_digest.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 406 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 477 | tb_digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 407 | tb_digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 478 | tb_digest.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 408 | tb_digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 479 | tb_digest.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 409 | tb_digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 480 | tb_digest.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 410 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 481 | tb_digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 482 | tb_digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 483 | tb_digest.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 484 | tb_digest.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 485 | tb_digest.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 486 | tb_digest.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 411 | tb_digest.o: ../../include/openssl/objects.h | 487 | tb_digest.o: ../../include/openssl/objects.h |
| 412 | tb_digest.o: ../../include/openssl/opensslconf.h | 488 | tb_digest.o: ../../include/openssl/opensslconf.h |
| 413 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 489 | tb_digest.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 414 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 490 | tb_digest.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 415 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 491 | tb_digest.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 416 | tb_digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 492 | tb_digest.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 493 | tb_digest.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 494 | tb_digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 495 | tb_digest.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 417 | tb_digest.o: eng_int.h tb_digest.c | 496 | tb_digest.o: eng_int.h tb_digest.c |
| 418 | tb_dsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 497 | tb_dsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 419 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 498 | tb_dsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 420 | tb_dsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 499 | tb_dsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 421 | tb_dsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 500 | tb_dsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 422 | tb_dsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 501 | tb_dsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 423 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 502 | tb_dsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 503 | tb_dsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 504 | tb_dsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 505 | tb_dsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 506 | tb_dsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 507 | tb_dsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 424 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 508 | tb_dsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 425 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 509 | tb_dsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 426 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 510 | tb_dsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 427 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 511 | tb_dsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 428 | tb_dsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | 512 | tb_dsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 429 | tb_dsa.o: tb_dsa.c | 513 | tb_dsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 430 | tb_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 514 | tb_dsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 431 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 515 | tb_dsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 432 | tb_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 516 | tb_dsa.o: eng_int.h tb_dsa.c |
| 433 | tb_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 517 | tb_rand.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 434 | tb_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 518 | tb_rand.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 435 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 519 | tb_rand.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 520 | tb_rand.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 521 | tb_rand.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 522 | tb_rand.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 523 | tb_rand.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 524 | tb_rand.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 525 | tb_rand.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 526 | tb_rand.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 527 | tb_rand.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 436 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 528 | tb_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 437 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 529 | tb_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 438 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 530 | tb_rand.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 439 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 531 | tb_rand.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 440 | tb_rand.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 532 | tb_rand.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 533 | tb_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 534 | tb_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 535 | tb_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 441 | tb_rand.o: eng_int.h tb_rand.c | 536 | tb_rand.o: eng_int.h tb_rand.c |
| 442 | tb_rsa.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 537 | tb_rsa.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 443 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 538 | tb_rsa.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 444 | tb_rsa.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 539 | tb_rsa.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 445 | tb_rsa.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 540 | tb_rsa.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 446 | tb_rsa.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 541 | tb_rsa.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 447 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 542 | tb_rsa.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 543 | tb_rsa.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 544 | tb_rsa.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 545 | tb_rsa.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 546 | tb_rsa.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 547 | tb_rsa.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 448 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 548 | tb_rsa.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 449 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 549 | tb_rsa.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 450 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 550 | tb_rsa.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 451 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 551 | tb_rsa.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 452 | tb_rsa.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h eng_int.h | 552 | tb_rsa.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 453 | tb_rsa.o: tb_rsa.c | 553 | tb_rsa.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 554 | tb_rsa.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 555 | tb_rsa.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 556 | tb_rsa.o: eng_int.h tb_rsa.c | ||
diff --git a/src/lib/libssl/src/crypto/engine/eng_cnf.c b/src/lib/libssl/src/crypto/engine/eng_cnf.c index 8c0ae8a1ad..cdf670901a 100644 --- a/src/lib/libssl/src/crypto/engine/eng_cnf.c +++ b/src/lib/libssl/src/crypto/engine/eng_cnf.c | |||
| @@ -92,7 +92,7 @@ static int int_engine_init(ENGINE *e) | |||
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | 94 | ||
| 95 | int int_engine_configure(char *name, char *value, const CONF *cnf) | 95 | static int int_engine_configure(char *name, char *value, const CONF *cnf) |
| 96 | { | 96 | { |
| 97 | int i; | 97 | int i; |
| 98 | int ret = 0; | 98 | int ret = 0; |
diff --git a/src/lib/libssl/src/crypto/engine/eng_dyn.c b/src/lib/libssl/src/crypto/engine/eng_dyn.c index 4fefcc0cae..4139a16e76 100644 --- a/src/lib/libssl/src/crypto/engine/eng_dyn.c +++ b/src/lib/libssl/src/crypto/engine/eng_dyn.c | |||
| @@ -157,6 +157,10 @@ static void dynamic_data_ctx_free_func(void *parent, void *ptr, | |||
| 157 | dynamic_data_ctx *ctx = (dynamic_data_ctx *)ptr; | 157 | dynamic_data_ctx *ctx = (dynamic_data_ctx *)ptr; |
| 158 | if(ctx->dynamic_dso) | 158 | if(ctx->dynamic_dso) |
| 159 | DSO_free(ctx->dynamic_dso); | 159 | DSO_free(ctx->dynamic_dso); |
| 160 | if(ctx->DYNAMIC_LIBNAME) | ||
| 161 | OPENSSL_free((void*)ctx->DYNAMIC_LIBNAME); | ||
| 162 | if(ctx->engine_id) | ||
| 163 | OPENSSL_free((void*)ctx->engine_id); | ||
| 160 | OPENSSL_free(ctx); | 164 | OPENSSL_free(ctx); |
| 161 | } | 165 | } |
| 162 | } | 166 | } |
| @@ -169,7 +173,7 @@ static int dynamic_set_data_ctx(ENGINE *e, dynamic_data_ctx **ctx) | |||
| 169 | { | 173 | { |
| 170 | dynamic_data_ctx *c; | 174 | dynamic_data_ctx *c; |
| 171 | c = OPENSSL_malloc(sizeof(dynamic_data_ctx)); | 175 | c = OPENSSL_malloc(sizeof(dynamic_data_ctx)); |
| 172 | if(!ctx) | 176 | if(!c) |
| 173 | { | 177 | { |
| 174 | ENGINEerr(ENGINE_F_SET_DATA_CTX,ERR_R_MALLOC_FAILURE); | 178 | ENGINEerr(ENGINE_F_SET_DATA_CTX,ERR_R_MALLOC_FAILURE); |
| 175 | return 0; | 179 | return 0; |
| @@ -310,8 +314,13 @@ static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 310 | /* a NULL 'p' or a string of zero-length is the same thing */ | 314 | /* a NULL 'p' or a string of zero-length is the same thing */ |
| 311 | if(p && (strlen((const char *)p) < 1)) | 315 | if(p && (strlen((const char *)p) < 1)) |
| 312 | p = NULL; | 316 | p = NULL; |
| 313 | ctx->DYNAMIC_LIBNAME = (const char *)p; | 317 | if(ctx->DYNAMIC_LIBNAME) |
| 314 | return 1; | 318 | OPENSSL_free((void*)ctx->DYNAMIC_LIBNAME); |
| 319 | if(p) | ||
| 320 | ctx->DYNAMIC_LIBNAME = BUF_strdup(p); | ||
| 321 | else | ||
| 322 | ctx->DYNAMIC_LIBNAME = NULL; | ||
| 323 | return (ctx->DYNAMIC_LIBNAME ? 1 : 0); | ||
| 315 | case DYNAMIC_CMD_NO_VCHECK: | 324 | case DYNAMIC_CMD_NO_VCHECK: |
| 316 | ctx->no_vcheck = ((i == 0) ? 0 : 1); | 325 | ctx->no_vcheck = ((i == 0) ? 0 : 1); |
| 317 | return 1; | 326 | return 1; |
| @@ -319,8 +328,13 @@ static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 319 | /* a NULL 'p' or a string of zero-length is the same thing */ | 328 | /* a NULL 'p' or a string of zero-length is the same thing */ |
| 320 | if(p && (strlen((const char *)p) < 1)) | 329 | if(p && (strlen((const char *)p) < 1)) |
| 321 | p = NULL; | 330 | p = NULL; |
| 322 | ctx->engine_id = (const char *)p; | 331 | if(ctx->engine_id) |
| 323 | return 1; | 332 | OPENSSL_free((void*)ctx->engine_id); |
| 333 | if(p) | ||
| 334 | ctx->engine_id = BUF_strdup(p); | ||
| 335 | else | ||
| 336 | ctx->engine_id = NULL; | ||
| 337 | return (ctx->engine_id ? 1 : 0); | ||
| 324 | case DYNAMIC_CMD_LIST_ADD: | 338 | case DYNAMIC_CMD_LIST_ADD: |
| 325 | if((i < 0) || (i > 2)) | 339 | if((i < 0) || (i > 2)) |
| 326 | { | 340 | { |
diff --git a/src/lib/libssl/src/crypto/engine/eng_fat.c b/src/lib/libssl/src/crypto/engine/eng_fat.c index d49aa7ed40..f7edb5ad32 100644 --- a/src/lib/libssl/src/crypto/engine/eng_fat.c +++ b/src/lib/libssl/src/crypto/engine/eng_fat.c | |||
| @@ -84,7 +84,7 @@ int ENGINE_set_default(ENGINE *e, unsigned int flags) | |||
| 84 | 84 | ||
| 85 | /* Set default algorithms using a string */ | 85 | /* Set default algorithms using a string */ |
| 86 | 86 | ||
| 87 | int int_def_cb(const char *alg, int len, void *arg) | 87 | static int int_def_cb(const char *alg, int len, void *arg) |
| 88 | { | 88 | { |
| 89 | unsigned int *pflags = arg; | 89 | unsigned int *pflags = arg; |
| 90 | if (!strncmp(alg, "ALL", len)) | 90 | if (!strncmp(alg, "ALL", len)) |
diff --git a/src/lib/libssl/src/crypto/engine/hw_4758_cca.c b/src/lib/libssl/src/crypto/engine/hw_4758_cca.c index 0ca2f920dc..f404b1a3b8 100644 --- a/src/lib/libssl/src/crypto/engine/hw_4758_cca.c +++ b/src/lib/libssl/src/crypto/engine/hw_4758_cca.c | |||
| @@ -124,8 +124,24 @@ static F_RANDOMNUMBERGENERATE randomNumberGenerate; | |||
| 124 | 124 | ||
| 125 | /* static variables */ | 125 | /* static variables */ |
| 126 | /*------------------*/ | 126 | /*------------------*/ |
| 127 | static const char def_CCA4758_LIB_NAME[] = CCA_LIB_NAME; | 127 | static const char *CCA4758_LIB_NAME = NULL; |
| 128 | static const char *CCA4758_LIB_NAME = def_CCA4758_LIB_NAME; | 128 | static const char *get_CCA4758_LIB_NAME(void) |
| 129 | { | ||
| 130 | if(CCA4758_LIB_NAME) | ||
| 131 | return CCA4758_LIB_NAME; | ||
| 132 | return CCA_LIB_NAME; | ||
| 133 | } | ||
| 134 | static void free_CCA4758_LIB_NAME(void) | ||
| 135 | { | ||
| 136 | if(CCA4758_LIB_NAME) | ||
| 137 | OPENSSL_free((void*)CCA4758_LIB_NAME); | ||
| 138 | CCA4758_LIB_NAME = NULL; | ||
| 139 | } | ||
| 140 | static long set_CCA4758_LIB_NAME(const char *name) | ||
| 141 | { | ||
| 142 | free_CCA4758_LIB_NAME(); | ||
| 143 | return (((CCA4758_LIB_NAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 144 | } | ||
| 129 | #ifndef OPENSSL_NO_RSA | 145 | #ifndef OPENSSL_NO_RSA |
| 130 | static const char* n_keyRecordRead = CSNDKRR; | 146 | static const char* n_keyRecordRead = CSNDKRR; |
| 131 | static const char* n_digitalSignatureGenerate = CSNDDSG; | 147 | static const char* n_digitalSignatureGenerate = CSNDDSG; |
| @@ -232,6 +248,7 @@ void ENGINE_load_4758cca(void) | |||
| 232 | static int ibm_4758_cca_destroy(ENGINE *e) | 248 | static int ibm_4758_cca_destroy(ENGINE *e) |
| 233 | { | 249 | { |
| 234 | ERR_unload_CCA4758_strings(); | 250 | ERR_unload_CCA4758_strings(); |
| 251 | free_CCA4758_LIB_NAME(); | ||
| 235 | return 1; | 252 | return 1; |
| 236 | } | 253 | } |
| 237 | 254 | ||
| @@ -243,7 +260,7 @@ static int ibm_4758_cca_init(ENGINE *e) | |||
| 243 | goto err; | 260 | goto err; |
| 244 | } | 261 | } |
| 245 | 262 | ||
| 246 | dso = DSO_load(NULL, CCA4758_LIB_NAME , NULL, 0); | 263 | dso = DSO_load(NULL, get_CCA4758_LIB_NAME(), NULL, 0); |
| 247 | if(!dso) | 264 | if(!dso) |
| 248 | { | 265 | { |
| 249 | CCA4758err(CCA4758_F_IBM_4758_CCA_INIT,CCA4758_R_DSO_FAILURE); | 266 | CCA4758err(CCA4758_F_IBM_4758_CCA_INIT,CCA4758_R_DSO_FAILURE); |
| @@ -299,7 +316,8 @@ err: | |||
| 299 | 316 | ||
| 300 | static int ibm_4758_cca_finish(ENGINE *e) | 317 | static int ibm_4758_cca_finish(ENGINE *e) |
| 301 | { | 318 | { |
| 302 | if(dso) | 319 | free_CCA4758_LIB_NAME(); |
| 320 | if(!dso) | ||
| 303 | { | 321 | { |
| 304 | CCA4758err(CCA4758_F_IBM_4758_CCA_FINISH, | 322 | CCA4758err(CCA4758_F_IBM_4758_CCA_FINISH, |
| 305 | CCA4758_R_NOT_LOADED); | 323 | CCA4758_R_NOT_LOADED); |
| @@ -340,8 +358,7 @@ static int ibm_4758_cca_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 340 | CCA4758_R_ALREADY_LOADED); | 358 | CCA4758_R_ALREADY_LOADED); |
| 341 | return 0; | 359 | return 0; |
| 342 | } | 360 | } |
| 343 | CCA4758_LIB_NAME = (const char *)p; | 361 | return set_CCA4758_LIB_NAME((const char *)p); |
| 344 | return 1; | ||
| 345 | default: | 362 | default: |
| 346 | break; | 363 | break; |
| 347 | } | 364 | } |
diff --git a/src/lib/libssl/src/crypto/engine/hw_aep.c b/src/lib/libssl/src/crypto/engine/hw_aep.c index cf4507cff1..8b8380a582 100644 --- a/src/lib/libssl/src/crypto/engine/hw_aep.c +++ b/src/lib/libssl/src/crypto/engine/hw_aep.c | |||
| @@ -60,7 +60,7 @@ | |||
| 60 | #include <string.h> | 60 | #include <string.h> |
| 61 | 61 | ||
| 62 | #include <openssl/e_os2.h> | 62 | #include <openssl/e_os2.h> |
| 63 | #ifndef OPENSSL_SYS_MSDOS | 63 | #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) |
| 64 | #include <sys/types.h> | 64 | #include <sys/types.h> |
| 65 | #include <unistd.h> | 65 | #include <unistd.h> |
| 66 | #else | 66 | #else |
| @@ -71,6 +71,7 @@ typedef int pid_t; | |||
| 71 | #include <openssl/crypto.h> | 71 | #include <openssl/crypto.h> |
| 72 | #include <openssl/dso.h> | 72 | #include <openssl/dso.h> |
| 73 | #include <openssl/engine.h> | 73 | #include <openssl/engine.h> |
| 74 | #include <openssl/buffer.h> | ||
| 74 | 75 | ||
| 75 | #ifndef OPENSSL_NO_HW | 76 | #ifndef OPENSSL_NO_HW |
| 76 | #ifndef OPENSSL_NO_HW_AEP | 77 | #ifndef OPENSSL_NO_HW_AEP |
| @@ -363,7 +364,24 @@ static DSO *aep_dso = NULL; | |||
| 363 | /* These are the static string constants for the DSO file name and the function | 364 | /* These are the static string constants for the DSO file name and the function |
| 364 | * symbol names to bind to. | 365 | * symbol names to bind to. |
| 365 | */ | 366 | */ |
| 366 | static const char *AEP_LIBNAME = "aep"; | 367 | static const char *AEP_LIBNAME = NULL; |
| 368 | static const char *get_AEP_LIBNAME(void) | ||
| 369 | { | ||
| 370 | if(AEP_LIBNAME) | ||
| 371 | return AEP_LIBNAME; | ||
| 372 | return "aep"; | ||
| 373 | } | ||
| 374 | static void free_AEP_LIBNAME(void) | ||
| 375 | { | ||
| 376 | if(AEP_LIBNAME) | ||
| 377 | OPENSSL_free((void*)AEP_LIBNAME); | ||
| 378 | AEP_LIBNAME = NULL; | ||
| 379 | } | ||
| 380 | static long set_AEP_LIBNAME(const char *name) | ||
| 381 | { | ||
| 382 | free_AEP_LIBNAME(); | ||
| 383 | return ((AEP_LIBNAME = BUF_strdup(name)) != NULL ? 1 : 0); | ||
| 384 | } | ||
| 367 | 385 | ||
| 368 | static const char *AEP_F1 = "AEP_ModExp"; | 386 | static const char *AEP_F1 = "AEP_ModExp"; |
| 369 | static const char *AEP_F2 = "AEP_ModExpCrt"; | 387 | static const char *AEP_F2 = "AEP_ModExpCrt"; |
| @@ -412,7 +430,7 @@ static int aep_init(ENGINE *e) | |||
| 412 | } | 430 | } |
| 413 | /* Attempt to load libaep.so. */ | 431 | /* Attempt to load libaep.so. */ |
| 414 | 432 | ||
| 415 | aep_dso = DSO_load(NULL, AEP_LIBNAME, NULL, 0); | 433 | aep_dso = DSO_load(NULL, get_AEP_LIBNAME(), NULL, 0); |
| 416 | 434 | ||
| 417 | if(aep_dso == NULL) | 435 | if(aep_dso == NULL) |
| 418 | { | 436 | { |
| @@ -474,6 +492,7 @@ static int aep_init(ENGINE *e) | |||
| 474 | /* Destructor (complements the "ENGINE_aep()" constructor) */ | 492 | /* Destructor (complements the "ENGINE_aep()" constructor) */ |
| 475 | static int aep_destroy(ENGINE *e) | 493 | static int aep_destroy(ENGINE *e) |
| 476 | { | 494 | { |
| 495 | free_AEP_LIBNAME(); | ||
| 477 | ERR_unload_AEPHK_strings(); | 496 | ERR_unload_AEPHK_strings(); |
| 478 | return 1; | 497 | return 1; |
| 479 | } | 498 | } |
| @@ -549,8 +568,7 @@ static int aep_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 549 | AEPHK_R_ALREADY_LOADED); | 568 | AEPHK_R_ALREADY_LOADED); |
| 550 | return 0; | 569 | return 0; |
| 551 | } | 570 | } |
| 552 | AEP_LIBNAME = (const char *)p; | 571 | return set_AEP_LIBNAME((const char*)p); |
| 553 | return 1; | ||
| 554 | default: | 572 | default: |
| 555 | break; | 573 | break; |
| 556 | } | 574 | } |
diff --git a/src/lib/libssl/src/crypto/engine/hw_atalla.c b/src/lib/libssl/src/crypto/engine/hw_atalla.c index 696cfcf156..6151c46902 100644 --- a/src/lib/libssl/src/crypto/engine/hw_atalla.c +++ b/src/lib/libssl/src/crypto/engine/hw_atalla.c | |||
| @@ -286,8 +286,24 @@ static tfnASI_GetPerformanceStatistics *p_Atalla_GetPerformanceStatistics = NULL | |||
| 286 | * atasi.dll on win32). For the purposes of testing, I have created a symbollic | 286 | * atasi.dll on win32). For the purposes of testing, I have created a symbollic |
| 287 | * link called "libatasi.so" so that we can use native name-translation - a | 287 | * link called "libatasi.so" so that we can use native name-translation - a |
| 288 | * better solution will be needed. */ | 288 | * better solution will be needed. */ |
| 289 | static const char def_ATALLA_LIBNAME[] = "atasi"; | 289 | static const char *ATALLA_LIBNAME = NULL; |
| 290 | static const char *ATALLA_LIBNAME = def_ATALLA_LIBNAME; | 290 | static const char *get_ATALLA_LIBNAME(void) |
| 291 | { | ||
| 292 | if(ATALLA_LIBNAME) | ||
| 293 | return ATALLA_LIBNAME; | ||
| 294 | return "atasi"; | ||
| 295 | } | ||
| 296 | static void free_ATALLA_LIBNAME(void) | ||
| 297 | { | ||
| 298 | if(ATALLA_LIBNAME) | ||
| 299 | OPENSSL_free((void*)ATALLA_LIBNAME); | ||
| 300 | ATALLA_LIBNAME = NULL; | ||
| 301 | } | ||
| 302 | static long set_ATALLA_LIBNAME(const char *name) | ||
| 303 | { | ||
| 304 | free_ATALLA_LIBNAME(); | ||
| 305 | return (((ATALLA_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 306 | } | ||
| 291 | static const char *ATALLA_F1 = "ASI_GetHardwareConfig"; | 307 | static const char *ATALLA_F1 = "ASI_GetHardwareConfig"; |
| 292 | static const char *ATALLA_F2 = "ASI_RSAPrivateKeyOpFn"; | 308 | static const char *ATALLA_F2 = "ASI_RSAPrivateKeyOpFn"; |
| 293 | static const char *ATALLA_F3 = "ASI_GetPerformanceStatistics"; | 309 | static const char *ATALLA_F3 = "ASI_GetPerformanceStatistics"; |
| @@ -295,6 +311,7 @@ static const char *ATALLA_F3 = "ASI_GetPerformanceStatistics"; | |||
| 295 | /* Destructor (complements the "ENGINE_atalla()" constructor) */ | 311 | /* Destructor (complements the "ENGINE_atalla()" constructor) */ |
| 296 | static int atalla_destroy(ENGINE *e) | 312 | static int atalla_destroy(ENGINE *e) |
| 297 | { | 313 | { |
| 314 | free_ATALLA_LIBNAME(); | ||
| 298 | /* Unload the atalla error strings so any error state including our | 315 | /* Unload the atalla error strings so any error state including our |
| 299 | * functs or reasons won't lead to a segfault (they simply get displayed | 316 | * functs or reasons won't lead to a segfault (they simply get displayed |
| 300 | * without corresponding string data because none will be found). */ | 317 | * without corresponding string data because none will be found). */ |
| @@ -324,7 +341,7 @@ static int atalla_init(ENGINE *e) | |||
| 324 | * drivers really use - for now a symbollic link needs to be | 341 | * drivers really use - for now a symbollic link needs to be |
| 325 | * created on the host system from libatasi.so to atasi.so on | 342 | * created on the host system from libatasi.so to atasi.so on |
| 326 | * unix variants. */ | 343 | * unix variants. */ |
| 327 | atalla_dso = DSO_load(NULL, ATALLA_LIBNAME, NULL, 0); | 344 | atalla_dso = DSO_load(NULL, get_ATALLA_LIBNAME(), NULL, 0); |
| 328 | if(atalla_dso == NULL) | 345 | if(atalla_dso == NULL) |
| 329 | { | 346 | { |
| 330 | ATALLAerr(ATALLA_F_ATALLA_INIT,ATALLA_R_NOT_LOADED); | 347 | ATALLAerr(ATALLA_F_ATALLA_INIT,ATALLA_R_NOT_LOADED); |
| @@ -364,6 +381,7 @@ err: | |||
| 364 | 381 | ||
| 365 | static int atalla_finish(ENGINE *e) | 382 | static int atalla_finish(ENGINE *e) |
| 366 | { | 383 | { |
| 384 | free_ATALLA_LIBNAME(); | ||
| 367 | if(atalla_dso == NULL) | 385 | if(atalla_dso == NULL) |
| 368 | { | 386 | { |
| 369 | ATALLAerr(ATALLA_F_ATALLA_FINISH,ATALLA_R_NOT_LOADED); | 387 | ATALLAerr(ATALLA_F_ATALLA_FINISH,ATALLA_R_NOT_LOADED); |
| @@ -397,8 +415,7 @@ static int atalla_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 397 | ATALLAerr(ATALLA_F_ATALLA_CTRL,ATALLA_R_ALREADY_LOADED); | 415 | ATALLAerr(ATALLA_F_ATALLA_CTRL,ATALLA_R_ALREADY_LOADED); |
| 398 | return 0; | 416 | return 0; |
| 399 | } | 417 | } |
| 400 | ATALLA_LIBNAME = (const char *)p; | 418 | return set_ATALLA_LIBNAME((const char *)p); |
| 401 | return 1; | ||
| 402 | default: | 419 | default: |
| 403 | break; | 420 | break; |
| 404 | } | 421 | } |
diff --git a/src/lib/libssl/src/crypto/engine/hw_cswift.c b/src/lib/libssl/src/crypto/engine/hw_cswift.c index da732abce0..f5c897bdbb 100644 --- a/src/lib/libssl/src/crypto/engine/hw_cswift.c +++ b/src/lib/libssl/src/crypto/engine/hw_cswift.c | |||
| @@ -280,8 +280,24 @@ t_swSimpleRequest *p_CSwift_SimpleRequest = NULL; | |||
| 280 | t_swReleaseAccContext *p_CSwift_ReleaseAccContext = NULL; | 280 | t_swReleaseAccContext *p_CSwift_ReleaseAccContext = NULL; |
| 281 | 281 | ||
| 282 | /* Used in the DSO operations. */ | 282 | /* Used in the DSO operations. */ |
| 283 | static const char def_CSWIFT_LIBNAME[] = "swift"; | 283 | static const char *CSWIFT_LIBNAME = NULL; |
| 284 | static const char *CSWIFT_LIBNAME = def_CSWIFT_LIBNAME; | 284 | static const char *get_CSWIFT_LIBNAME(void) |
| 285 | { | ||
| 286 | if(CSWIFT_LIBNAME) | ||
| 287 | return CSWIFT_LIBNAME; | ||
| 288 | return "swift"; | ||
| 289 | } | ||
| 290 | static void free_CSWIFT_LIBNAME(void) | ||
| 291 | { | ||
| 292 | if(CSWIFT_LIBNAME) | ||
| 293 | OPENSSL_free((void*)CSWIFT_LIBNAME); | ||
| 294 | CSWIFT_LIBNAME = NULL; | ||
| 295 | } | ||
| 296 | static long set_CSWIFT_LIBNAME(const char *name) | ||
| 297 | { | ||
| 298 | free_CSWIFT_LIBNAME(); | ||
| 299 | return (((CSWIFT_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 300 | } | ||
| 285 | static const char *CSWIFT_F1 = "swAcquireAccContext"; | 301 | static const char *CSWIFT_F1 = "swAcquireAccContext"; |
| 286 | static const char *CSWIFT_F2 = "swAttachKeyParam"; | 302 | static const char *CSWIFT_F2 = "swAttachKeyParam"; |
| 287 | static const char *CSWIFT_F3 = "swSimpleRequest"; | 303 | static const char *CSWIFT_F3 = "swSimpleRequest"; |
| @@ -313,6 +329,7 @@ static void release_context(SW_CONTEXT_HANDLE hac) | |||
| 313 | /* Destructor (complements the "ENGINE_cswift()" constructor) */ | 329 | /* Destructor (complements the "ENGINE_cswift()" constructor) */ |
| 314 | static int cswift_destroy(ENGINE *e) | 330 | static int cswift_destroy(ENGINE *e) |
| 315 | { | 331 | { |
| 332 | free_CSWIFT_LIBNAME(); | ||
| 316 | ERR_unload_CSWIFT_strings(); | 333 | ERR_unload_CSWIFT_strings(); |
| 317 | return 1; | 334 | return 1; |
| 318 | } | 335 | } |
| @@ -332,7 +349,7 @@ static int cswift_init(ENGINE *e) | |||
| 332 | goto err; | 349 | goto err; |
| 333 | } | 350 | } |
| 334 | /* Attempt to load libswift.so/swift.dll/whatever. */ | 351 | /* Attempt to load libswift.so/swift.dll/whatever. */ |
| 335 | cswift_dso = DSO_load(NULL, CSWIFT_LIBNAME, NULL, 0); | 352 | cswift_dso = DSO_load(NULL, get_CSWIFT_LIBNAME(), NULL, 0); |
| 336 | if(cswift_dso == NULL) | 353 | if(cswift_dso == NULL) |
| 337 | { | 354 | { |
| 338 | CSWIFTerr(CSWIFT_F_CSWIFT_INIT,CSWIFT_R_NOT_LOADED); | 355 | CSWIFTerr(CSWIFT_F_CSWIFT_INIT,CSWIFT_R_NOT_LOADED); |
| @@ -377,6 +394,7 @@ err: | |||
| 377 | 394 | ||
| 378 | static int cswift_finish(ENGINE *e) | 395 | static int cswift_finish(ENGINE *e) |
| 379 | { | 396 | { |
| 397 | free_CSWIFT_LIBNAME(); | ||
| 380 | if(cswift_dso == NULL) | 398 | if(cswift_dso == NULL) |
| 381 | { | 399 | { |
| 382 | CSWIFTerr(CSWIFT_F_CSWIFT_FINISH,CSWIFT_R_NOT_LOADED); | 400 | CSWIFTerr(CSWIFT_F_CSWIFT_FINISH,CSWIFT_R_NOT_LOADED); |
| @@ -411,8 +429,7 @@ static int cswift_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 411 | CSWIFTerr(CSWIFT_F_CSWIFT_CTRL,CSWIFT_R_ALREADY_LOADED); | 429 | CSWIFTerr(CSWIFT_F_CSWIFT_CTRL,CSWIFT_R_ALREADY_LOADED); |
| 412 | return 0; | 430 | return 0; |
| 413 | } | 431 | } |
| 414 | CSWIFT_LIBNAME = (const char *)p; | 432 | return set_CSWIFT_LIBNAME((const char *)p); |
| 415 | return 1; | ||
| 416 | default: | 433 | default: |
| 417 | break; | 434 | break; |
| 418 | } | 435 | } |
diff --git a/src/lib/libssl/src/crypto/engine/hw_ncipher.c b/src/lib/libssl/src/crypto/engine/hw_ncipher.c index 4762a54e3d..a43d4360f2 100644 --- a/src/lib/libssl/src/crypto/engine/hw_ncipher.c +++ b/src/lib/libssl/src/crypto/engine/hw_ncipher.c | |||
| @@ -59,9 +59,9 @@ | |||
| 59 | 59 | ||
| 60 | #include <stdio.h> | 60 | #include <stdio.h> |
| 61 | #include <string.h> | 61 | #include <string.h> |
| 62 | #include "cryptlib.h" | ||
| 62 | #include <openssl/crypto.h> | 63 | #include <openssl/crypto.h> |
| 63 | #include <openssl/pem.h> | 64 | #include <openssl/pem.h> |
| 64 | #include "cryptlib.h" | ||
| 65 | #include <openssl/dso.h> | 65 | #include <openssl/dso.h> |
| 66 | #include <openssl/engine.h> | 66 | #include <openssl/engine.h> |
| 67 | #include <openssl/ui.h> | 67 | #include <openssl/ui.h> |
| @@ -109,11 +109,13 @@ static int hwcrhk_rsa_mod_exp(BIGNUM *r, const BIGNUM *I, RSA *rsa); | |||
| 109 | static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, | 109 | static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, |
| 110 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); | 110 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); |
| 111 | 111 | ||
| 112 | #ifndef OPENSSL_NO_DH | ||
| 112 | /* DH stuff */ | 113 | /* DH stuff */ |
| 113 | /* This function is alised to mod_exp (with the DH and mont dropped). */ | 114 | /* This function is alised to mod_exp (with the DH and mont dropped). */ |
| 114 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, | 115 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, |
| 115 | const BIGNUM *a, const BIGNUM *p, | 116 | const BIGNUM *a, const BIGNUM *p, |
| 116 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); | 117 | const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx); |
| 118 | #endif | ||
| 117 | 119 | ||
| 118 | /* RAND stuff */ | 120 | /* RAND stuff */ |
| 119 | static int hwcrhk_rand_bytes(unsigned char *buf, int num); | 121 | static int hwcrhk_rand_bytes(unsigned char *buf, int num); |
| @@ -422,8 +424,24 @@ static HWCryptoHook_RSAUnloadKey_t *p_hwcrhk_RSAUnloadKey = NULL; | |||
| 422 | static HWCryptoHook_ModExpCRT_t *p_hwcrhk_ModExpCRT = NULL; | 424 | static HWCryptoHook_ModExpCRT_t *p_hwcrhk_ModExpCRT = NULL; |
| 423 | 425 | ||
| 424 | /* Used in the DSO operations. */ | 426 | /* Used in the DSO operations. */ |
| 425 | static const char def_HWCRHK_LIBNAME[] = "nfhwcrhk"; | 427 | static const char *HWCRHK_LIBNAME = NULL; |
| 426 | static const char *HWCRHK_LIBNAME = def_HWCRHK_LIBNAME; | 428 | static void free_HWCRHK_LIBNAME(void) |
| 429 | { | ||
| 430 | if(HWCRHK_LIBNAME) | ||
| 431 | OPENSSL_free((void*)HWCRHK_LIBNAME); | ||
| 432 | HWCRHK_LIBNAME = NULL; | ||
| 433 | } | ||
| 434 | static const char *get_HWCRHK_LIBNAME(void) | ||
| 435 | { | ||
| 436 | if(HWCRHK_LIBNAME) | ||
| 437 | return HWCRHK_LIBNAME; | ||
| 438 | return "nfhwcrhk"; | ||
| 439 | } | ||
| 440 | static long set_HWCRHK_LIBNAME(const char *name) | ||
| 441 | { | ||
| 442 | free_HWCRHK_LIBNAME(); | ||
| 443 | return (((HWCRHK_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 444 | } | ||
| 427 | static const char *n_hwcrhk_Init = "HWCryptoHook_Init"; | 445 | static const char *n_hwcrhk_Init = "HWCryptoHook_Init"; |
| 428 | static const char *n_hwcrhk_Finish = "HWCryptoHook_Finish"; | 446 | static const char *n_hwcrhk_Finish = "HWCryptoHook_Finish"; |
| 429 | static const char *n_hwcrhk_ModExp = "HWCryptoHook_ModExp"; | 447 | static const char *n_hwcrhk_ModExp = "HWCryptoHook_ModExp"; |
| @@ -469,6 +487,7 @@ static void release_context(HWCryptoHook_ContextHandle hac) | |||
| 469 | /* Destructor (complements the "ENGINE_ncipher()" constructor) */ | 487 | /* Destructor (complements the "ENGINE_ncipher()" constructor) */ |
| 470 | static int hwcrhk_destroy(ENGINE *e) | 488 | static int hwcrhk_destroy(ENGINE *e) |
| 471 | { | 489 | { |
| 490 | free_HWCRHK_LIBNAME(); | ||
| 472 | ERR_unload_HWCRHK_strings(); | 491 | ERR_unload_HWCRHK_strings(); |
| 473 | return 1; | 492 | return 1; |
| 474 | } | 493 | } |
| @@ -494,7 +513,7 @@ static int hwcrhk_init(ENGINE *e) | |||
| 494 | goto err; | 513 | goto err; |
| 495 | } | 514 | } |
| 496 | /* Attempt to load libnfhwcrhk.so/nfhwcrhk.dll/whatever. */ | 515 | /* Attempt to load libnfhwcrhk.so/nfhwcrhk.dll/whatever. */ |
| 497 | hwcrhk_dso = DSO_load(NULL, HWCRHK_LIBNAME, NULL, 0); | 516 | hwcrhk_dso = DSO_load(NULL, get_HWCRHK_LIBNAME(), NULL, 0); |
| 498 | if(hwcrhk_dso == NULL) | 517 | if(hwcrhk_dso == NULL) |
| 499 | { | 518 | { |
| 500 | HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_DSO_FAILURE); | 519 | HWCRHKerr(HWCRHK_F_HWCRHK_INIT,HWCRHK_R_DSO_FAILURE); |
| @@ -586,6 +605,7 @@ err: | |||
| 586 | static int hwcrhk_finish(ENGINE *e) | 605 | static int hwcrhk_finish(ENGINE *e) |
| 587 | { | 606 | { |
| 588 | int to_return = 1; | 607 | int to_return = 1; |
| 608 | free_HWCRHK_LIBNAME(); | ||
| 589 | if(hwcrhk_dso == NULL) | 609 | if(hwcrhk_dso == NULL) |
| 590 | { | 610 | { |
| 591 | HWCRHKerr(HWCRHK_F_HWCRHK_FINISH,HWCRHK_R_NOT_LOADED); | 611 | HWCRHKerr(HWCRHK_F_HWCRHK_FINISH,HWCRHK_R_NOT_LOADED); |
| @@ -634,8 +654,7 @@ static int hwcrhk_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 634 | HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,ERR_R_PASSED_NULL_PARAMETER); | 654 | HWCRHKerr(HWCRHK_F_HWCRHK_CTRL,ERR_R_PASSED_NULL_PARAMETER); |
| 635 | return 0; | 655 | return 0; |
| 636 | } | 656 | } |
| 637 | HWCRHK_LIBNAME = (const char *)p; | 657 | return set_HWCRHK_LIBNAME((const char *)p); |
| 638 | return 1; | ||
| 639 | case ENGINE_CTRL_SET_LOGSTREAM: | 658 | case ENGINE_CTRL_SET_LOGSTREAM: |
| 640 | { | 659 | { |
| 641 | BIO *bio = (BIO *)p; | 660 | BIO *bio = (BIO *)p; |
| @@ -1040,6 +1059,7 @@ static int hwcrhk_mod_exp_mont(BIGNUM *r, const BIGNUM *a, const BIGNUM *p, | |||
| 1040 | return hwcrhk_mod_exp(r, a, p, m, ctx); | 1059 | return hwcrhk_mod_exp(r, a, p, m, ctx); |
| 1041 | } | 1060 | } |
| 1042 | 1061 | ||
| 1062 | #ifndef OPENSSL_NO_DH | ||
| 1043 | /* This function is aliased to mod_exp (with the dh and mont dropped). */ | 1063 | /* This function is aliased to mod_exp (with the dh and mont dropped). */ |
| 1044 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, | 1064 | static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, |
| 1045 | const BIGNUM *a, const BIGNUM *p, | 1065 | const BIGNUM *a, const BIGNUM *p, |
| @@ -1047,6 +1067,7 @@ static int hwcrhk_mod_exp_dh(const DH *dh, BIGNUM *r, | |||
| 1047 | { | 1067 | { |
| 1048 | return hwcrhk_mod_exp(r, a, p, m, ctx); | 1068 | return hwcrhk_mod_exp(r, a, p, m, ctx); |
| 1049 | } | 1069 | } |
| 1070 | #endif | ||
| 1050 | 1071 | ||
| 1051 | /* Random bytes are good */ | 1072 | /* Random bytes are good */ |
| 1052 | static int hwcrhk_rand_bytes(unsigned char *buf, int num) | 1073 | static int hwcrhk_rand_bytes(unsigned char *buf, int num) |
diff --git a/src/lib/libssl/src/crypto/engine/hw_nuron.c b/src/lib/libssl/src/crypto/engine/hw_nuron.c index 2672012154..130b6d8b40 100644 --- a/src/lib/libssl/src/crypto/engine/hw_nuron.c +++ b/src/lib/libssl/src/crypto/engine/hw_nuron.c | |||
| @@ -69,8 +69,24 @@ | |||
| 69 | #define NURON_LIB_NAME "nuron engine" | 69 | #define NURON_LIB_NAME "nuron engine" |
| 70 | #include "hw_nuron_err.c" | 70 | #include "hw_nuron_err.c" |
| 71 | 71 | ||
| 72 | static const char def_NURON_LIBNAME[] = "nuronssl"; | 72 | static const char *NURON_LIBNAME = NULL; |
| 73 | static const char *NURON_LIBNAME = def_NURON_LIBNAME; | 73 | static const char *get_NURON_LIBNAME(void) |
| 74 | { | ||
| 75 | if(NURON_LIBNAME) | ||
| 76 | return NURON_LIBNAME; | ||
| 77 | return "nuronssl"; | ||
| 78 | } | ||
| 79 | static void free_NURON_LIBNAME(void) | ||
| 80 | { | ||
| 81 | if(NURON_LIBNAME) | ||
| 82 | OPENSSL_free((void*)NURON_LIBNAME); | ||
| 83 | NURON_LIBNAME = NULL; | ||
| 84 | } | ||
| 85 | static long set_NURON_LIBNAME(const char *name) | ||
| 86 | { | ||
| 87 | free_NURON_LIBNAME(); | ||
| 88 | return (((NURON_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 89 | } | ||
| 74 | static const char *NURON_F1 = "nuron_mod_exp"; | 90 | static const char *NURON_F1 = "nuron_mod_exp"; |
| 75 | 91 | ||
| 76 | /* The definitions for control commands specific to this engine */ | 92 | /* The definitions for control commands specific to this engine */ |
| @@ -90,6 +106,7 @@ static DSO *pvDSOHandle = NULL; | |||
| 90 | 106 | ||
| 91 | static int nuron_destroy(ENGINE *e) | 107 | static int nuron_destroy(ENGINE *e) |
| 92 | { | 108 | { |
| 109 | free_NURON_LIBNAME(); | ||
| 93 | ERR_unload_NURON_strings(); | 110 | ERR_unload_NURON_strings(); |
| 94 | return 1; | 111 | return 1; |
| 95 | } | 112 | } |
| @@ -102,7 +119,7 @@ static int nuron_init(ENGINE *e) | |||
| 102 | return 0; | 119 | return 0; |
| 103 | } | 120 | } |
| 104 | 121 | ||
| 105 | pvDSOHandle = DSO_load(NULL, NURON_LIBNAME, NULL, | 122 | pvDSOHandle = DSO_load(NULL, get_NURON_LIBNAME(), NULL, |
| 106 | DSO_FLAG_NAME_TRANSLATION_EXT_ONLY); | 123 | DSO_FLAG_NAME_TRANSLATION_EXT_ONLY); |
| 107 | if(!pvDSOHandle) | 124 | if(!pvDSOHandle) |
| 108 | { | 125 | { |
| @@ -122,6 +139,7 @@ static int nuron_init(ENGINE *e) | |||
| 122 | 139 | ||
| 123 | static int nuron_finish(ENGINE *e) | 140 | static int nuron_finish(ENGINE *e) |
| 124 | { | 141 | { |
| 142 | free_NURON_LIBNAME(); | ||
| 125 | if(pvDSOHandle == NULL) | 143 | if(pvDSOHandle == NULL) |
| 126 | { | 144 | { |
| 127 | NURONerr(NURON_F_NURON_FINISH,NURON_R_NOT_LOADED); | 145 | NURONerr(NURON_F_NURON_FINISH,NURON_R_NOT_LOADED); |
| @@ -153,8 +171,7 @@ static int nuron_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 153 | NURONerr(NURON_F_NURON_CTRL,NURON_R_ALREADY_LOADED); | 171 | NURONerr(NURON_F_NURON_CTRL,NURON_R_ALREADY_LOADED); |
| 154 | return 0; | 172 | return 0; |
| 155 | } | 173 | } |
| 156 | NURON_LIBNAME = (const char *)p; | 174 | return set_NURON_LIBNAME((const char *)p); |
| 157 | return 1; | ||
| 158 | default: | 175 | default: |
| 159 | break; | 176 | break; |
| 160 | } | 177 | } |
diff --git a/src/lib/libssl/src/crypto/engine/hw_ubsec.c b/src/lib/libssl/src/crypto/engine/hw_ubsec.c index 743c06043c..63397f868c 100644 --- a/src/lib/libssl/src/crypto/engine/hw_ubsec.c +++ b/src/lib/libssl/src/crypto/engine/hw_ubsec.c | |||
| @@ -304,7 +304,24 @@ static int max_key_len = 1024; /* ??? */ | |||
| 304 | * symbol names to bind to. | 304 | * symbol names to bind to. |
| 305 | */ | 305 | */ |
| 306 | 306 | ||
| 307 | static const char *UBSEC_LIBNAME = "ubsec"; | 307 | static const char *UBSEC_LIBNAME = NULL; |
| 308 | static const char *get_UBSEC_LIBNAME(void) | ||
| 309 | { | ||
| 310 | if(UBSEC_LIBNAME) | ||
| 311 | return UBSEC_LIBNAME; | ||
| 312 | return "ubsec"; | ||
| 313 | } | ||
| 314 | static void free_UBSEC_LIBNAME(void) | ||
| 315 | { | ||
| 316 | if(UBSEC_LIBNAME) | ||
| 317 | OPENSSL_free((void*)UBSEC_LIBNAME); | ||
| 318 | UBSEC_LIBNAME = NULL; | ||
| 319 | } | ||
| 320 | static long set_UBSEC_LIBNAME(const char *name) | ||
| 321 | { | ||
| 322 | free_UBSEC_LIBNAME(); | ||
| 323 | return (((UBSEC_LIBNAME = BUF_strdup(name)) != NULL) ? 1 : 0); | ||
| 324 | } | ||
| 308 | static const char *UBSEC_F1 = "ubsec_bytes_to_bits"; | 325 | static const char *UBSEC_F1 = "ubsec_bytes_to_bits"; |
| 309 | static const char *UBSEC_F2 = "ubsec_bits_to_bytes"; | 326 | static const char *UBSEC_F2 = "ubsec_bits_to_bytes"; |
| 310 | static const char *UBSEC_F3 = "ubsec_open"; | 327 | static const char *UBSEC_F3 = "ubsec_open"; |
| @@ -328,6 +345,7 @@ static const char *UBSEC_F13 = "ubsec_max_key_len_ioctl"; | |||
| 328 | /* Destructor (complements the "ENGINE_ubsec()" constructor) */ | 345 | /* Destructor (complements the "ENGINE_ubsec()" constructor) */ |
| 329 | static int ubsec_destroy(ENGINE *e) | 346 | static int ubsec_destroy(ENGINE *e) |
| 330 | { | 347 | { |
| 348 | free_UBSEC_LIBNAME(); | ||
| 331 | ERR_unload_UBSEC_strings(); | 349 | ERR_unload_UBSEC_strings(); |
| 332 | return 1; | 350 | return 1; |
| 333 | } | 351 | } |
| @@ -364,7 +382,7 @@ static int ubsec_init(ENGINE *e) | |||
| 364 | /* | 382 | /* |
| 365 | * Attempt to load libubsec.so/ubsec.dll/whatever. | 383 | * Attempt to load libubsec.so/ubsec.dll/whatever. |
| 366 | */ | 384 | */ |
| 367 | ubsec_dso = DSO_load(NULL, UBSEC_LIBNAME, NULL, 0); | 385 | ubsec_dso = DSO_load(NULL, get_UBSEC_LIBNAME(), NULL, 0); |
| 368 | if(ubsec_dso == NULL) | 386 | if(ubsec_dso == NULL) |
| 369 | { | 387 | { |
| 370 | UBSECerr(UBSEC_F_UBSEC_INIT, UBSEC_R_DSO_FAILURE); | 388 | UBSECerr(UBSEC_F_UBSEC_INIT, UBSEC_R_DSO_FAILURE); |
| @@ -459,6 +477,7 @@ err: | |||
| 459 | 477 | ||
| 460 | static int ubsec_finish(ENGINE *e) | 478 | static int ubsec_finish(ENGINE *e) |
| 461 | { | 479 | { |
| 480 | free_UBSEC_LIBNAME(); | ||
| 462 | if(ubsec_dso == NULL) | 481 | if(ubsec_dso == NULL) |
| 463 | { | 482 | { |
| 464 | UBSECerr(UBSEC_F_UBSEC_FINISH, UBSEC_R_NOT_LOADED); | 483 | UBSECerr(UBSEC_F_UBSEC_FINISH, UBSEC_R_NOT_LOADED); |
| @@ -508,8 +527,7 @@ static int ubsec_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)()) | |||
| 508 | UBSECerr(UBSEC_F_UBSEC_CTRL,UBSEC_R_ALREADY_LOADED); | 527 | UBSECerr(UBSEC_F_UBSEC_CTRL,UBSEC_R_ALREADY_LOADED); |
| 509 | return 0; | 528 | return 0; |
| 510 | } | 529 | } |
| 511 | UBSEC_LIBNAME = (const char *)p; | 530 | return set_UBSEC_LIBNAME((const char *)p); |
| 512 | return 1; | ||
| 513 | default: | 531 | default: |
| 514 | break; | 532 | break; |
| 515 | } | 533 | } |
diff --git a/src/lib/libssl/src/crypto/err/Makefile.ssl b/src/lib/libssl/src/crypto/err/Makefile.ssl index 1b3c58626c..f0c95e2ef2 100644 --- a/src/lib/libssl/src/crypto/err/Makefile.ssl +++ b/src/lib/libssl/src/crypto/err/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -85,24 +85,31 @@ err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | |||
| 85 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 85 | err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 86 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 86 | err.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 87 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c | 87 | err.o: ../../include/openssl/symhacks.h ../cryptlib.h err.c |
| 88 | err_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 88 | err_all.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 89 | err_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 89 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 90 | err_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 90 | err_all.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 91 | err_all.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 91 | err_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 92 | err_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 92 | err_all.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h | 93 | err_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 93 | err_all.o: ../../include/openssl/ec.h ../../include/openssl/engine.h | 94 | err_all.o: ../../include/openssl/dsa.h ../../include/openssl/dso.h |
| 94 | err_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 95 | err_all.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
| 95 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 96 | err_all.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 97 | err_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 98 | err_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 99 | err_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 100 | err_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 96 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 101 | err_all.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 97 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 102 | err_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 98 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h | 103 | err_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem2.h |
| 99 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 104 | err_all.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 100 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 105 | err_all.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 106 | err_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 107 | err_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 101 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 108 | err_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 102 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 109 | err_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 103 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/x509.h | 110 | err_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 104 | err_all.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 111 | err_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 105 | err_all.o: err_all.c | 112 | err_all.o: ../../include/openssl/x509v3.h err_all.c |
| 106 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h | 113 | err_prn.o: ../../e_os.h ../../include/openssl/bio.h |
| 107 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 114 | err_prn.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 108 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 115 | err_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
diff --git a/src/lib/libssl/src/crypto/err/err.c b/src/lib/libssl/src/crypto/err/err.c index 04773d65a6..5abe44e6d5 100644 --- a/src/lib/libssl/src/crypto/err/err.c +++ b/src/lib/libssl/src/crypto/err/err.c | |||
| @@ -166,6 +166,7 @@ static ERR_STRING_DATA ERR_str_functs[]= | |||
| 166 | {ERR_PACK(0,SYS_F_WSASTARTUP,0), "WSAstartup"}, | 166 | {ERR_PACK(0,SYS_F_WSASTARTUP,0), "WSAstartup"}, |
| 167 | #endif | 167 | #endif |
| 168 | {ERR_PACK(0,SYS_F_OPENDIR,0), "opendir"}, | 168 | {ERR_PACK(0,SYS_F_OPENDIR,0), "opendir"}, |
| 169 | {ERR_PACK(0,SYS_F_FREAD,0), "fread"}, | ||
| 169 | {0,NULL}, | 170 | {0,NULL}, |
| 170 | }; | 171 | }; |
| 171 | 172 | ||
diff --git a/src/lib/libssl/src/crypto/err/err.h b/src/lib/libssl/src/crypto/err/err.h index cc9bb649ea..988ef81aa0 100644 --- a/src/lib/libssl/src/crypto/err/err.h +++ b/src/lib/libssl/src/crypto/err/err.h | |||
| @@ -182,6 +182,7 @@ typedef struct err_state_st | |||
| 182 | #define SYS_F_ACCEPT 8 | 182 | #define SYS_F_ACCEPT 8 |
| 183 | #define SYS_F_WSASTARTUP 9 /* Winsock stuff */ | 183 | #define SYS_F_WSASTARTUP 9 /* Winsock stuff */ |
| 184 | #define SYS_F_OPENDIR 10 | 184 | #define SYS_F_OPENDIR 10 |
| 185 | #define SYS_F_FREAD 11 | ||
| 185 | 186 | ||
| 186 | 187 | ||
| 187 | /* reasons */ | 188 | /* reasons */ |
diff --git a/src/lib/libssl/src/crypto/evp/Makefile.ssl b/src/lib/libssl/src/crypto/evp/Makefile.ssl index 75f078af76..58843f61a9 100644 --- a/src/lib/libssl/src/crypto/evp/Makefile.ssl +++ b/src/lib/libssl/src/crypto/evp/Makefile.ssl | |||
| @@ -89,7 +89,7 @@ lint: | |||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 90 | 90 | ||
| 91 | depend: | 91 | depend: |
| 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 92 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 93 | 93 | ||
| 94 | dclean: | 94 | dclean: |
| 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -100,563 +100,961 @@ clean: | |||
| 100 | 100 | ||
| 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | 102 | ||
| 103 | bio_b64.o: ../../e_os.h ../../include/openssl/asn1.h | 103 | bio_b64.o: ../../e_os.h ../../include/openssl/aes.h |
| 104 | bio_b64.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 104 | bio_b64.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 105 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 105 | bio_b64.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 106 | bio_b64.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 106 | bio_b64.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 107 | bio_b64.o: ../../include/openssl/evp.h ../../include/openssl/lhash.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 | ||
| 111 | bio_b64.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 112 | bio_b64.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 113 | bio_b64.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 108 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 114 | bio_b64.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 109 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 115 | bio_b64.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 110 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 116 | bio_b64.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 117 | bio_b64.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 118 | bio_b64.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 119 | bio_b64.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 111 | bio_b64.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.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 | ||
| 112 | bio_b64.o: ../cryptlib.h bio_b64.c | 122 | bio_b64.o: ../cryptlib.h bio_b64.c |
| 113 | bio_enc.o: ../../e_os.h ../../include/openssl/asn1.h | 123 | bio_enc.o: ../../e_os.h ../../include/openssl/aes.h |
| 114 | bio_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 124 | bio_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 115 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 125 | bio_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 116 | bio_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 126 | bio_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 117 | bio_enc.o: ../../include/openssl/evp.h ../../include/openssl/lhash.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 | ||
| 131 | bio_enc.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 132 | bio_enc.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 133 | bio_enc.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 118 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 134 | bio_enc.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 119 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 135 | bio_enc.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 120 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 136 | bio_enc.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 137 | bio_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.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 | ||
| 121 | bio_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.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 | ||
| 122 | bio_enc.o: ../cryptlib.h bio_enc.c | 142 | bio_enc.o: ../cryptlib.h bio_enc.c |
| 123 | bio_md.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 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 | ||
| 124 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 145 | bio_md.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 125 | bio_md.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 146 | bio_md.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 126 | bio_md.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 147 | bio_md.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 127 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.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 | ||
| 150 | bio_md.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 151 | bio_md.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 152 | bio_md.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 153 | bio_md.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 128 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 154 | bio_md.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 129 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 155 | bio_md.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 130 | bio_md.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 156 | bio_md.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 131 | bio_md.o: ../../include/openssl/symhacks.h ../cryptlib.h bio_md.c | 157 | bio_md.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 132 | bio_ok.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.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 | ||
| 133 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 164 | bio_ok.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 134 | bio_ok.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 165 | bio_ok.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 135 | bio_ok.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 166 | bio_ok.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 136 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.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 | ||
| 169 | bio_ok.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 170 | bio_ok.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 171 | bio_ok.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 172 | bio_ok.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 137 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 173 | bio_ok.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 138 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 174 | bio_ok.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 139 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 175 | bio_ok.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 176 | bio_ok.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.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 | ||
| 140 | bio_ok.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.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 | ||
| 141 | bio_ok.o: ../cryptlib.h bio_ok.c | 181 | bio_ok.o: ../cryptlib.h bio_ok.c |
| 142 | c_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 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 | ||
| 143 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 184 | c_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 144 | c_all.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 185 | c_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 145 | c_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 186 | c_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 146 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 187 | c_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 188 | c_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 189 | c_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 190 | c_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 191 | c_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 192 | c_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 147 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 193 | c_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 148 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 194 | c_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 149 | c_all.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 195 | c_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 150 | c_all.o: ../../include/openssl/symhacks.h ../cryptlib.h c_all.c | 196 | c_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 151 | c_allc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 197 | c_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 198 | c_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 199 | c_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 200 | c_all.o: ../../include/openssl/ui_compat.h ../cryptlib.h c_all.c | ||
| 201 | c_allc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 202 | c_allc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 152 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 203 | c_allc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 153 | c_allc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 204 | c_allc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 154 | c_allc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 205 | c_allc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 155 | c_allc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 206 | c_allc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 156 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 207 | c_allc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 208 | c_allc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 209 | c_allc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 210 | c_allc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 211 | c_allc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 157 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 212 | c_allc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 158 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 213 | c_allc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 159 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 214 | c_allc.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 215 | c_allc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 216 | c_allc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 160 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 217 | c_allc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 161 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 218 | c_allc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 162 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 219 | c_allc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 220 | c_allc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 163 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c | 221 | c_allc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_allc.c |
| 164 | c_alld.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 222 | c_alld.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 223 | c_alld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 165 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 224 | c_alld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 166 | c_alld.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 225 | c_alld.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 167 | c_alld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 226 | c_alld.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 168 | c_alld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 227 | c_alld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 169 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 228 | c_alld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 229 | c_alld.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 230 | c_alld.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 231 | c_alld.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 232 | c_alld.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 170 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 233 | c_alld.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 171 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 234 | c_alld.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 172 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 235 | c_alld.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 236 | c_alld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 237 | c_alld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 173 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 238 | c_alld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 174 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 239 | c_alld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 175 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 240 | c_alld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 241 | c_alld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 176 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c | 242 | c_alld.o: ../../include/openssl/x509_vfy.h ../cryptlib.h c_alld.c |
| 177 | digest.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 243 | digest.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 244 | digest.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 178 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 245 | digest.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 179 | digest.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 246 | digest.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 180 | digest.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 247 | digest.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 181 | digest.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 248 | digest.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 182 | digest.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 249 | digest.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h |
| 250 | digest.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 251 | digest.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 252 | digest.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 253 | digest.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 183 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 254 | digest.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 184 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 255 | digest.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 185 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 256 | digest.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 257 | digest.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 258 | digest.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 186 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 259 | digest.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 187 | digest.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 260 | digest.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 188 | digest.o: ../../include/openssl/ui.h ../cryptlib.h digest.c | 261 | digest.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 262 | digest.o: ../../include/openssl/ui_compat.h ../cryptlib.h digest.c | ||
| 189 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h | 263 | e_aes.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 190 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 264 | e_aes.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 191 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 265 | e_aes.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 266 | e_aes.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 267 | e_aes.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 268 | e_aes.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 192 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 269 | e_aes.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 193 | e_aes.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 270 | e_aes.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 194 | e_aes.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 271 | e_aes.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 195 | e_aes.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 272 | e_aes.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 196 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 273 | e_aes.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 197 | e_aes.o: ../../include/openssl/symhacks.h e_aes.c evp_locl.h | 274 | e_aes.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 198 | e_bf.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 275 | e_aes.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 199 | e_bf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | 276 | e_aes.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 200 | e_bf.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 277 | e_aes.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 278 | e_aes.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 279 | e_aes.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 280 | e_aes.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h e_aes.c | ||
| 281 | e_aes.o: evp_locl.h | ||
| 282 | e_bf.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 283 | e_bf.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 284 | e_bf.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 285 | e_bf.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | ||
| 286 | e_bf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 287 | e_bf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 201 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 288 | e_bf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 202 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 289 | e_bf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 203 | e_bf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 290 | e_bf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 204 | e_bf.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 291 | e_bf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 205 | e_bf.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 292 | e_bf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 206 | e_bf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 293 | e_bf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 207 | e_bf.o: ../cryptlib.h e_bf.c evp_locl.h | 294 | e_bf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 208 | e_cast.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 295 | e_bf.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 296 | e_bf.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 297 | e_bf.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 298 | e_bf.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 299 | e_bf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 300 | e_bf.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_bf.c evp_locl.h | ||
| 301 | e_cast.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 302 | e_cast.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 209 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 303 | e_cast.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 210 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h | 304 | e_cast.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 305 | e_cast.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 306 | e_cast.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 211 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 307 | e_cast.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 212 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 308 | e_cast.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 213 | e_cast.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 309 | e_cast.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 214 | e_cast.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 310 | e_cast.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 215 | e_cast.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 311 | e_cast.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 216 | e_cast.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 312 | e_cast.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 217 | e_cast.o: ../cryptlib.h e_cast.c evp_locl.h | 313 | e_cast.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 218 | e_des.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 314 | e_cast.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 315 | e_cast.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 316 | e_cast.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 317 | e_cast.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 318 | e_cast.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 319 | e_cast.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_cast.c evp_locl.h | ||
| 320 | e_des.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 321 | e_des.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 219 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 322 | e_des.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 220 | e_des.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 323 | e_des.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 221 | e_des.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 324 | e_des.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 222 | e_des.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 325 | e_des.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 223 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 326 | e_des.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 327 | e_des.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 328 | e_des.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 329 | e_des.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 330 | e_des.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 224 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 331 | e_des.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 225 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 332 | e_des.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 226 | e_des.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 333 | e_des.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 334 | e_des.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 335 | e_des.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 336 | e_des.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 227 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 337 | e_des.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 228 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h | 338 | e_des.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des.c evp_locl.h |
| 229 | e_des3.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 339 | e_des3.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 340 | e_des3.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 230 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 341 | e_des3.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 231 | e_des3.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 342 | e_des3.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 232 | e_des3.o: ../../include/openssl/des_old.h ../../include/openssl/e_os2.h | 343 | e_des3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 233 | e_des3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 344 | e_des3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 234 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 345 | e_des3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 346 | e_des3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 347 | e_des3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 348 | e_des3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 349 | e_des3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 235 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 350 | e_des3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 236 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 351 | e_des3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 237 | e_des3.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 352 | e_des3.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 353 | e_des3.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 354 | e_des3.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 355 | e_des3.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 238 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 356 | e_des3.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 239 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h | 357 | e_des3.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_des3.c evp_locl.h |
| 240 | e_idea.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 358 | e_idea.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 359 | e_idea.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 241 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 360 | e_idea.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 242 | e_idea.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 361 | e_idea.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 243 | e_idea.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 362 | e_idea.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 244 | e_idea.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | 363 | e_idea.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 245 | e_idea.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 364 | e_idea.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 246 | e_idea.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 365 | e_idea.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 247 | e_idea.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 366 | e_idea.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 248 | e_idea.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 367 | e_idea.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 249 | e_idea.o: ../cryptlib.h e_idea.c evp_locl.h | 368 | e_idea.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 250 | e_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 369 | e_idea.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 370 | e_idea.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 371 | e_idea.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 372 | e_idea.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 373 | e_idea.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 374 | e_idea.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 375 | e_idea.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 376 | e_idea.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_idea.c evp_locl.h | ||
| 377 | e_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 378 | e_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 251 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 379 | e_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 252 | e_null.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 380 | e_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 253 | e_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 381 | e_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 254 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 382 | e_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 383 | e_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 384 | e_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 385 | e_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 386 | e_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 387 | e_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 255 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 388 | e_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 256 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 389 | e_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 257 | e_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 390 | e_null.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 258 | e_null.o: ../../include/openssl/symhacks.h ../cryptlib.h e_null.c | 391 | e_null.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 259 | e_rc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 392 | e_null.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 393 | e_null.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 394 | e_null.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 395 | e_null.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_null.c | ||
| 396 | e_rc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 397 | e_rc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 260 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 398 | e_rc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 261 | e_rc2.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 399 | e_rc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 262 | e_rc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 400 | e_rc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 263 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 401 | e_rc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 402 | e_rc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 403 | e_rc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 404 | e_rc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 405 | e_rc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 406 | e_rc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 264 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 407 | e_rc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 265 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 408 | e_rc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 266 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/safestack.h | 409 | e_rc2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 267 | e_rc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 410 | e_rc2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 268 | e_rc2.o: ../cryptlib.h e_rc2.c evp_locl.h | 411 | e_rc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 269 | e_rc4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 412 | e_rc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 413 | e_rc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 414 | e_rc2.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc2.c evp_locl.h | ||
| 415 | e_rc4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 416 | e_rc4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 270 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 417 | e_rc4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 271 | e_rc4.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 418 | e_rc4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 272 | e_rc4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 419 | e_rc4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 273 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 420 | e_rc4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 421 | e_rc4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 422 | e_rc4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 423 | e_rc4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 424 | e_rc4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 425 | e_rc4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 274 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 426 | e_rc4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 275 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 427 | e_rc4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 276 | e_rc4.o: ../../include/openssl/rc4.h ../../include/openssl/safestack.h | 428 | e_rc4.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 277 | e_rc4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 429 | e_rc4.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 278 | e_rc4.o: ../cryptlib.h e_rc4.c | 430 | e_rc4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 279 | e_rc5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 431 | e_rc4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 432 | e_rc4.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 433 | e_rc4.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc4.c | ||
| 434 | e_rc5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 435 | e_rc5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 280 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 436 | e_rc5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 281 | e_rc5.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 437 | e_rc5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 282 | e_rc5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 438 | e_rc5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 283 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 439 | e_rc5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 440 | e_rc5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 441 | e_rc5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 442 | e_rc5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 443 | e_rc5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 444 | e_rc5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 284 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 445 | e_rc5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 285 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 446 | e_rc5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 286 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/safestack.h | 447 | e_rc5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 287 | e_rc5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 448 | e_rc5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 288 | e_rc5.o: ../cryptlib.h e_rc5.c evp_locl.h | 449 | e_rc5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 289 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/asn1.h | 450 | e_rc5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 290 | e_xcbc_d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 451 | e_rc5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 291 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 452 | e_rc5.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_rc5.c evp_locl.h |
| 292 | e_xcbc_d.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 453 | e_xcbc_d.o: ../../e_os.h ../../include/openssl/aes.h |
| 293 | e_xcbc_d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 454 | e_xcbc_d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 294 | e_xcbc_d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 455 | e_xcbc_d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 456 | e_xcbc_d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 457 | e_xcbc_d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 458 | e_xcbc_d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 459 | e_xcbc_d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 460 | e_xcbc_d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 461 | e_xcbc_d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 462 | e_xcbc_d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 463 | e_xcbc_d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 295 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 464 | e_xcbc_d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 296 | e_xcbc_d.o: ../../include/openssl/opensslconf.h | 465 | e_xcbc_d.o: ../../include/openssl/opensslconf.h |
| 297 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 466 | e_xcbc_d.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 298 | e_xcbc_d.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 467 | e_xcbc_d.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 468 | e_xcbc_d.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 469 | e_xcbc_d.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 470 | e_xcbc_d.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 299 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 471 | e_xcbc_d.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 300 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c | 472 | e_xcbc_d.o: ../../include/openssl/ui_compat.h ../cryptlib.h e_xcbc_d.c |
| 301 | encode.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 473 | encode.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 474 | encode.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 302 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 475 | encode.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 303 | encode.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 476 | encode.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 304 | encode.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 477 | encode.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 305 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 478 | encode.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 479 | encode.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 480 | encode.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 481 | encode.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 482 | encode.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 483 | encode.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 306 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 484 | encode.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 307 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 485 | encode.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 308 | encode.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 486 | encode.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 309 | encode.o: ../../include/openssl/symhacks.h ../cryptlib.h encode.c | 487 | encode.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 310 | evp_acnf.o: ../../e_os.h ../../include/openssl/asn1.h | 488 | encode.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 311 | evp_acnf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 489 | encode.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 312 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 490 | encode.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 313 | evp_acnf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 491 | encode.o: ../../include/openssl/ui_compat.h ../cryptlib.h encode.c |
| 314 | evp_acnf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 492 | evp_acnf.o: ../../e_os.h ../../include/openssl/aes.h |
| 315 | evp_acnf.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 493 | evp_acnf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 316 | evp_acnf.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 494 | evp_acnf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 495 | evp_acnf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 496 | evp_acnf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | ||
| 497 | evp_acnf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 498 | evp_acnf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 499 | evp_acnf.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 500 | evp_acnf.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 501 | evp_acnf.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 502 | evp_acnf.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 503 | evp_acnf.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 317 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 504 | evp_acnf.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 318 | evp_acnf.o: ../../include/openssl/opensslconf.h | 505 | evp_acnf.o: ../../include/openssl/opensslconf.h |
| 319 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 506 | evp_acnf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 320 | evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 507 | evp_acnf.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 321 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 508 | evp_acnf.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 322 | evp_acnf.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 509 | evp_acnf.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 510 | evp_acnf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 511 | evp_acnf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 512 | evp_acnf.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 323 | evp_acnf.o: ../cryptlib.h evp_acnf.c | 513 | evp_acnf.o: ../cryptlib.h evp_acnf.c |
| 324 | evp_enc.o: ../../e_os.h ../../include/openssl/asn1.h | 514 | evp_enc.o: ../../e_os.h ../../include/openssl/aes.h |
| 325 | evp_enc.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 515 | evp_enc.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 326 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 516 | evp_enc.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 327 | evp_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 517 | evp_enc.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 328 | evp_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 518 | evp_enc.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 329 | evp_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 519 | evp_enc.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 330 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 520 | evp_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 521 | evp_enc.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 522 | evp_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 523 | evp_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 524 | evp_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 525 | evp_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 331 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 526 | evp_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 332 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 527 | evp_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 333 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 528 | evp_enc.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 334 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 529 | evp_enc.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 335 | evp_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 530 | evp_enc.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 531 | evp_enc.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 532 | evp_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 533 | evp_enc.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 336 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h | 534 | evp_enc.o: ../cryptlib.h evp_enc.c evp_locl.h |
| 337 | evp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 535 | evp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 338 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 536 | evp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 339 | evp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 537 | evp_err.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 340 | evp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 538 | evp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 539 | evp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 540 | evp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 541 | evp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 542 | evp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 543 | evp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 544 | evp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 341 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 545 | evp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 342 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 546 | evp_err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 343 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 547 | evp_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 548 | evp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 549 | evp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 550 | evp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 344 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 551 | evp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 552 | evp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 345 | evp_err.o: evp_err.c | 553 | evp_err.o: evp_err.c |
| 346 | evp_key.o: ../../e_os.h ../../include/openssl/asn1.h | 554 | evp_key.o: ../../e_os.h ../../include/openssl/aes.h |
| 347 | evp_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 555 | evp_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 348 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 556 | evp_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 349 | evp_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 557 | evp_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 350 | evp_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 558 | evp_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 351 | evp_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 559 | evp_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 560 | evp_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 561 | evp_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 562 | evp_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 563 | evp_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 564 | evp_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 352 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 565 | evp_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 353 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 566 | evp_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 354 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 567 | evp_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 568 | evp_key.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 569 | evp_key.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 355 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 570 | evp_key.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 356 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 571 | evp_key.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 357 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 572 | evp_key.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 358 | evp_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 573 | evp_key.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 359 | evp_key.o: ../cryptlib.h evp_key.c | 574 | evp_key.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_key.c |
| 360 | evp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 575 | evp_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 361 | evp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 576 | evp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 362 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 577 | evp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 363 | evp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 578 | evp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 364 | evp_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 579 | evp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 580 | evp_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 581 | evp_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 582 | evp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 583 | evp_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 584 | evp_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 585 | evp_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 365 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 586 | evp_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 366 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 587 | evp_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 367 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/safestack.h | 588 | evp_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rc2.h |
| 589 | evp_lib.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 590 | evp_lib.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 591 | evp_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 368 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 592 | evp_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 593 | evp_lib.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 369 | evp_lib.o: ../cryptlib.h evp_lib.c | 594 | evp_lib.o: ../cryptlib.h evp_lib.c |
| 370 | evp_pbe.o: ../../e_os.h ../../include/openssl/asn1.h | 595 | evp_pbe.o: ../../e_os.h ../../include/openssl/aes.h |
| 371 | evp_pbe.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 596 | evp_pbe.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 372 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 597 | evp_pbe.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 373 | evp_pbe.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 598 | evp_pbe.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 374 | evp_pbe.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 599 | evp_pbe.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 375 | evp_pbe.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 600 | evp_pbe.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 601 | evp_pbe.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 602 | evp_pbe.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 603 | evp_pbe.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 604 | evp_pbe.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 605 | evp_pbe.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 376 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 606 | evp_pbe.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 377 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 607 | evp_pbe.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 378 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 608 | evp_pbe.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 609 | evp_pbe.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 610 | evp_pbe.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 379 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 611 | evp_pbe.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 380 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 612 | evp_pbe.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 381 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 613 | evp_pbe.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 614 | evp_pbe.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 382 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c | 615 | evp_pbe.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pbe.c |
| 383 | evp_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 616 | evp_pkey.o: ../../e_os.h ../../include/openssl/aes.h |
| 384 | evp_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 617 | evp_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 385 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 618 | evp_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 386 | evp_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 619 | evp_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 387 | evp_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 620 | evp_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 388 | evp_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 621 | evp_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 622 | evp_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 623 | evp_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 624 | evp_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 625 | evp_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 626 | evp_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 389 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 627 | evp_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 390 | evp_pkey.o: ../../include/openssl/opensslconf.h | 628 | evp_pkey.o: ../../include/openssl/opensslconf.h |
| 391 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 629 | evp_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 392 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 630 | evp_pkey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 631 | evp_pkey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 632 | evp_pkey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 393 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 633 | evp_pkey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 394 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 634 | evp_pkey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 395 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 635 | evp_pkey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 636 | evp_pkey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 396 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c | 637 | evp_pkey.o: ../../include/openssl/x509_vfy.h ../cryptlib.h evp_pkey.c |
| 397 | m_dss.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 638 | m_dss.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 639 | m_dss.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 398 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 640 | m_dss.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 399 | m_dss.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 641 | m_dss.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 400 | m_dss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 642 | m_dss.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 401 | m_dss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 643 | m_dss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 402 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 644 | m_dss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 645 | m_dss.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 646 | m_dss.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 647 | m_dss.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 648 | m_dss.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 403 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 649 | m_dss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 404 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 650 | m_dss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 405 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 651 | m_dss.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 652 | m_dss.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 653 | m_dss.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 406 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 654 | m_dss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 407 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 655 | m_dss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 656 | m_dss.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 408 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 657 | m_dss.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 409 | m_dss.o: ../cryptlib.h m_dss.c | 658 | m_dss.o: ../cryptlib.h m_dss.c |
| 410 | m_dss1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 659 | m_dss1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 660 | m_dss1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 411 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 661 | m_dss1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 412 | m_dss1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 662 | m_dss1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 413 | m_dss1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 663 | m_dss1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 414 | m_dss1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 664 | m_dss1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 415 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 665 | m_dss1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 666 | m_dss1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 667 | m_dss1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 668 | m_dss1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 669 | m_dss1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 416 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 670 | m_dss1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 417 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 671 | m_dss1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 418 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 672 | m_dss1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 673 | m_dss1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 674 | m_dss1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 419 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 675 | m_dss1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 420 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 676 | m_dss1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 677 | m_dss1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 421 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 678 | m_dss1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 422 | m_dss1.o: ../cryptlib.h m_dss1.c | 679 | m_dss1.o: ../cryptlib.h m_dss1.c |
| 423 | m_md2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 680 | m_md2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 681 | m_md2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 424 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 682 | m_md2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 425 | m_md2.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 683 | m_md2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 426 | m_md2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 684 | m_md2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 427 | m_md2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 685 | m_md2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 686 | m_md2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 687 | m_md2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 428 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | 688 | m_md2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 429 | m_md2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 689 | m_md2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 430 | m_md2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 690 | m_md2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 431 | m_md2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 691 | m_md2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 432 | m_md2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 692 | m_md2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 433 | m_md2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 693 | m_md2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 434 | m_md2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 694 | m_md2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 435 | m_md2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md2.c | 695 | m_md2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 436 | m_md4.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 696 | m_md2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 697 | m_md2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 698 | m_md2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 699 | m_md2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 700 | m_md2.o: ../cryptlib.h m_md2.c | ||
| 701 | m_md4.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 702 | m_md4.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 437 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 703 | m_md4.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 438 | m_md4.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 704 | m_md4.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 439 | m_md4.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 705 | m_md4.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 440 | m_md4.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 706 | m_md4.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 441 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md4.h | 707 | m_md4.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 442 | m_md4.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 708 | m_md4.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 443 | m_md4.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 709 | m_md4.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 444 | m_md4.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 710 | m_md4.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 445 | m_md4.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 711 | m_md4.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 446 | m_md4.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 712 | m_md4.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 447 | m_md4.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 713 | m_md4.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 448 | m_md4.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md4.c | 714 | m_md4.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 449 | m_md5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 715 | m_md4.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 716 | m_md4.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 717 | m_md4.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 718 | m_md4.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 719 | m_md4.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 720 | m_md4.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 721 | m_md4.o: ../cryptlib.h m_md4.c | ||
| 722 | m_md5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 723 | m_md5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 450 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 724 | m_md5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 451 | m_md5.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 725 | m_md5.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 452 | m_md5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 726 | m_md5.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 453 | m_md5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 727 | m_md5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 454 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md5.h | 728 | m_md5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 455 | m_md5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 729 | m_md5.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 456 | m_md5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 730 | m_md5.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 457 | m_md5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 731 | m_md5.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 458 | m_md5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 732 | m_md5.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 459 | m_md5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 733 | m_md5.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 460 | m_md5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 734 | m_md5.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 461 | m_md5.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_md5.c | 735 | m_md5.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 462 | m_mdc2.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 736 | m_md5.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 737 | m_md5.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 738 | m_md5.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 739 | m_md5.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 740 | m_md5.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 741 | m_md5.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 742 | m_md5.o: ../cryptlib.h m_md5.c | ||
| 743 | m_mdc2.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 744 | m_mdc2.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 463 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 745 | m_mdc2.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 464 | m_mdc2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | 746 | m_mdc2.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 465 | m_mdc2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | 747 | m_mdc2.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 466 | m_mdc2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 748 | m_mdc2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 467 | m_mdc2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 749 | m_mdc2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 468 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/mdc2.h | 750 | m_mdc2.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 469 | m_mdc2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 751 | m_mdc2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 470 | m_mdc2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 752 | m_mdc2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 471 | m_mdc2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 753 | m_mdc2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 472 | m_mdc2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 754 | m_mdc2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 473 | m_mdc2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 755 | m_mdc2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 474 | m_mdc2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 756 | m_mdc2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 475 | m_mdc2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 757 | m_mdc2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 476 | m_mdc2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_mdc2.c | 758 | m_mdc2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 477 | m_null.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 759 | m_mdc2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 760 | m_mdc2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 761 | m_mdc2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 762 | m_mdc2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 763 | m_mdc2.o: ../cryptlib.h m_mdc2.c | ||
| 764 | m_null.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 765 | m_null.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 478 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 766 | m_null.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 479 | m_null.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 767 | m_null.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 480 | m_null.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 768 | m_null.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 481 | m_null.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 769 | m_null.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 482 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 770 | m_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 771 | m_null.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 772 | m_null.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 773 | m_null.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 774 | m_null.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 483 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 775 | m_null.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 484 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 776 | m_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 485 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 777 | m_null.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 778 | m_null.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 779 | m_null.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 486 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 780 | m_null.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 487 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 781 | m_null.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 782 | m_null.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 488 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 783 | m_null.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 489 | m_null.o: ../cryptlib.h m_null.c | 784 | m_null.o: ../cryptlib.h m_null.c |
| 490 | m_ripemd.o: ../../e_os.h ../../include/openssl/asn1.h | 785 | m_ripemd.o: ../../e_os.h ../../include/openssl/aes.h |
| 491 | m_ripemd.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 786 | m_ripemd.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 492 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 787 | m_ripemd.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 493 | m_ripemd.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 788 | m_ripemd.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 494 | m_ripemd.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 789 | m_ripemd.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 495 | m_ripemd.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 790 | m_ripemd.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 791 | m_ripemd.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 792 | m_ripemd.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 793 | m_ripemd.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 794 | m_ripemd.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 795 | m_ripemd.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 496 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 796 | m_ripemd.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 497 | m_ripemd.o: ../../include/openssl/opensslconf.h | 797 | m_ripemd.o: ../../include/openssl/opensslconf.h |
| 498 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 798 | m_ripemd.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 499 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/ripemd.h | 799 | m_ripemd.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 500 | m_ripemd.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 800 | m_ripemd.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 501 | m_ripemd.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 801 | m_ripemd.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 502 | m_ripemd.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 802 | m_ripemd.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 503 | m_ripemd.o: ../../include/openssl/x509_vfy.h ../cryptlib.h m_ripemd.c | 803 | m_ripemd.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 504 | m_sha.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 804 | m_ripemd.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 805 | m_ripemd.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 806 | m_ripemd.o: ../cryptlib.h m_ripemd.c | ||
| 807 | m_sha.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 808 | m_sha.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 505 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 809 | m_sha.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 506 | m_sha.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 810 | m_sha.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 507 | m_sha.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 811 | m_sha.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 508 | m_sha.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 812 | m_sha.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 509 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 813 | m_sha.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 814 | m_sha.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 815 | m_sha.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 816 | m_sha.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 817 | m_sha.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 510 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 818 | m_sha.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 511 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 819 | m_sha.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 512 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 820 | m_sha.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 821 | m_sha.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 822 | m_sha.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 513 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 823 | m_sha.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 514 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 824 | m_sha.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 825 | m_sha.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 515 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 826 | m_sha.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 516 | m_sha.o: ../cryptlib.h m_sha.c | 827 | m_sha.o: ../cryptlib.h m_sha.c |
| 517 | m_sha1.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 828 | m_sha1.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 829 | m_sha1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 518 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 830 | m_sha1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 519 | m_sha1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 831 | m_sha1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 520 | m_sha1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 832 | m_sha1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 521 | m_sha1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 833 | m_sha1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 522 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 834 | m_sha1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 835 | m_sha1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 836 | m_sha1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 837 | m_sha1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 838 | m_sha1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 523 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 839 | m_sha1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 524 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 840 | m_sha1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 525 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 841 | m_sha1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 842 | m_sha1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 843 | m_sha1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 526 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 844 | m_sha1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 527 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 845 | m_sha1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 846 | m_sha1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 528 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 847 | m_sha1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 529 | m_sha1.o: ../cryptlib.h m_sha1.c | 848 | m_sha1.o: ../cryptlib.h m_sha1.c |
| 530 | names.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 849 | names.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 850 | names.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 531 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 851 | names.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 532 | names.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 852 | names.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 533 | names.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 853 | names.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 534 | names.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 854 | names.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 535 | names.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 855 | names.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 856 | names.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 857 | names.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 858 | names.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 859 | names.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 536 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 860 | names.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 537 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 861 | names.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 538 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 862 | names.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 863 | names.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 864 | names.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 539 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 865 | names.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 540 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 866 | names.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 867 | names.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 541 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 868 | names.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 542 | names.o: ../cryptlib.h names.c | 869 | names.o: ../cryptlib.h names.c |
| 543 | p5_crpt.o: ../../e_os.h ../../include/openssl/asn1.h | 870 | p5_crpt.o: ../../e_os.h ../../include/openssl/aes.h |
| 544 | p5_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 871 | p5_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 545 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 872 | p5_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 546 | p5_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 873 | p5_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 547 | p5_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 874 | p5_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 548 | p5_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 875 | p5_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 876 | p5_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 877 | p5_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 878 | p5_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 879 | p5_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 880 | p5_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 549 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 881 | p5_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 550 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 882 | p5_crpt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 551 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 883 | p5_crpt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 884 | p5_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 885 | p5_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 552 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 886 | p5_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 553 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 887 | p5_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 554 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 888 | p5_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 889 | p5_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 555 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c | 890 | p5_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p5_crpt.c |
| 556 | p5_crpt2.o: ../../e_os.h ../../include/openssl/asn1.h | 891 | p5_crpt2.o: ../../e_os.h ../../include/openssl/aes.h |
| 557 | p5_crpt2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 892 | p5_crpt2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 558 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 893 | p5_crpt2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 559 | p5_crpt2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 894 | p5_crpt2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 560 | p5_crpt2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 895 | p5_crpt2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 561 | p5_crpt2.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | 896 | p5_crpt2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 562 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 897 | p5_crpt2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 898 | p5_crpt2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 899 | p5_crpt2.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
| 900 | p5_crpt2.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 901 | p5_crpt2.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 902 | p5_crpt2.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 563 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 903 | p5_crpt2.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 564 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 904 | p5_crpt2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 565 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 905 | p5_crpt2.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 906 | p5_crpt2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 907 | p5_crpt2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 566 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 908 | p5_crpt2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 567 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 909 | p5_crpt2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 910 | p5_crpt2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 568 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 911 | p5_crpt2.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 569 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c | 912 | p5_crpt2.o: ../cryptlib.h p5_crpt2.c |
| 570 | p_dec.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 913 | p_dec.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 914 | p_dec.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 571 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 915 | p_dec.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 572 | p_dec.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 916 | p_dec.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 573 | p_dec.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 917 | p_dec.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 574 | p_dec.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 918 | p_dec.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 575 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 919 | p_dec.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 920 | p_dec.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 921 | p_dec.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 922 | p_dec.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 923 | p_dec.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 576 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 924 | p_dec.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 577 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 925 | p_dec.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 578 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 926 | p_dec.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 927 | p_dec.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 928 | p_dec.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 579 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 929 | p_dec.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 580 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 930 | p_dec.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 581 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 931 | p_dec.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 932 | p_dec.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 582 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c | 933 | p_dec.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_dec.c |
| 583 | p_enc.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 934 | p_enc.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 935 | p_enc.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 584 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 936 | p_enc.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 585 | p_enc.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 937 | p_enc.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 586 | p_enc.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 938 | p_enc.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 587 | p_enc.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 939 | p_enc.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 588 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 940 | p_enc.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 941 | p_enc.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 942 | p_enc.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 943 | p_enc.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 944 | p_enc.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 589 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 945 | p_enc.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 590 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 946 | p_enc.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 591 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 947 | p_enc.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 948 | p_enc.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 949 | p_enc.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 592 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 950 | p_enc.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 593 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 951 | p_enc.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 594 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 952 | p_enc.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 953 | p_enc.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 595 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c | 954 | p_enc.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_enc.c |
| 596 | p_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 955 | p_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 597 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h | 956 | p_lib.o: ../../include/openssl/asn1_mac.h ../../include/openssl/bio.h |
| 598 | p_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 957 | p_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 599 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 958 | p_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 959 | p_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 960 | p_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 600 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 961 | p_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 601 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 962 | p_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 602 | p_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 963 | p_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h |
| 603 | p_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 964 | p_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h |
| 604 | p_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 965 | p_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h |
| 605 | p_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 966 | p_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 606 | p_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 967 | p_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 607 | p_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 968 | p_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 608 | p_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 969 | p_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 609 | p_lib.o: ../cryptlib.h p_lib.c | 970 | p_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 610 | p_open.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 971 | p_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 972 | p_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 973 | p_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 974 | p_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 975 | p_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_lib.c | ||
| 976 | p_open.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 977 | p_open.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 611 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 978 | p_open.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 612 | p_open.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 979 | p_open.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 613 | p_open.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 980 | p_open.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 614 | p_open.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 981 | p_open.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 615 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 982 | p_open.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 983 | p_open.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 984 | p_open.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 985 | p_open.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 986 | p_open.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 616 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 987 | p_open.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 617 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 988 | p_open.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 618 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 989 | p_open.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 990 | p_open.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 991 | p_open.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 619 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 992 | p_open.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 620 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 993 | p_open.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 994 | p_open.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 621 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 995 | p_open.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 622 | p_open.o: ../cryptlib.h p_open.c | 996 | p_open.o: ../cryptlib.h p_open.c |
| 623 | p_seal.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 997 | p_seal.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 998 | p_seal.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 624 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 999 | p_seal.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 625 | p_seal.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1000 | p_seal.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 626 | p_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1001 | p_seal.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 627 | p_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1002 | p_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 628 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1003 | p_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1004 | p_seal.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1005 | p_seal.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1006 | p_seal.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1007 | p_seal.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 629 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1008 | p_seal.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 630 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1009 | p_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 631 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 1010 | p_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 1011 | p_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 1012 | p_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 632 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 1013 | p_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 633 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 1014 | p_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 634 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 1015 | p_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 1016 | p_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 635 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c | 1017 | p_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p_seal.c |
| 636 | p_sign.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 1018 | p_sign.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 1019 | p_sign.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 637 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 1020 | p_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 638 | p_sign.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 1021 | p_sign.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 639 | p_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 1022 | p_sign.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 640 | p_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 1023 | p_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 641 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 1024 | p_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 1025 | p_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 1026 | p_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 1027 | p_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 1028 | p_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 642 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 1029 | p_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 643 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1030 | p_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 644 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1031 | p_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1032 | p_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1033 | p_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 645 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1034 | p_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 646 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1035 | p_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1036 | p_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 647 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1037 | p_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 648 | p_sign.o: ../cryptlib.h p_sign.c | 1038 | p_sign.o: ../cryptlib.h p_sign.c |
| 649 | p_verify.o: ../../e_os.h ../../include/openssl/asn1.h | 1039 | p_verify.o: ../../e_os.h ../../include/openssl/aes.h |
| 650 | p_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 1040 | p_verify.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 651 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 1041 | p_verify.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 652 | p_verify.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 1042 | p_verify.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 653 | p_verify.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 1043 | p_verify.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 654 | p_verify.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 1044 | p_verify.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 1045 | p_verify.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 1046 | p_verify.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 1047 | p_verify.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 1048 | p_verify.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 1049 | p_verify.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 655 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 1050 | p_verify.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 656 | p_verify.o: ../../include/openssl/opensslconf.h | 1051 | p_verify.o: ../../include/openssl/opensslconf.h |
| 657 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 1052 | p_verify.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 658 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 1053 | p_verify.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 1054 | p_verify.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 1055 | p_verify.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 659 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 1056 | p_verify.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 660 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 1057 | p_verify.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 1058 | p_verify.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 661 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 1059 | p_verify.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 662 | p_verify.o: ../cryptlib.h p_verify.c | 1060 | p_verify.o: ../cryptlib.h p_verify.c |
diff --git a/src/lib/libssl/src/crypto/evp/c_all.c b/src/lib/libssl/src/crypto/evp/c_all.c index 3d390dfbf1..3d59812e20 100644 --- a/src/lib/libssl/src/crypto/evp/c_all.c +++ b/src/lib/libssl/src/crypto/evp/c_all.c | |||
| @@ -60,12 +60,14 @@ | |||
| 60 | #include "cryptlib.h" | 60 | #include "cryptlib.h" |
| 61 | #include <openssl/evp.h> | 61 | #include <openssl/evp.h> |
| 62 | 62 | ||
| 63 | #if 0 | ||
| 63 | #undef OpenSSL_add_all_algorithms | 64 | #undef OpenSSL_add_all_algorithms |
| 64 | 65 | ||
| 65 | void OpenSSL_add_all_algorithms(void) | 66 | void OpenSSL_add_all_algorithms(void) |
| 66 | { | 67 | { |
| 67 | OPENSSL_add_all_algorithms_noconf(); | 68 | OPENSSL_add_all_algorithms_noconf(); |
| 68 | } | 69 | } |
| 70 | #endif | ||
| 69 | 71 | ||
| 70 | void OPENSSL_add_all_algorithms_noconf(void) | 72 | void OPENSSL_add_all_algorithms_noconf(void) |
| 71 | { | 73 | { |
diff --git a/src/lib/libssl/src/crypto/evp/evp.h b/src/lib/libssl/src/crypto/evp/evp.h index fb16de6852..7051fe2816 100644 --- a/src/lib/libssl/src/crypto/evp/evp.h +++ b/src/lib/libssl/src/crypto/evp/evp.h | |||
| @@ -74,6 +74,51 @@ | |||
| 74 | #ifndef OPENSSL_NO_BIO | 74 | #ifndef OPENSSL_NO_BIO |
| 75 | #include <openssl/bio.h> | 75 | #include <openssl/bio.h> |
| 76 | #endif | 76 | #endif |
| 77 | #ifndef OPENSSL_NO_MD2 | ||
| 78 | #include <openssl/md2.h> | ||
| 79 | #endif | ||
| 80 | #ifndef OPENSSL_NO_MD4 | ||
| 81 | #include <openssl/md4.h> | ||
| 82 | #endif | ||
| 83 | #ifndef OPENSSL_NO_MD5 | ||
| 84 | #include <openssl/md5.h> | ||
| 85 | #endif | ||
| 86 | #ifndef OPENSSL_NO_SHA | ||
| 87 | #include <openssl/sha.h> | ||
| 88 | #endif | ||
| 89 | #ifndef OPENSSL_NO_RIPEMD | ||
| 90 | #include <openssl/ripemd.h> | ||
| 91 | #endif | ||
| 92 | #ifndef OPENSSL_NO_DES | ||
| 93 | #include <openssl/des.h> | ||
| 94 | #endif | ||
| 95 | #ifndef OPENSSL_NO_RC4 | ||
| 96 | #include <openssl/rc4.h> | ||
| 97 | #endif | ||
| 98 | #ifndef OPENSSL_NO_RC2 | ||
| 99 | #include <openssl/rc2.h> | ||
| 100 | #endif | ||
| 101 | #ifndef OPENSSL_NO_RC5 | ||
| 102 | #include <openssl/rc5.h> | ||
| 103 | #endif | ||
| 104 | #ifndef OPENSSL_NO_BF | ||
| 105 | #include <openssl/blowfish.h> | ||
| 106 | #endif | ||
| 107 | #ifndef OPENSSL_NO_CAST | ||
| 108 | #include <openssl/cast.h> | ||
| 109 | #endif | ||
| 110 | #ifndef OPENSSL_NO_IDEA | ||
| 111 | #include <openssl/idea.h> | ||
| 112 | #endif | ||
| 113 | #if 0 | ||
| 114 | /* mdc2 uses the new DES_ API, but DES_ is not defined if kerberos is used, too */ | ||
| 115 | #ifndef OPENSSL_NO_MDC2 | ||
| 116 | #include <openssl/mdc2.h> | ||
| 117 | #endif | ||
| 118 | #endif | ||
| 119 | #ifndef OPENSSL_NO_AES | ||
| 120 | #include <openssl/aes.h> | ||
| 121 | #endif | ||
| 77 | 122 | ||
| 78 | /* | 123 | /* |
| 79 | #define EVP_RC2_KEY_SIZE 16 | 124 | #define EVP_RC2_KEY_SIZE 16 |
| @@ -91,6 +136,18 @@ | |||
| 91 | /* Default PKCS#5 iteration count */ | 136 | /* Default PKCS#5 iteration count */ |
| 92 | #define PKCS5_DEFAULT_ITER 2048 | 137 | #define PKCS5_DEFAULT_ITER 2048 |
| 93 | 138 | ||
| 139 | #ifndef OPENSSL_NO_RSA | ||
| 140 | #include <openssl/rsa.h> | ||
| 141 | #endif | ||
| 142 | |||
| 143 | #ifndef OPENSSL_NO_DSA | ||
| 144 | #include <openssl/dsa.h> | ||
| 145 | #endif | ||
| 146 | |||
| 147 | #ifndef OPENSSL_NO_DH | ||
| 148 | #include <openssl/dh.h> | ||
| 149 | #endif | ||
| 150 | |||
| 94 | #include <openssl/objects.h> | 151 | #include <openssl/objects.h> |
| 95 | 152 | ||
| 96 | #define EVP_PK_RSA 0x0001 | 153 | #define EVP_PK_RSA 0x0001 |
| @@ -582,6 +639,8 @@ const EVP_CIPHER *EVP_enc_null(void); /* does nothing :-) */ | |||
| 582 | const EVP_CIPHER *EVP_des_ecb(void); | 639 | const EVP_CIPHER *EVP_des_ecb(void); |
| 583 | const EVP_CIPHER *EVP_des_ede(void); | 640 | const EVP_CIPHER *EVP_des_ede(void); |
| 584 | const EVP_CIPHER *EVP_des_ede3(void); | 641 | const EVP_CIPHER *EVP_des_ede3(void); |
| 642 | const EVP_CIPHER *EVP_des_ede_ecb(void); | ||
| 643 | const EVP_CIPHER *EVP_des_ede3_ecb(void); | ||
| 585 | const EVP_CIPHER *EVP_des_cfb(void); | 644 | const EVP_CIPHER *EVP_des_cfb(void); |
| 586 | const EVP_CIPHER *EVP_des_ede_cfb(void); | 645 | const EVP_CIPHER *EVP_des_ede_cfb(void); |
| 587 | const EVP_CIPHER *EVP_des_ede3_cfb(void); | 646 | const EVP_CIPHER *EVP_des_ede3_cfb(void); |
diff --git a/src/lib/libssl/src/crypto/evp/evp_pbe.c b/src/lib/libssl/src/crypto/evp/evp_pbe.c index 06afb9d152..bcd4d29f85 100644 --- a/src/lib/libssl/src/crypto/evp/evp_pbe.c +++ b/src/lib/libssl/src/crypto/evp/evp_pbe.c | |||
| @@ -57,9 +57,9 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "cryptlib.h" | ||
| 60 | #include <openssl/evp.h> | 61 | #include <openssl/evp.h> |
| 61 | #include <openssl/x509.h> | 62 | #include <openssl/x509.h> |
| 62 | #include "cryptlib.h" | ||
| 63 | 63 | ||
| 64 | /* Password based encryption (PBE) functions */ | 64 | /* Password based encryption (PBE) functions */ |
| 65 | 65 | ||
diff --git a/src/lib/libssl/src/crypto/evp/evp_test.c b/src/lib/libssl/src/crypto/evp/evp_test.c index 1bfffb34cf..90294ef686 100644 --- a/src/lib/libssl/src/crypto/evp/evp_test.c +++ b/src/lib/libssl/src/crypto/evp/evp_test.c | |||
| @@ -118,7 +118,7 @@ static char *sstrsep(char **string, const char *delim) | |||
| 118 | } | 118 | } |
| 119 | 119 | ||
| 120 | static unsigned char *ustrsep(char **p,const char *sep) | 120 | static unsigned char *ustrsep(char **p,const char *sep) |
| 121 | { return (unsigned char *)sstrsep((char **)p,sep); } | 121 | { return (unsigned char *)sstrsep(p,sep); } |
| 122 | 122 | ||
| 123 | static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, | 123 | static void test1(const EVP_CIPHER *c,const unsigned char *key,int kn, |
| 124 | const unsigned char *iv,int in, | 124 | const unsigned char *iv,int in, |
| @@ -358,7 +358,7 @@ int main(int argc,char **argv) | |||
| 358 | p[-1] = '\0'; | 358 | p[-1] = '\0'; |
| 359 | encdec = -1; | 359 | encdec = -1; |
| 360 | } else { | 360 | } else { |
| 361 | encdec = atoi(strsep(&p,"\n")); | 361 | encdec = atoi(sstrsep(&p,"\n")); |
| 362 | } | 362 | } |
| 363 | 363 | ||
| 364 | 364 | ||
diff --git a/src/lib/libssl/src/crypto/evp/p5_crpt.c b/src/lib/libssl/src/crypto/evp/p5_crpt.c index 113c60fedb..27a8286489 100644 --- a/src/lib/libssl/src/crypto/evp/p5_crpt.c +++ b/src/lib/libssl/src/crypto/evp/p5_crpt.c | |||
| @@ -58,9 +58,9 @@ | |||
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <stdlib.h> | 60 | #include <stdlib.h> |
| 61 | #include "cryptlib.h" | ||
| 61 | #include <openssl/x509.h> | 62 | #include <openssl/x509.h> |
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include "cryptlib.h" | ||
| 64 | 64 | ||
| 65 | /* PKCS#5 v1.5 compatible PBE functions: see PKCS#5 v2.0 for more info. | 65 | /* PKCS#5 v1.5 compatible PBE functions: see PKCS#5 v2.0 for more info. |
| 66 | */ | 66 | */ |
diff --git a/src/lib/libssl/src/crypto/evp/p5_crpt2.c b/src/lib/libssl/src/crypto/evp/p5_crpt2.c index 7881860b53..7485d6a278 100644 --- a/src/lib/libssl/src/crypto/evp/p5_crpt2.c +++ b/src/lib/libssl/src/crypto/evp/p5_crpt2.c | |||
| @@ -58,10 +58,10 @@ | |||
| 58 | #if !defined(OPENSSL_NO_HMAC) && !defined(OPENSSL_NO_SHA) | 58 | #if !defined(OPENSSL_NO_HMAC) && !defined(OPENSSL_NO_SHA) |
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <stdlib.h> | 60 | #include <stdlib.h> |
| 61 | #include "cryptlib.h" | ||
| 61 | #include <openssl/x509.h> | 62 | #include <openssl/x509.h> |
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include <openssl/hmac.h> | 64 | #include <openssl/hmac.h> |
| 64 | #include "cryptlib.h" | ||
| 65 | 65 | ||
| 66 | /* set this to print out info about the keygen algorithm */ | 66 | /* set this to print out info about the keygen algorithm */ |
| 67 | /* #define DEBUG_PKCS5V2 */ | 67 | /* #define DEBUG_PKCS5V2 */ |
diff --git a/src/lib/libssl/src/crypto/hmac/Makefile.ssl b/src/lib/libssl/src/crypto/hmac/Makefile.ssl index 93312d4918..2bb3264f0e 100644 --- a/src/lib/libssl/src/crypto/hmac/Makefile.ssl +++ b/src/lib/libssl/src/crypto/hmac/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -79,11 +79,21 @@ clean: | |||
| 79 | 79 | ||
| 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 80 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 81 | 81 | ||
| 82 | hmac.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 82 | hmac.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 83 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | 83 | hmac.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h |
| 84 | hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | 84 | hmac.o: ../../include/openssl/bn.h ../../include/openssl/cast.h |
| 85 | hmac.o: ../../include/openssl/hmac.h ../../include/openssl/obj_mac.h | 85 | hmac.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 86 | hmac.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 87 | hmac.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 88 | hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | ||
| 89 | hmac.o: ../../include/openssl/idea.h ../../include/openssl/md2.h | ||
| 90 | hmac.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 91 | hmac.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 86 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 92 | hmac.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 87 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 93 | hmac.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 88 | hmac.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 94 | hmac.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h |
| 89 | hmac.o: ../../include/openssl/symhacks.h hmac.c | 95 | hmac.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h |
| 96 | hmac.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 97 | hmac.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 98 | hmac.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | ||
| 99 | hmac.o: ../../include/openssl/ui_compat.h hmac.c | ||
diff --git a/src/lib/libssl/src/crypto/idea/Makefile.ssl b/src/lib/libssl/src/crypto/idea/Makefile.ssl index d87863d133..87c9aa484b 100644 --- a/src/lib/libssl/src/crypto/idea/Makefile.ssl +++ b/src/lib/libssl/src/crypto/idea/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/krb5/Makefile.ssl b/src/lib/libssl/src/crypto/krb5/Makefile.ssl index ab90580b46..caf111be8d 100644 --- a/src/lib/libssl/src/crypto/krb5/Makefile.ssl +++ b/src/lib/libssl/src/crypto/krb5/Makefile.ssl | |||
| @@ -69,7 +69,7 @@ lint: | |||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 70 | 70 | ||
| 71 | depend: | 71 | depend: |
| 72 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 72 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 73 | 73 | ||
| 74 | dclean: | 74 | dclean: |
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/lhash/Makefile.ssl b/src/lib/libssl/src/crypto/lhash/Makefile.ssl index 324e360143..b3ad272cf7 100644 --- a/src/lib/libssl/src/crypto/lhash/Makefile.ssl +++ b/src/lib/libssl/src/crypto/lhash/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/md2/Makefile.ssl b/src/lib/libssl/src/crypto/md2/Makefile.ssl index 62a7fe6198..e89a17f3a4 100644 --- a/src/lib/libssl/src/crypto/md2/Makefile.ssl +++ b/src/lib/libssl/src/crypto/md2/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/md4/Makefile.ssl b/src/lib/libssl/src/crypto/md4/Makefile.ssl index 9e38bf607f..1de72571d8 100644 --- a/src/lib/libssl/src/crypto/md4/Makefile.ssl +++ b/src/lib/libssl/src/crypto/md4/Makefile.ssl | |||
| @@ -69,7 +69,7 @@ lint: | |||
| 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 69 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 70 | 70 | ||
| 71 | depend: | 71 | depend: |
| 72 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 72 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 73 | 73 | ||
| 74 | dclean: | 74 | dclean: |
| 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 75 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/md5/Makefile.ssl b/src/lib/libssl/src/crypto/md5/Makefile.ssl index a7a92e9588..5f1bbfb8ff 100644 --- a/src/lib/libssl/src/crypto/md5/Makefile.ssl +++ b/src/lib/libssl/src/crypto/md5/Makefile.ssl | |||
| @@ -118,7 +118,7 @@ lint: | |||
| 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 118 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 119 | 119 | ||
| 120 | depend: | 120 | depend: |
| 121 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 121 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 122 | 122 | ||
| 123 | dclean: | 123 | dclean: |
| 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 124 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/mdc2/Makefile.ssl b/src/lib/libssl/src/crypto/mdc2/Makefile.ssl index d8b512d2d6..087b8eb9ee 100644 --- a/src/lib/libssl/src/crypto/mdc2/Makefile.ssl +++ b/src/lib/libssl/src/crypto/mdc2/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/objects/Makefile.ssl b/src/lib/libssl/src/crypto/objects/Makefile.ssl index a9f01ffc0d..cd5cbc95ce 100644 --- a/src/lib/libssl/src/crypto/objects/Makefile.ssl +++ b/src/lib/libssl/src/crypto/objects/Makefile.ssl | |||
| @@ -76,7 +76,7 @@ lint: | |||
| 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 76 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 77 | 77 | ||
| 78 | depend: | 78 | depend: |
| 79 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 79 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 80 | 80 | ||
| 81 | dclean: | 81 | dclean: |
| 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 82 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/objects/obj_mac.num b/src/lib/libssl/src/crypto/objects/obj_mac.num index 02b39062fe..1486199661 100644 --- a/src/lib/libssl/src/crypto/objects/obj_mac.num +++ b/src/lib/libssl/src/crypto/objects/obj_mac.num | |||
| @@ -507,3 +507,141 @@ mime_mhs_bodies 506 | |||
| 507 | id_hex_partial_message 507 | 507 | id_hex_partial_message 507 |
| 508 | id_hex_multipart_message 508 | 508 | id_hex_multipart_message 508 |
| 509 | generationQualifier 509 | 509 | generationQualifier 509 |
| 510 | pseudonym 510 | ||
| 511 | InternationalRA 511 | ||
| 512 | id_set 512 | ||
| 513 | set_ctype 513 | ||
| 514 | set_msgExt 514 | ||
| 515 | set_attr 515 | ||
| 516 | set_policy 516 | ||
| 517 | set_certExt 517 | ||
| 518 | set_brand 518 | ||
| 519 | setct_PANData 519 | ||
| 520 | setct_PANToken 520 | ||
| 521 | setct_PANOnly 521 | ||
| 522 | setct_OIData 522 | ||
| 523 | setct_PI 523 | ||
| 524 | setct_PIData 524 | ||
| 525 | setct_PIDataUnsigned 525 | ||
| 526 | setct_HODInput 526 | ||
| 527 | setct_AuthResBaggage 527 | ||
| 528 | setct_AuthRevReqBaggage 528 | ||
| 529 | setct_AuthRevResBaggage 529 | ||
| 530 | setct_CapTokenSeq 530 | ||
| 531 | setct_PInitResData 531 | ||
| 532 | setct_PI_TBS 532 | ||
| 533 | setct_PResData 533 | ||
| 534 | setct_AuthReqTBS 534 | ||
| 535 | setct_AuthResTBS 535 | ||
| 536 | setct_AuthResTBSX 536 | ||
| 537 | setct_AuthTokenTBS 537 | ||
| 538 | setct_CapTokenData 538 | ||
| 539 | setct_CapTokenTBS 539 | ||
| 540 | setct_AcqCardCodeMsg 540 | ||
| 541 | setct_AuthRevReqTBS 541 | ||
| 542 | setct_AuthRevResData 542 | ||
| 543 | setct_AuthRevResTBS 543 | ||
| 544 | setct_CapReqTBS 544 | ||
| 545 | setct_CapReqTBSX 545 | ||
| 546 | setct_CapResData 546 | ||
| 547 | setct_CapRevReqTBS 547 | ||
| 548 | setct_CapRevReqTBSX 548 | ||
| 549 | setct_CapRevResData 549 | ||
| 550 | setct_CredReqTBS 550 | ||
| 551 | setct_CredReqTBSX 551 | ||
| 552 | setct_CredResData 552 | ||
| 553 | setct_CredRevReqTBS 553 | ||
| 554 | setct_CredRevReqTBSX 554 | ||
| 555 | setct_CredRevResData 555 | ||
| 556 | setct_PCertReqData 556 | ||
| 557 | setct_PCertResTBS 557 | ||
| 558 | setct_BatchAdminReqData 558 | ||
| 559 | setct_BatchAdminResData 559 | ||
| 560 | setct_CardCInitResTBS 560 | ||
| 561 | setct_MeAqCInitResTBS 561 | ||
| 562 | setct_RegFormResTBS 562 | ||
| 563 | setct_CertReqData 563 | ||
| 564 | setct_CertReqTBS 564 | ||
| 565 | setct_CertResData 565 | ||
| 566 | setct_CertInqReqTBS 566 | ||
| 567 | setct_ErrorTBS 567 | ||
| 568 | setct_PIDualSignedTBE 568 | ||
| 569 | setct_PIUnsignedTBE 569 | ||
| 570 | setct_AuthReqTBE 570 | ||
| 571 | setct_AuthResTBE 571 | ||
| 572 | setct_AuthResTBEX 572 | ||
| 573 | setct_AuthTokenTBE 573 | ||
| 574 | setct_CapTokenTBE 574 | ||
| 575 | setct_CapTokenTBEX 575 | ||
| 576 | setct_AcqCardCodeMsgTBE 576 | ||
| 577 | setct_AuthRevReqTBE 577 | ||
| 578 | setct_AuthRevResTBE 578 | ||
| 579 | setct_AuthRevResTBEB 579 | ||
| 580 | setct_CapReqTBE 580 | ||
| 581 | setct_CapReqTBEX 581 | ||
| 582 | setct_CapResTBE 582 | ||
| 583 | setct_CapRevReqTBE 583 | ||
| 584 | setct_CapRevReqTBEX 584 | ||
| 585 | setct_CapRevResTBE 585 | ||
| 586 | setct_CredReqTBE 586 | ||
| 587 | setct_CredReqTBEX 587 | ||
| 588 | setct_CredResTBE 588 | ||
| 589 | setct_CredRevReqTBE 589 | ||
| 590 | setct_CredRevReqTBEX 590 | ||
| 591 | setct_CredRevResTBE 591 | ||
| 592 | setct_BatchAdminReqTBE 592 | ||
| 593 | setct_BatchAdminResTBE 593 | ||
| 594 | setct_RegFormReqTBE 594 | ||
| 595 | setct_CertReqTBE 595 | ||
| 596 | setct_CertReqTBEX 596 | ||
| 597 | setct_CertResTBE 597 | ||
| 598 | setct_CRLNotificationTBS 598 | ||
| 599 | setct_CRLNotificationResTBS 599 | ||
| 600 | setct_BCIDistributionTBS 600 | ||
| 601 | setext_genCrypt 601 | ||
| 602 | setext_miAuth 602 | ||
| 603 | setext_pinSecure 603 | ||
| 604 | setext_pinAny 604 | ||
| 605 | setext_track2 605 | ||
| 606 | setext_cv 606 | ||
| 607 | set_policy_root 607 | ||
| 608 | setCext_hashedRoot 608 | ||
| 609 | setCext_certType 609 | ||
| 610 | setCext_merchData 610 | ||
| 611 | setCext_cCertRequired 611 | ||
| 612 | setCext_tunneling 612 | ||
| 613 | setCext_setExt 613 | ||
| 614 | setCext_setQualf 614 | ||
| 615 | setCext_PGWYcapabilities 615 | ||
| 616 | setCext_TokenIdentifier 616 | ||
| 617 | setCext_Track2Data 617 | ||
| 618 | setCext_TokenType 618 | ||
| 619 | setCext_IssuerCapabilities 619 | ||
| 620 | setAttr_Cert 620 | ||
| 621 | setAttr_PGWYcap 621 | ||
| 622 | setAttr_TokenType 622 | ||
| 623 | setAttr_IssCap 623 | ||
| 624 | set_rootKeyThumb 624 | ||
| 625 | set_addPolicy 625 | ||
| 626 | setAttr_Token_EMV 626 | ||
| 627 | setAttr_Token_B0Prime 627 | ||
| 628 | setAttr_IssCap_CVM 628 | ||
| 629 | setAttr_IssCap_T2 629 | ||
| 630 | setAttr_IssCap_Sig 630 | ||
| 631 | setAttr_GenCryptgrm 631 | ||
| 632 | setAttr_T2Enc 632 | ||
| 633 | setAttr_T2cleartxt 633 | ||
| 634 | setAttr_TokICCsig 634 | ||
| 635 | setAttr_SecDevSig 635 | ||
| 636 | set_brand_IATA_ATA 636 | ||
| 637 | set_brand_Diners 637 | ||
| 638 | set_brand_AmericanExpress 638 | ||
| 639 | set_brand_JCB 639 | ||
| 640 | set_brand_Visa 640 | ||
| 641 | set_brand_MasterCard 641 | ||
| 642 | set_brand_Novus 642 | ||
| 643 | des_cdmf 643 | ||
| 644 | rsaOAEPEncryptionSET 644 | ||
| 645 | itu_t 645 | ||
| 646 | joint_iso_itu_t 646 | ||
| 647 | international_organizations 647 | ||
diff --git a/src/lib/libssl/src/crypto/objects/objects.txt b/src/lib/libssl/src/crypto/objects/objects.txt index 65d0b15629..71a4908485 100644 --- a/src/lib/libssl/src/crypto/objects/objects.txt +++ b/src/lib/libssl/src/crypto/objects/objects.txt | |||
| @@ -542,6 +542,7 @@ X509 43 : : initials | |||
| 542 | X509 44 : : generationQualifier | 542 | X509 44 : : generationQualifier |
| 543 | X509 45 : : x500UniqueIdentifier | 543 | X509 45 : : x500UniqueIdentifier |
| 544 | X509 46 : dnQualifier : dnQualifier | 544 | X509 46 : dnQualifier : dnQualifier |
| 545 | X509 65 : : pseudonym | ||
| 545 | X509 72 : role : role | 546 | X509 72 : role : role |
| 546 | 547 | ||
| 547 | X500 8 : X500algorithms : directory services - algorithms | 548 | X500 8 : X500algorithms : directory services - algorithms |
| @@ -762,3 +763,150 @@ pilotAttributeType 53 : : personalSignature | |||
| 762 | pilotAttributeType 54 : : dITRedirect | 763 | pilotAttributeType 54 : : dITRedirect |
| 763 | pilotAttributeType 55 : audio | 764 | pilotAttributeType 55 : audio |
| 764 | pilotAttributeType 56 : : documentPublisher | 765 | pilotAttributeType 56 : : documentPublisher |
| 766 | |||
| 767 | 2 23 42 : id-set : Secure Electronic Transactions | ||
| 768 | |||
| 769 | id-set 0 : set-ctype : content types | ||
| 770 | id-set 1 : set-msgExt : message extensions | ||
| 771 | id-set 3 : set-attr | ||
| 772 | id-set 5 : set-policy | ||
| 773 | id-set 7 : set-certExt : certificate extensions | ||
| 774 | id-set 8 : set-brand | ||
| 775 | |||
| 776 | set-ctype 0 : setct-PANData | ||
| 777 | set-ctype 1 : setct-PANToken | ||
| 778 | set-ctype 2 : setct-PANOnly | ||
| 779 | set-ctype 3 : setct-OIData | ||
| 780 | set-ctype 4 : setct-PI | ||
| 781 | set-ctype 5 : setct-PIData | ||
| 782 | set-ctype 6 : setct-PIDataUnsigned | ||
| 783 | set-ctype 7 : setct-HODInput | ||
| 784 | set-ctype 8 : setct-AuthResBaggage | ||
| 785 | set-ctype 9 : setct-AuthRevReqBaggage | ||
| 786 | set-ctype 10 : setct-AuthRevResBaggage | ||
| 787 | set-ctype 11 : setct-CapTokenSeq | ||
| 788 | set-ctype 12 : setct-PInitResData | ||
| 789 | set-ctype 13 : setct-PI-TBS | ||
| 790 | set-ctype 14 : setct-PResData | ||
| 791 | set-ctype 16 : setct-AuthReqTBS | ||
| 792 | set-ctype 17 : setct-AuthResTBS | ||
| 793 | set-ctype 18 : setct-AuthResTBSX | ||
| 794 | set-ctype 19 : setct-AuthTokenTBS | ||
| 795 | set-ctype 20 : setct-CapTokenData | ||
| 796 | set-ctype 21 : setct-CapTokenTBS | ||
| 797 | set-ctype 22 : setct-AcqCardCodeMsg | ||
| 798 | set-ctype 23 : setct-AuthRevReqTBS | ||
| 799 | set-ctype 24 : setct-AuthRevResData | ||
| 800 | set-ctype 25 : setct-AuthRevResTBS | ||
| 801 | set-ctype 26 : setct-CapReqTBS | ||
| 802 | set-ctype 27 : setct-CapReqTBSX | ||
| 803 | set-ctype 28 : setct-CapResData | ||
| 804 | set-ctype 29 : setct-CapRevReqTBS | ||
| 805 | set-ctype 30 : setct-CapRevReqTBSX | ||
| 806 | set-ctype 31 : setct-CapRevResData | ||
| 807 | set-ctype 32 : setct-CredReqTBS | ||
| 808 | set-ctype 33 : setct-CredReqTBSX | ||
| 809 | set-ctype 34 : setct-CredResData | ||
| 810 | set-ctype 35 : setct-CredRevReqTBS | ||
| 811 | set-ctype 36 : setct-CredRevReqTBSX | ||
| 812 | set-ctype 37 : setct-CredRevResData | ||
| 813 | set-ctype 38 : setct-PCertReqData | ||
| 814 | set-ctype 39 : setct-PCertResTBS | ||
| 815 | set-ctype 40 : setct-BatchAdminReqData | ||
| 816 | set-ctype 41 : setct-BatchAdminResData | ||
| 817 | set-ctype 42 : setct-CardCInitResTBS | ||
| 818 | set-ctype 43 : setct-MeAqCInitResTBS | ||
| 819 | set-ctype 44 : setct-RegFormResTBS | ||
| 820 | set-ctype 45 : setct-CertReqData | ||
| 821 | set-ctype 46 : setct-CertReqTBS | ||
| 822 | set-ctype 47 : setct-CertResData | ||
| 823 | set-ctype 48 : setct-CertInqReqTBS | ||
| 824 | set-ctype 49 : setct-ErrorTBS | ||
| 825 | set-ctype 50 : setct-PIDualSignedTBE | ||
| 826 | set-ctype 51 : setct-PIUnsignedTBE | ||
| 827 | set-ctype 52 : setct-AuthReqTBE | ||
| 828 | set-ctype 53 : setct-AuthResTBE | ||
| 829 | set-ctype 54 : setct-AuthResTBEX | ||
| 830 | set-ctype 55 : setct-AuthTokenTBE | ||
| 831 | set-ctype 56 : setct-CapTokenTBE | ||
| 832 | set-ctype 57 : setct-CapTokenTBEX | ||
| 833 | set-ctype 58 : setct-AcqCardCodeMsgTBE | ||
| 834 | set-ctype 59 : setct-AuthRevReqTBE | ||
| 835 | set-ctype 60 : setct-AuthRevResTBE | ||
| 836 | set-ctype 61 : setct-AuthRevResTBEB | ||
| 837 | set-ctype 62 : setct-CapReqTBE | ||
| 838 | set-ctype 63 : setct-CapReqTBEX | ||
| 839 | set-ctype 64 : setct-CapResTBE | ||
| 840 | set-ctype 65 : setct-CapRevReqTBE | ||
| 841 | set-ctype 66 : setct-CapRevReqTBEX | ||
| 842 | set-ctype 67 : setct-CapRevResTBE | ||
| 843 | set-ctype 68 : setct-CredReqTBE | ||
| 844 | set-ctype 69 : setct-CredReqTBEX | ||
| 845 | set-ctype 70 : setct-CredResTBE | ||
| 846 | set-ctype 71 : setct-CredRevReqTBE | ||
| 847 | set-ctype 72 : setct-CredRevReqTBEX | ||
| 848 | set-ctype 73 : setct-CredRevResTBE | ||
| 849 | set-ctype 74 : setct-BatchAdminReqTBE | ||
| 850 | set-ctype 75 : setct-BatchAdminResTBE | ||
| 851 | set-ctype 76 : setct-RegFormReqTBE | ||
| 852 | set-ctype 77 : setct-CertReqTBE | ||
| 853 | set-ctype 78 : setct-CertReqTBEX | ||
| 854 | set-ctype 79 : setct-CertResTBE | ||
| 855 | set-ctype 80 : setct-CRLNotificationTBS | ||
| 856 | set-ctype 81 : setct-CRLNotificationResTBS | ||
| 857 | set-ctype 82 : setct-BCIDistributionTBS | ||
| 858 | |||
| 859 | set-msgExt 1 : setext-genCrypt : generic cryptogram | ||
| 860 | set-msgExt 3 : setext-miAuth : merchant initiated auth | ||
| 861 | set-msgExt 4 : setext-pinSecure | ||
| 862 | set-msgExt 5 : setext-pinAny | ||
| 863 | set-msgExt 7 : setext-track2 | ||
| 864 | set-msgExt 8 : setext-cv : additional verification | ||
| 865 | |||
| 866 | set-policy 0 : set-policy-root | ||
| 867 | |||
| 868 | set-certExt 0 : setCext-hashedRoot | ||
| 869 | set-certExt 1 : setCext-certType | ||
| 870 | set-certExt 2 : setCext-merchData | ||
| 871 | set-certExt 3 : setCext-cCertRequired | ||
| 872 | set-certExt 4 : setCext-tunneling | ||
| 873 | set-certExt 5 : setCext-setExt | ||
| 874 | set-certExt 6 : setCext-setQualf | ||
| 875 | set-certExt 7 : setCext-PGWYcapabilities | ||
| 876 | set-certExt 8 : setCext-TokenIdentifier | ||
| 877 | set-certExt 9 : setCext-Track2Data | ||
| 878 | set-certExt 10 : setCext-TokenType | ||
| 879 | set-certExt 11 : setCext-IssuerCapabilities | ||
| 880 | |||
| 881 | set-attr 0 : setAttr-Cert | ||
| 882 | set-attr 1 : setAttr-PGWYcap : payment gateway capabilities | ||
| 883 | set-attr 2 : setAttr-TokenType | ||
| 884 | set-attr 3 : setAttr-IssCap : issuer capabilities | ||
| 885 | |||
| 886 | setAttr-Cert 0 : set-rootKeyThumb | ||
| 887 | setAttr-Cert 1 : set-addPolicy | ||
| 888 | |||
| 889 | setAttr-TokenType 1 : setAttr-Token-EMV | ||
| 890 | setAttr-TokenType 2 : setAttr-Token-B0Prime | ||
| 891 | |||
| 892 | setAttr-IssCap 3 : setAttr-IssCap-CVM | ||
| 893 | setAttr-IssCap 4 : setAttr-IssCap-T2 | ||
| 894 | setAttr-IssCap 5 : setAttr-IssCap-Sig | ||
| 895 | |||
| 896 | setAttr-IssCap-CVM 1 : setAttr-GenCryptgrm : generate cryptogram | ||
| 897 | setAttr-IssCap-T2 1 : setAttr-T2Enc : encrypted track 2 | ||
| 898 | setAttr-IssCap-T2 2 : setAttr-T2cleartxt : cleartext track 2 | ||
| 899 | |||
| 900 | setAttr-IssCap-Sig 1 : setAttr-TokICCsig : ICC or token signature | ||
| 901 | setAttr-IssCap-Sig 2 : setAttr-SecDevSig : secure device signature | ||
| 902 | |||
| 903 | set-brand 1 : set-brand-IATA-ATA | ||
| 904 | set-brand 30 : set-brand-Diners | ||
| 905 | set-brand 34 : set-brand-AmericanExpress | ||
| 906 | set-brand 35 : set-brand-JCB | ||
| 907 | set-brand 4 : set-brand-Visa | ||
| 908 | set-brand 5 : set-brand-MasterCard | ||
| 909 | set-brand 6011 : set-brand-Novus | ||
| 910 | |||
| 911 | rsadsi 3 10 : DES-CDMF : des-cdmf | ||
| 912 | rsadsi 1 1 6 : rsaOAEPEncryptionSET | ||
diff --git a/src/lib/libssl/src/crypto/ocsp/Makefile.ssl b/src/lib/libssl/src/crypto/ocsp/Makefile.ssl index 381c824e45..44eacbbb13 100644 --- a/src/lib/libssl/src/crypto/ocsp/Makefile.ssl +++ b/src/lib/libssl/src/crypto/ocsp/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -82,140 +82,212 @@ clean: | |||
| 82 | 82 | ||
| 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | 84 | ||
| 85 | ocsp_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h | 85 | ocsp_asn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 86 | ocsp_asn.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 86 | ocsp_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 87 | ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 87 | ocsp_asn.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 88 | ocsp_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 88 | ocsp_asn.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 89 | ocsp_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 89 | ocsp_asn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 90 | ocsp_asn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 90 | ocsp_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 91 | ocsp_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 92 | ocsp_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/evp.h | ||
| 93 | ocsp_asn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 94 | ocsp_asn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 95 | ocsp_asn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 91 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 96 | ocsp_asn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 92 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 97 | ocsp_asn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 93 | ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 98 | ocsp_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 94 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 99 | ocsp_asn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 100 | ocsp_asn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 101 | ocsp_asn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 95 | ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 102 | ocsp_asn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 96 | ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 103 | ocsp_asn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 104 | ocsp_asn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 97 | ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 105 | ocsp_asn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 98 | ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c | 106 | ocsp_asn.o: ../../include/openssl/x509v3.h ocsp_asn.c |
| 99 | ocsp_cl.o: ../../e_os.h ../../include/openssl/asn1.h | 107 | ocsp_cl.o: ../../e_os.h ../../include/openssl/aes.h |
| 100 | ocsp_cl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 108 | ocsp_cl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 101 | ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 109 | ocsp_cl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 102 | ocsp_cl.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 110 | ocsp_cl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 103 | ocsp_cl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 111 | ocsp_cl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 104 | ocsp_cl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 112 | ocsp_cl.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 105 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 113 | ocsp_cl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 114 | ocsp_cl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 115 | ocsp_cl.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 116 | ocsp_cl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 117 | ocsp_cl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 118 | ocsp_cl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 106 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 119 | ocsp_cl.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 107 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 120 | ocsp_cl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 108 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 121 | ocsp_cl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 109 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 122 | ocsp_cl.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 110 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 123 | ocsp_cl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 124 | ocsp_cl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 125 | ocsp_cl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 111 | ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 126 | ocsp_cl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 112 | ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 127 | ocsp_cl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 128 | ocsp_cl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 113 | ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 129 | ocsp_cl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 114 | ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c | 130 | ocsp_cl.o: ../../include/openssl/x509v3.h ../cryptlib.h ocsp_cl.c |
| 115 | ocsp_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 131 | ocsp_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 132 | ocsp_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 116 | ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 133 | ocsp_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 117 | ocsp_err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 134 | ocsp_err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 118 | ocsp_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 135 | ocsp_err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 119 | ocsp_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 136 | ocsp_err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 120 | ocsp_err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 137 | ocsp_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 138 | ocsp_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 139 | ocsp_err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 140 | ocsp_err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 141 | ocsp_err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 121 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 142 | ocsp_err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 122 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 143 | ocsp_err.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 123 | ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 144 | ocsp_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 124 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 145 | ocsp_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 146 | ocsp_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 147 | ocsp_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 125 | ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 148 | ocsp_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 126 | ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 149 | ocsp_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 150 | ocsp_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 127 | ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 151 | ocsp_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 128 | ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c | 152 | ocsp_err.o: ../../include/openssl/x509v3.h ocsp_err.c |
| 129 | ocsp_ext.o: ../../e_os.h ../../include/openssl/asn1.h | 153 | ocsp_ext.o: ../../e_os.h ../../include/openssl/aes.h |
| 130 | ocsp_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 154 | ocsp_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 131 | ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 155 | ocsp_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 132 | ocsp_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 156 | ocsp_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 133 | ocsp_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 157 | ocsp_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 134 | ocsp_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 158 | ocsp_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 135 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 159 | ocsp_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 160 | ocsp_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 161 | ocsp_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 162 | ocsp_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 163 | ocsp_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 164 | ocsp_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 136 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 165 | ocsp_ext.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 137 | ocsp_ext.o: ../../include/openssl/opensslconf.h | 166 | ocsp_ext.o: ../../include/openssl/opensslconf.h |
| 138 | ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 167 | ocsp_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 139 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 168 | ocsp_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 169 | ocsp_ext.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 170 | ocsp_ext.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 140 | ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 171 | ocsp_ext.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 141 | ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 172 | ocsp_ext.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 142 | ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 173 | ocsp_ext.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 174 | ocsp_ext.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 143 | ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 175 | ocsp_ext.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 144 | ocsp_ext.o: ../cryptlib.h ocsp_ext.c | 176 | ocsp_ext.o: ../cryptlib.h ocsp_ext.c |
| 145 | ocsp_ht.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 177 | ocsp_ht.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 178 | ocsp_ht.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 146 | ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 179 | ocsp_ht.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 147 | ocsp_ht.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 180 | ocsp_ht.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 148 | ocsp_ht.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 181 | ocsp_ht.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 149 | ocsp_ht.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 182 | ocsp_ht.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 150 | ocsp_ht.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 183 | ocsp_ht.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 184 | ocsp_ht.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 185 | ocsp_ht.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 186 | ocsp_ht.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 187 | ocsp_ht.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 151 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 188 | ocsp_ht.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 152 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 189 | ocsp_ht.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 153 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 190 | ocsp_ht.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 154 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 191 | ocsp_ht.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 192 | ocsp_ht.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 193 | ocsp_ht.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 155 | ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 194 | ocsp_ht.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 156 | ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 195 | ocsp_ht.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 196 | ocsp_ht.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 157 | ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 197 | ocsp_ht.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 158 | ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c | 198 | ocsp_ht.o: ../../include/openssl/x509v3.h ocsp_ht.c |
| 159 | ocsp_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 199 | ocsp_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 160 | ocsp_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 200 | ocsp_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 161 | ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 201 | ocsp_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 162 | ocsp_lib.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 202 | ocsp_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 163 | ocsp_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 203 | ocsp_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 164 | ocsp_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 204 | ocsp_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 165 | ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 205 | ocsp_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 206 | ocsp_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 207 | ocsp_lib.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 208 | ocsp_lib.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 209 | ocsp_lib.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 210 | ocsp_lib.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 166 | ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 211 | ocsp_lib.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 167 | ocsp_lib.o: ../../include/openssl/opensslconf.h | 212 | ocsp_lib.o: ../../include/openssl/opensslconf.h |
| 168 | ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 213 | ocsp_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 169 | ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 214 | ocsp_lib.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 170 | ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 215 | ocsp_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 216 | ocsp_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 217 | ocsp_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 171 | ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 218 | ocsp_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 172 | ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 219 | ocsp_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 173 | ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 220 | ocsp_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 221 | ocsp_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 174 | ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 222 | ocsp_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 175 | ocsp_lib.o: ../cryptlib.h ocsp_lib.c | 223 | ocsp_lib.o: ../cryptlib.h ocsp_lib.c |
| 176 | ocsp_prn.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 224 | ocsp_prn.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 225 | ocsp_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 177 | ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 226 | ocsp_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 178 | ocsp_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 227 | ocsp_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 179 | ocsp_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 228 | ocsp_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 180 | ocsp_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 229 | ocsp_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 181 | ocsp_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 230 | ocsp_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 231 | ocsp_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 232 | ocsp_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 233 | ocsp_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 234 | ocsp_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 182 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 235 | ocsp_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 183 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 236 | ocsp_prn.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 184 | ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 237 | ocsp_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 185 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 238 | ocsp_prn.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 186 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 239 | ocsp_prn.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 240 | ocsp_prn.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 241 | ocsp_prn.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 187 | ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 242 | ocsp_prn.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 188 | ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 243 | ocsp_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 244 | ocsp_prn.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 189 | ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 245 | ocsp_prn.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 190 | ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c | 246 | ocsp_prn.o: ../../include/openssl/x509v3.h ocsp_prn.c |
| 191 | ocsp_srv.o: ../../e_os.h ../../include/openssl/asn1.h | 247 | ocsp_srv.o: ../../e_os.h ../../include/openssl/aes.h |
| 192 | ocsp_srv.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 248 | ocsp_srv.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 193 | ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 249 | ocsp_srv.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 194 | ocsp_srv.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 250 | ocsp_srv.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 195 | ocsp_srv.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 251 | ocsp_srv.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 196 | ocsp_srv.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 252 | ocsp_srv.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 197 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 253 | ocsp_srv.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 254 | ocsp_srv.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 255 | ocsp_srv.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 256 | ocsp_srv.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 257 | ocsp_srv.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 258 | ocsp_srv.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 198 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 259 | ocsp_srv.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 199 | ocsp_srv.o: ../../include/openssl/opensslconf.h | 260 | ocsp_srv.o: ../../include/openssl/opensslconf.h |
| 200 | ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 261 | ocsp_srv.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 201 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 262 | ocsp_srv.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 202 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 263 | ocsp_srv.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 264 | ocsp_srv.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 265 | ocsp_srv.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 203 | ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 266 | ocsp_srv.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 204 | ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 267 | ocsp_srv.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 205 | ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 268 | ocsp_srv.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 269 | ocsp_srv.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 206 | ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 270 | ocsp_srv.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 207 | ocsp_srv.o: ../cryptlib.h ocsp_srv.c | 271 | ocsp_srv.o: ../cryptlib.h ocsp_srv.c |
| 208 | ocsp_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 272 | ocsp_vfy.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 273 | ocsp_vfy.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 209 | ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 274 | ocsp_vfy.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 210 | ocsp_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 275 | ocsp_vfy.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 211 | ocsp_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 276 | ocsp_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 212 | ocsp_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 277 | ocsp_vfy.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 213 | ocsp_vfy.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 278 | ocsp_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 279 | ocsp_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 280 | ocsp_vfy.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 281 | ocsp_vfy.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 282 | ocsp_vfy.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 214 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 283 | ocsp_vfy.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 215 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h | 284 | ocsp_vfy.o: ../../include/openssl/ocsp.h ../../include/openssl/opensslconf.h |
| 216 | ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 285 | ocsp_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 217 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 286 | ocsp_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 287 | ocsp_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 288 | ocsp_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 218 | ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 289 | ocsp_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 219 | ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 290 | ocsp_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 291 | ocsp_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 220 | ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 292 | ocsp_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 221 | ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c | 293 | ocsp_vfy.o: ../../include/openssl/x509v3.h ocsp_vfy.c |
diff --git a/src/lib/libssl/src/crypto/opensslv.h b/src/lib/libssl/src/crypto/opensslv.h index 0d23a02fb2..9689b49c5b 100644 --- a/src/lib/libssl/src/crypto/opensslv.h +++ b/src/lib/libssl/src/crypto/opensslv.h | |||
| @@ -25,8 +25,8 @@ | |||
| 25 | * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for | 25 | * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for |
| 26 | * major minor fix final patch/beta) | 26 | * major minor fix final patch/beta) |
| 27 | */ | 27 | */ |
| 28 | #define OPENSSL_VERSION_NUMBER 0x00907001L | 28 | #define OPENSSL_VERSION_NUMBER 0x00907003L |
| 29 | #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.7-beta1 01 Jun 2002" | 29 | #define OPENSSL_VERSION_TEXT "OpenSSL 0.9.7-beta3 30 Jul 2002" |
| 30 | #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT | 30 | #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT |
| 31 | 31 | ||
| 32 | 32 | ||
diff --git a/src/lib/libssl/src/crypto/pem/Makefile.ssl b/src/lib/libssl/src/crypto/pem/Makefile.ssl index 27be11dfc0..5075d9107b 100644 --- a/src/lib/libssl/src/crypto/pem/Makefile.ssl +++ b/src/lib/libssl/src/crypto/pem/Makefile.ssl | |||
| @@ -71,7 +71,7 @@ lint: | |||
| 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 71 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 72 | 72 | ||
| 73 | depend: | 73 | depend: |
| 74 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(LIBSRC) | 74 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(LIBSRC) |
| 75 | 75 | ||
| 76 | dclean: | 76 | dclean: |
| 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 77 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -82,169 +82,255 @@ clean: | |||
| 82 | 82 | ||
| 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 83 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 84 | 84 | ||
| 85 | pem_all.o: ../../e_os.h ../../include/openssl/asn1.h | 85 | pem_all.o: ../../e_os.h ../../include/openssl/aes.h |
| 86 | pem_all.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 86 | pem_all.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 87 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 87 | pem_all.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 88 | pem_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 88 | pem_all.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 89 | pem_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 89 | pem_all.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 90 | pem_all.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 90 | pem_all.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 91 | pem_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 92 | pem_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 93 | pem_all.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 94 | pem_all.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 95 | pem_all.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 91 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 96 | pem_all.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 92 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 97 | pem_all.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 93 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 98 | pem_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 94 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 99 | pem_all.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 100 | pem_all.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 101 | pem_all.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 95 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 102 | pem_all.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 96 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 103 | pem_all.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 97 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 104 | pem_all.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 105 | pem_all.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 98 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c | 106 | pem_all.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_all.c |
| 99 | pem_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 107 | pem_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 108 | pem_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 100 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 109 | pem_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 101 | pem_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 110 | pem_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 102 | pem_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 111 | pem_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 103 | pem_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 112 | pem_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 104 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 113 | pem_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 114 | pem_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 115 | pem_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 116 | pem_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 117 | pem_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 105 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 118 | pem_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 106 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 119 | pem_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 107 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 120 | pem_err.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 108 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 121 | pem_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 122 | pem_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 123 | pem_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 109 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 124 | pem_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 110 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 125 | pem_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 126 | pem_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 111 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 127 | pem_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 112 | pem_err.o: pem_err.c | 128 | pem_err.o: pem_err.c |
| 113 | pem_info.o: ../../e_os.h ../../include/openssl/asn1.h | 129 | pem_info.o: ../../e_os.h ../../include/openssl/aes.h |
| 114 | pem_info.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 130 | pem_info.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 115 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 131 | pem_info.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 116 | pem_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 132 | pem_info.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 117 | pem_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 133 | pem_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 118 | pem_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 134 | pem_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 135 | pem_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 136 | pem_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 137 | pem_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 138 | pem_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 139 | pem_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 119 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 140 | pem_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 120 | pem_info.o: ../../include/openssl/opensslconf.h | 141 | pem_info.o: ../../include/openssl/opensslconf.h |
| 121 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 142 | pem_info.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 122 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 143 | pem_info.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 123 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 144 | pem_info.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 145 | pem_info.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 146 | pem_info.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 124 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 147 | pem_info.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 125 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 148 | pem_info.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 149 | pem_info.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 126 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 150 | pem_info.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 127 | pem_info.o: ../cryptlib.h pem_info.c | 151 | pem_info.o: ../cryptlib.h pem_info.c |
| 128 | pem_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 152 | pem_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 129 | pem_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 153 | pem_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 130 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 154 | pem_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 131 | pem_lib.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | 155 | pem_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 132 | pem_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 156 | pem_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 133 | pem_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 157 | pem_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 134 | pem_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 158 | pem_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 159 | pem_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 160 | pem_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 161 | pem_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 162 | pem_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 135 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 163 | pem_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 136 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 164 | pem_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 137 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 165 | pem_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 138 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 166 | pem_lib.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h |
| 139 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 167 | pem_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 168 | pem_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 169 | pem_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 140 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 170 | pem_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 141 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 171 | pem_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 142 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 172 | pem_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 143 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | 173 | pem_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 144 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c | 174 | pem_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_lib.c |
| 145 | pem_oth.o: ../../e_os.h ../../include/openssl/asn1.h | 175 | pem_oth.o: ../../e_os.h ../../include/openssl/aes.h |
| 146 | pem_oth.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 176 | pem_oth.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 147 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 177 | pem_oth.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 148 | pem_oth.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 178 | pem_oth.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 149 | pem_oth.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 179 | pem_oth.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 150 | pem_oth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 180 | pem_oth.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 181 | pem_oth.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 182 | pem_oth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 183 | pem_oth.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 184 | pem_oth.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 185 | pem_oth.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 151 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 186 | pem_oth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 152 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 187 | pem_oth.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 153 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 188 | pem_oth.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 154 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 189 | pem_oth.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 155 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 190 | pem_oth.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 191 | pem_oth.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 192 | pem_oth.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 156 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 193 | pem_oth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 157 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 194 | pem_oth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 195 | pem_oth.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 158 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 196 | pem_oth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 159 | pem_oth.o: ../cryptlib.h pem_oth.c | 197 | pem_oth.o: ../cryptlib.h pem_oth.c |
| 160 | pem_pk8.o: ../../e_os.h ../../include/openssl/asn1.h | 198 | pem_pk8.o: ../../e_os.h ../../include/openssl/aes.h |
| 161 | pem_pk8.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 199 | pem_pk8.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 162 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 200 | pem_pk8.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 163 | pem_pk8.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 201 | pem_pk8.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 164 | pem_pk8.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 202 | pem_pk8.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 165 | pem_pk8.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 203 | pem_pk8.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 204 | pem_pk8.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 205 | pem_pk8.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 206 | pem_pk8.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 207 | pem_pk8.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 208 | pem_pk8.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 166 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 209 | pem_pk8.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 167 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 210 | pem_pk8.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 168 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 211 | pem_pk8.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 169 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h | 212 | pem_pk8.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs12.h |
| 170 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 213 | pem_pk8.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 214 | pem_pk8.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 215 | pem_pk8.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 171 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 216 | pem_pk8.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 172 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 217 | pem_pk8.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 173 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 218 | pem_pk8.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 219 | pem_pk8.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 174 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c | 220 | pem_pk8.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_pk8.c |
| 175 | pem_pkey.o: ../../e_os.h ../../include/openssl/asn1.h | 221 | pem_pkey.o: ../../e_os.h ../../include/openssl/aes.h |
| 176 | pem_pkey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 222 | pem_pkey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 177 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 223 | pem_pkey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 178 | pem_pkey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 224 | pem_pkey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 179 | pem_pkey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 225 | pem_pkey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 180 | pem_pkey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 226 | pem_pkey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 227 | pem_pkey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 228 | pem_pkey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 229 | pem_pkey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 230 | pem_pkey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 231 | pem_pkey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 181 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 232 | pem_pkey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 182 | pem_pkey.o: ../../include/openssl/opensslconf.h | 233 | pem_pkey.o: ../../include/openssl/opensslconf.h |
| 183 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 234 | pem_pkey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 184 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 235 | pem_pkey.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 185 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 236 | pem_pkey.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 186 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 237 | pem_pkey.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 238 | pem_pkey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 239 | pem_pkey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 187 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 240 | pem_pkey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 188 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 241 | pem_pkey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 242 | pem_pkey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 189 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 243 | pem_pkey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 190 | pem_pkey.o: ../cryptlib.h pem_pkey.c | 244 | pem_pkey.o: ../cryptlib.h pem_pkey.c |
| 191 | pem_seal.o: ../../e_os.h ../../include/openssl/asn1.h | 245 | pem_seal.o: ../../e_os.h ../../include/openssl/aes.h |
| 192 | pem_seal.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 246 | pem_seal.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 193 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 247 | pem_seal.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 194 | pem_seal.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 248 | pem_seal.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 195 | pem_seal.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 249 | pem_seal.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 196 | pem_seal.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 250 | pem_seal.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 251 | pem_seal.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 252 | pem_seal.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 253 | pem_seal.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 254 | pem_seal.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 255 | pem_seal.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 197 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 256 | pem_seal.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 198 | pem_seal.o: ../../include/openssl/opensslconf.h | 257 | pem_seal.o: ../../include/openssl/opensslconf.h |
| 199 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 258 | pem_seal.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 200 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 259 | pem_seal.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 201 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 260 | pem_seal.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 261 | pem_seal.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 262 | pem_seal.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 202 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 263 | pem_seal.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 203 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 264 | pem_seal.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 204 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 265 | pem_seal.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 266 | pem_seal.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 205 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c | 267 | pem_seal.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_seal.c |
| 206 | pem_sign.o: ../../e_os.h ../../include/openssl/asn1.h | 268 | pem_sign.o: ../../e_os.h ../../include/openssl/aes.h |
| 207 | pem_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 269 | pem_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 208 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 270 | pem_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 209 | pem_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 271 | pem_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 210 | pem_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 272 | pem_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 211 | pem_sign.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 273 | pem_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 274 | pem_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 275 | pem_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 276 | pem_sign.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 277 | pem_sign.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 278 | pem_sign.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 212 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 279 | pem_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 213 | pem_sign.o: ../../include/openssl/opensslconf.h | 280 | pem_sign.o: ../../include/openssl/opensslconf.h |
| 214 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 281 | pem_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 215 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 282 | pem_sign.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 216 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 283 | pem_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 284 | pem_sign.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 285 | pem_sign.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 217 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 286 | pem_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 218 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 287 | pem_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 219 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 288 | pem_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 289 | pem_sign.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 220 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c | 290 | pem_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pem_sign.c |
| 221 | pem_x509.o: ../../e_os.h ../../include/openssl/asn1.h | 291 | pem_x509.o: ../../e_os.h ../../include/openssl/aes.h |
| 222 | pem_x509.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 292 | pem_x509.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 223 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 293 | pem_x509.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 224 | pem_x509.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 294 | pem_x509.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 225 | pem_x509.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 295 | pem_x509.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 226 | pem_x509.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 296 | pem_x509.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 297 | pem_x509.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 298 | pem_x509.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 299 | pem_x509.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 300 | pem_x509.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 301 | pem_x509.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 227 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 302 | pem_x509.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 228 | pem_x509.o: ../../include/openssl/opensslconf.h | 303 | pem_x509.o: ../../include/openssl/opensslconf.h |
| 229 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 304 | pem_x509.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 230 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 305 | pem_x509.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 231 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 306 | pem_x509.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 307 | pem_x509.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 308 | pem_x509.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 232 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 309 | pem_x509.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 233 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 310 | pem_x509.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 311 | pem_x509.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 234 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 312 | pem_x509.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 235 | pem_x509.o: ../cryptlib.h pem_x509.c | 313 | pem_x509.o: ../cryptlib.h pem_x509.c |
| 236 | pem_xaux.o: ../../e_os.h ../../include/openssl/asn1.h | 314 | pem_xaux.o: ../../e_os.h ../../include/openssl/aes.h |
| 237 | pem_xaux.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 315 | pem_xaux.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 238 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 316 | pem_xaux.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 239 | pem_xaux.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 317 | pem_xaux.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 240 | pem_xaux.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 318 | pem_xaux.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 241 | pem_xaux.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 319 | pem_xaux.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 320 | pem_xaux.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 321 | pem_xaux.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 322 | pem_xaux.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 323 | pem_xaux.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 324 | pem_xaux.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 242 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 325 | pem_xaux.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 243 | pem_xaux.o: ../../include/openssl/opensslconf.h | 326 | pem_xaux.o: ../../include/openssl/opensslconf.h |
| 244 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 327 | pem_xaux.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 245 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 328 | pem_xaux.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 246 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 329 | pem_xaux.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 330 | pem_xaux.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 331 | pem_xaux.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 247 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 332 | pem_xaux.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 248 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 333 | pem_xaux.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 334 | pem_xaux.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 249 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 335 | pem_xaux.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 250 | pem_xaux.o: ../cryptlib.h pem_xaux.c | 336 | pem_xaux.o: ../cryptlib.h pem_xaux.c |
diff --git a/src/lib/libssl/src/crypto/pem/pem2.h b/src/lib/libssl/src/crypto/pem/pem2.h index 4e484bcd82..f31790d69c 100644 --- a/src/lib/libssl/src/crypto/pem/pem2.h +++ b/src/lib/libssl/src/crypto/pem/pem2.h | |||
| @@ -61,7 +61,9 @@ | |||
| 61 | extern "C" { | 61 | extern "C" { |
| 62 | #endif | 62 | #endif |
| 63 | 63 | ||
| 64 | #ifndef HEADER_PEM_H | ||
| 64 | void ERR_load_PEM_strings(void); | 65 | void ERR_load_PEM_strings(void); |
| 66 | #endif | ||
| 65 | 67 | ||
| 66 | #ifdef __cplusplus | 68 | #ifdef __cplusplus |
| 67 | } | 69 | } |
diff --git a/src/lib/libssl/src/crypto/perlasm/x86asm.pl b/src/lib/libssl/src/crypto/perlasm/x86asm.pl index 81c6e64e87..9a3d85b098 100644 --- a/src/lib/libssl/src/crypto/perlasm/x86asm.pl +++ b/src/lib/libssl/src/crypto/perlasm/x86asm.pl | |||
| @@ -87,6 +87,12 @@ $tmp | |||
| 87 | #ifdef OUT | 87 | #ifdef OUT |
| 88 | #define OK 1 | 88 | #define OK 1 |
| 89 | #define ALIGN 4 | 89 | #define ALIGN 4 |
| 90 | #if defined(__CYGWIN__) || defined(__DJGPP__) | ||
| 91 | #undef SIZE | ||
| 92 | #undef TYPE | ||
| 93 | #define SIZE(a,b) | ||
| 94 | #define TYPE(a,b) | ||
| 95 | #endif /* __CYGWIN || __DJGPP */ | ||
| 90 | #endif | 96 | #endif |
| 91 | 97 | ||
| 92 | #if defined(BSDI) && !defined(ELF) | 98 | #if defined(BSDI) && !defined(ELF) |
diff --git a/src/lib/libssl/src/crypto/perlasm/x86nasm.pl b/src/lib/libssl/src/crypto/perlasm/x86nasm.pl index b4da364bbf..519d8a5867 100644 --- a/src/lib/libssl/src/crypto/perlasm/x86nasm.pl +++ b/src/lib/libssl/src/crypto/perlasm/x86nasm.pl | |||
| @@ -209,7 +209,7 @@ sub using486 | |||
| 209 | 209 | ||
| 210 | sub main'file | 210 | sub main'file |
| 211 | { | 211 | { |
| 212 | push(@out, "segment .text\n"); | 212 | push(@out, "segment .text use32\n"); |
| 213 | } | 213 | } |
| 214 | 214 | ||
| 215 | sub main'function_begin | 215 | sub main'function_begin |
diff --git a/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl b/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl index 94089bc4b2..2b1d175157 100644 --- a/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl +++ b/src/lib/libssl/src/crypto/pkcs12/Makefile.ssl | |||
| @@ -74,7 +74,7 @@ lint: | |||
| 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 75 | 75 | ||
| 76 | depend: | 76 | depend: |
| 77 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 77 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 78 | 78 | ||
| 79 | dclean: | 79 | dclean: |
| 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -85,213 +85,333 @@ clean: | |||
| 85 | 85 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 87 | 87 | ||
| 88 | p12_add.o: ../../e_os.h ../../include/openssl/asn1.h | 88 | p12_add.o: ../../e_os.h ../../include/openssl/aes.h |
| 89 | p12_add.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 89 | p12_add.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 90 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 90 | p12_add.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 91 | p12_add.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 91 | p12_add.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 92 | p12_add.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 92 | p12_add.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 93 | p12_add.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 93 | p12_add.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 94 | p12_add.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 95 | p12_add.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 96 | p12_add.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 97 | p12_add.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 98 | p12_add.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 94 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 99 | p12_add.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 95 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 100 | p12_add.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 96 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 101 | p12_add.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 97 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 102 | p12_add.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 103 | p12_add.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 104 | p12_add.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 98 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 105 | p12_add.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 99 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 106 | p12_add.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 107 | p12_add.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 100 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 108 | p12_add.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 101 | p12_add.o: ../cryptlib.h p12_add.c | 109 | p12_add.o: ../cryptlib.h p12_add.c |
| 102 | p12_asn.o: ../../e_os.h ../../include/openssl/asn1.h | 110 | p12_asn.o: ../../e_os.h ../../include/openssl/aes.h |
| 103 | p12_asn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 111 | p12_asn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 112 | p12_asn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 104 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 113 | p12_asn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 105 | p12_asn.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 114 | p12_asn.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 106 | p12_asn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 115 | p12_asn.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 107 | p12_asn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 116 | p12_asn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 108 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 117 | p12_asn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 118 | p12_asn.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 119 | p12_asn.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 120 | p12_asn.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 121 | p12_asn.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 109 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 122 | p12_asn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 110 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 123 | p12_asn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 111 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 124 | p12_asn.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 125 | p12_asn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 126 | p12_asn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 112 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 127 | p12_asn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 113 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 128 | p12_asn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 114 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 129 | p12_asn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 130 | p12_asn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 115 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c | 131 | p12_asn.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_asn.c |
| 116 | p12_attr.o: ../../e_os.h ../../include/openssl/asn1.h | 132 | p12_attr.o: ../../e_os.h ../../include/openssl/aes.h |
| 117 | p12_attr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 133 | p12_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 118 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 134 | p12_attr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 119 | p12_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 135 | p12_attr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 120 | p12_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 136 | p12_attr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 121 | p12_attr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 137 | p12_attr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 138 | p12_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 139 | p12_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 140 | p12_attr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 141 | p12_attr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 142 | p12_attr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 122 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 143 | p12_attr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 123 | p12_attr.o: ../../include/openssl/opensslconf.h | 144 | p12_attr.o: ../../include/openssl/opensslconf.h |
| 124 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 145 | p12_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 146 | p12_attr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 147 | p12_attr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 148 | p12_attr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 126 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 149 | p12_attr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 127 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 150 | p12_attr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 128 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 151 | p12_attr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 152 | p12_attr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 129 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c | 153 | p12_attr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_attr.c |
| 130 | p12_crpt.o: ../../e_os.h ../../include/openssl/asn1.h | 154 | p12_crpt.o: ../../e_os.h ../../include/openssl/aes.h |
| 131 | p12_crpt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 155 | p12_crpt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 132 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 156 | p12_crpt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 133 | p12_crpt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 157 | p12_crpt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 134 | p12_crpt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 158 | p12_crpt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 135 | p12_crpt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 159 | p12_crpt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 160 | p12_crpt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 161 | p12_crpt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 162 | p12_crpt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 163 | p12_crpt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 164 | p12_crpt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 136 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 165 | p12_crpt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 137 | p12_crpt.o: ../../include/openssl/opensslconf.h | 166 | p12_crpt.o: ../../include/openssl/opensslconf.h |
| 138 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 167 | p12_crpt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 139 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 168 | p12_crpt.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 169 | p12_crpt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 170 | p12_crpt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 140 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 171 | p12_crpt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 141 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 172 | p12_crpt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 142 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 173 | p12_crpt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 174 | p12_crpt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 143 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c | 175 | p12_crpt.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_crpt.c |
| 144 | p12_crt.o: ../../e_os.h ../../include/openssl/asn1.h | 176 | p12_crt.o: ../../e_os.h ../../include/openssl/aes.h |
| 145 | p12_crt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 177 | p12_crt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 146 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 178 | p12_crt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 147 | p12_crt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 179 | p12_crt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 148 | p12_crt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 180 | p12_crt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 149 | p12_crt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 181 | p12_crt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 182 | p12_crt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 183 | p12_crt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 184 | p12_crt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 185 | p12_crt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 186 | p12_crt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 150 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 187 | p12_crt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 151 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 188 | p12_crt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 152 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 189 | p12_crt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 153 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 190 | p12_crt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 191 | p12_crt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 192 | p12_crt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 154 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 193 | p12_crt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 155 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 194 | p12_crt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 195 | p12_crt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 156 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 196 | p12_crt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 157 | p12_crt.o: ../cryptlib.h p12_crt.c | 197 | p12_crt.o: ../cryptlib.h p12_crt.c |
| 158 | p12_decr.o: ../../e_os.h ../../include/openssl/asn1.h | 198 | p12_decr.o: ../../e_os.h ../../include/openssl/aes.h |
| 159 | p12_decr.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 199 | p12_decr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 160 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 200 | p12_decr.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 161 | p12_decr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 201 | p12_decr.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 162 | p12_decr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 202 | p12_decr.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 163 | p12_decr.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 203 | p12_decr.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 204 | p12_decr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 205 | p12_decr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 206 | p12_decr.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 207 | p12_decr.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 208 | p12_decr.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 164 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 209 | p12_decr.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 165 | p12_decr.o: ../../include/openssl/opensslconf.h | 210 | p12_decr.o: ../../include/openssl/opensslconf.h |
| 166 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 211 | p12_decr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 167 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 212 | p12_decr.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 213 | p12_decr.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 214 | p12_decr.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 168 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 215 | p12_decr.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 169 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 216 | p12_decr.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 170 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 217 | p12_decr.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 218 | p12_decr.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 171 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c | 219 | p12_decr.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_decr.c |
| 172 | p12_init.o: ../../e_os.h ../../include/openssl/asn1.h | 220 | p12_init.o: ../../e_os.h ../../include/openssl/aes.h |
| 173 | p12_init.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 221 | p12_init.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 174 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 222 | p12_init.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 175 | p12_init.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 223 | p12_init.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 176 | p12_init.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 224 | p12_init.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 177 | p12_init.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 225 | p12_init.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 226 | p12_init.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 227 | p12_init.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 228 | p12_init.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 229 | p12_init.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 230 | p12_init.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 178 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 231 | p12_init.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 179 | p12_init.o: ../../include/openssl/opensslconf.h | 232 | p12_init.o: ../../include/openssl/opensslconf.h |
| 180 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 233 | p12_init.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 181 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 234 | p12_init.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 235 | p12_init.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 236 | p12_init.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 182 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 237 | p12_init.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 183 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 238 | p12_init.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 184 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 239 | p12_init.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 240 | p12_init.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 185 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c | 241 | p12_init.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_init.c |
| 186 | p12_key.o: ../../e_os.h ../../include/openssl/asn1.h | 242 | p12_key.o: ../../e_os.h ../../include/openssl/aes.h |
| 187 | p12_key.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 243 | p12_key.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 188 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 244 | p12_key.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 189 | p12_key.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 245 | p12_key.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 190 | p12_key.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 246 | p12_key.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 191 | p12_key.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 247 | p12_key.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 248 | p12_key.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 249 | p12_key.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 250 | p12_key.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 251 | p12_key.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 252 | p12_key.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 192 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 253 | p12_key.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 193 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 254 | p12_key.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 194 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 255 | p12_key.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 195 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 256 | p12_key.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 257 | p12_key.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 258 | p12_key.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 196 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 259 | p12_key.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 197 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 260 | p12_key.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 261 | p12_key.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 198 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 262 | p12_key.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 199 | p12_key.o: ../cryptlib.h p12_key.c | 263 | p12_key.o: ../cryptlib.h p12_key.c |
| 200 | p12_kiss.o: ../../e_os.h ../../include/openssl/asn1.h | 264 | p12_kiss.o: ../../e_os.h ../../include/openssl/aes.h |
| 201 | p12_kiss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 265 | p12_kiss.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 202 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 266 | p12_kiss.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 203 | p12_kiss.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 267 | p12_kiss.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 204 | p12_kiss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 268 | p12_kiss.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 205 | p12_kiss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 269 | p12_kiss.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 270 | p12_kiss.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 271 | p12_kiss.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 272 | p12_kiss.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 273 | p12_kiss.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 274 | p12_kiss.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 206 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 275 | p12_kiss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 207 | p12_kiss.o: ../../include/openssl/opensslconf.h | 276 | p12_kiss.o: ../../include/openssl/opensslconf.h |
| 208 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 277 | p12_kiss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 209 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 278 | p12_kiss.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 279 | p12_kiss.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 280 | p12_kiss.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 210 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 281 | p12_kiss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 211 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 282 | p12_kiss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 212 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 283 | p12_kiss.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 284 | p12_kiss.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 213 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c | 285 | p12_kiss.o: ../../include/openssl/x509_vfy.h ../cryptlib.h p12_kiss.c |
| 214 | p12_mutl.o: ../../e_os.h ../../include/openssl/asn1.h | 286 | p12_mutl.o: ../../e_os.h ../../include/openssl/aes.h |
| 215 | p12_mutl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 287 | p12_mutl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 216 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 288 | p12_mutl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 217 | p12_mutl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 289 | p12_mutl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 218 | p12_mutl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 290 | p12_mutl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 219 | p12_mutl.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h | 291 | p12_mutl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 220 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 292 | p12_mutl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 293 | p12_mutl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 294 | p12_mutl.o: ../../include/openssl/hmac.h ../../include/openssl/idea.h | ||
| 295 | p12_mutl.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 296 | p12_mutl.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 297 | p12_mutl.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 221 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 298 | p12_mutl.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 222 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 299 | p12_mutl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 223 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 300 | p12_mutl.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 224 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 301 | p12_mutl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 302 | p12_mutl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 303 | p12_mutl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 225 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 304 | p12_mutl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 226 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 305 | p12_mutl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 306 | p12_mutl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 227 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 307 | p12_mutl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 228 | p12_mutl.o: ../cryptlib.h p12_mutl.c | 308 | p12_mutl.o: ../cryptlib.h p12_mutl.c |
| 229 | p12_npas.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 309 | p12_npas.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 310 | p12_npas.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 230 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 311 | p12_npas.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 231 | p12_npas.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 312 | p12_npas.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 232 | p12_npas.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 313 | p12_npas.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 233 | p12_npas.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 314 | p12_npas.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 234 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 315 | p12_npas.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 316 | p12_npas.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 317 | p12_npas.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 318 | p12_npas.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 319 | p12_npas.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 235 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 320 | p12_npas.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 236 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 321 | p12_npas.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 237 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 322 | p12_npas.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 238 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 323 | p12_npas.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 324 | p12_npas.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 325 | p12_npas.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 239 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 326 | p12_npas.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 240 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 327 | p12_npas.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 241 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 328 | p12_npas.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 329 | p12_npas.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 242 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c | 330 | p12_npas.o: ../../include/openssl/x509_vfy.h p12_npas.c |
| 243 | p12_p8d.o: ../../e_os.h ../../include/openssl/asn1.h | 331 | p12_p8d.o: ../../e_os.h ../../include/openssl/aes.h |
| 244 | p12_p8d.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 332 | p12_p8d.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 245 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 333 | p12_p8d.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 246 | p12_p8d.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 334 | p12_p8d.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 247 | p12_p8d.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 335 | p12_p8d.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 248 | p12_p8d.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 336 | p12_p8d.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 337 | p12_p8d.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 338 | p12_p8d.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 339 | p12_p8d.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 340 | p12_p8d.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 341 | p12_p8d.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 249 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 342 | p12_p8d.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 250 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 343 | p12_p8d.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 251 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 344 | p12_p8d.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 252 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 345 | p12_p8d.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 346 | p12_p8d.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 347 | p12_p8d.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 253 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 348 | p12_p8d.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 254 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 349 | p12_p8d.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 350 | p12_p8d.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 255 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 351 | p12_p8d.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 256 | p12_p8d.o: ../cryptlib.h p12_p8d.c | 352 | p12_p8d.o: ../cryptlib.h p12_p8d.c |
| 257 | p12_p8e.o: ../../e_os.h ../../include/openssl/asn1.h | 353 | p12_p8e.o: ../../e_os.h ../../include/openssl/aes.h |
| 258 | p12_p8e.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 354 | p12_p8e.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 259 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 355 | p12_p8e.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 260 | p12_p8e.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 356 | p12_p8e.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 261 | p12_p8e.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 357 | p12_p8e.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 262 | p12_p8e.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 358 | p12_p8e.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 359 | p12_p8e.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 360 | p12_p8e.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 361 | p12_p8e.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 362 | p12_p8e.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 363 | p12_p8e.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 263 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 364 | p12_p8e.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 264 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 365 | p12_p8e.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 265 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 366 | p12_p8e.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 266 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 367 | p12_p8e.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 368 | p12_p8e.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 369 | p12_p8e.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 267 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 370 | p12_p8e.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 268 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 371 | p12_p8e.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 372 | p12_p8e.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 269 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 373 | p12_p8e.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 270 | p12_p8e.o: ../cryptlib.h p12_p8e.c | 374 | p12_p8e.o: ../cryptlib.h p12_p8e.c |
| 271 | p12_utl.o: ../../e_os.h ../../include/openssl/asn1.h | 375 | p12_utl.o: ../../e_os.h ../../include/openssl/aes.h |
| 272 | p12_utl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 376 | p12_utl.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 273 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 377 | p12_utl.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 274 | p12_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 378 | p12_utl.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 275 | p12_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 379 | p12_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 276 | p12_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 380 | p12_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 381 | p12_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 382 | p12_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 383 | p12_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 384 | p12_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 385 | p12_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 277 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 386 | p12_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 278 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 387 | p12_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 279 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h | 388 | p12_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs12.h |
| 280 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 389 | p12_utl.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 390 | p12_utl.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 391 | p12_utl.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 281 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 392 | p12_utl.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 282 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 393 | p12_utl.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 394 | p12_utl.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 283 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 395 | p12_utl.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 284 | p12_utl.o: ../cryptlib.h p12_utl.c | 396 | p12_utl.o: ../cryptlib.h p12_utl.c |
| 285 | pk12err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 397 | pk12err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 398 | pk12err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 286 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 399 | pk12err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 287 | pk12err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 400 | pk12err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 288 | pk12err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 401 | pk12err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 289 | pk12err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 402 | pk12err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 290 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 403 | pk12err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 404 | pk12err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 405 | pk12err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 406 | pk12err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 407 | pk12err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 291 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 408 | pk12err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 292 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 409 | pk12err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 293 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h | 410 | pk12err.o: ../../include/openssl/pkcs12.h ../../include/openssl/pkcs7.h |
| 411 | pk12err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 412 | pk12err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 294 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 413 | pk12err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 295 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 414 | pk12err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 296 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 415 | pk12err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 416 | pk12err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 297 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c | 417 | pk12err.o: ../../include/openssl/x509_vfy.h pk12err.c |
diff --git a/src/lib/libssl/src/crypto/pkcs12/pkcs12.h b/src/lib/libssl/src/crypto/pkcs12/pkcs12.h index 1786b6d4f3..dd338f266c 100644 --- a/src/lib/libssl/src/crypto/pkcs12/pkcs12.h +++ b/src/lib/libssl/src/crypto/pkcs12/pkcs12.h | |||
| @@ -156,8 +156,8 @@ union { | |||
| 156 | #define M_PKCS12_decrypt_skey PKCS12_decrypt_skey | 156 | #define M_PKCS12_decrypt_skey PKCS12_decrypt_skey |
| 157 | #define M_PKCS8_decrypt PKCS8_decrypt | 157 | #define M_PKCS8_decrypt PKCS8_decrypt |
| 158 | 158 | ||
| 159 | #define M_PKCS12_bag_type(bag) OBJ_obj2nid(bag->type) | 159 | #define M_PKCS12_bag_type(bg) OBJ_obj2nid((bg)->type) |
| 160 | #define M_PKCS12_cert_bag_type(bag) OBJ_obj2nid(bag->value.bag->type) | 160 | #define M_PKCS12_cert_bag_type(bg) OBJ_obj2nid((bg)->value.bag->type) |
| 161 | #define M_PKCS12_crl_bag_type M_PKCS12_cert_bag_type | 161 | #define M_PKCS12_crl_bag_type M_PKCS12_cert_bag_type |
| 162 | 162 | ||
| 163 | #define PKCS12_get_attr(bag, attr_nid) \ | 163 | #define PKCS12_get_attr(bag, attr_nid) \ |
diff --git a/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl b/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl index d2afd977e1..1302469def 100644 --- a/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl +++ b/src/lib/libssl/src/crypto/pkcs7/Makefile.ssl | |||
| @@ -89,7 +89,7 @@ lint: | |||
| 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 89 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 90 | 90 | ||
| 91 | depend: | 91 | depend: |
| 92 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 92 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 93 | 93 | ||
| 94 | dclean: | 94 | dclean: |
| 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 95 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -100,89 +100,137 @@ clean: | |||
| 100 | 100 | ||
| 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 101 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 102 | 102 | ||
| 103 | pk7_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 103 | pk7_asn1.o: ../../e_os.h ../../include/openssl/aes.h |
| 104 | pk7_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 104 | pk7_asn1.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 105 | pk7_asn1.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 105 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 106 | pk7_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 106 | pk7_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 107 | pk7_asn1.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 107 | pk7_asn1.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 108 | pk7_asn1.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 108 | pk7_asn1.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 109 | pk7_asn1.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 109 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 110 | pk7_asn1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 111 | pk7_asn1.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 112 | pk7_asn1.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 113 | pk7_asn1.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 114 | pk7_asn1.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 110 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 115 | pk7_asn1.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 111 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 116 | pk7_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 112 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 117 | pk7_asn1.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 118 | pk7_asn1.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 119 | pk7_asn1.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 113 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 120 | pk7_asn1.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 114 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 121 | pk7_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 122 | pk7_asn1.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 115 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 123 | pk7_asn1.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 116 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c | 124 | pk7_asn1.o: ../cryptlib.h pk7_asn1.c |
| 117 | pk7_attr.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 125 | pk7_attr.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 126 | pk7_attr.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 118 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 127 | pk7_attr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 119 | pk7_attr.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 128 | pk7_attr.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 120 | pk7_attr.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 129 | pk7_attr.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 121 | pk7_attr.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 130 | pk7_attr.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 122 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 131 | pk7_attr.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 132 | pk7_attr.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 133 | pk7_attr.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 134 | pk7_attr.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 135 | pk7_attr.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 123 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 136 | pk7_attr.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 124 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 137 | pk7_attr.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 125 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 138 | pk7_attr.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 126 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 139 | pk7_attr.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 140 | pk7_attr.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 141 | pk7_attr.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 127 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 142 | pk7_attr.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 128 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 143 | pk7_attr.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 144 | pk7_attr.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 129 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 145 | pk7_attr.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 130 | pk7_attr.o: pk7_attr.c | 146 | pk7_attr.o: pk7_attr.c |
| 131 | pk7_doit.o: ../../e_os.h ../../include/openssl/asn1.h | 147 | pk7_doit.o: ../../e_os.h ../../include/openssl/aes.h |
| 132 | pk7_doit.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 148 | pk7_doit.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 133 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 149 | pk7_doit.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 134 | pk7_doit.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 150 | pk7_doit.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 135 | pk7_doit.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 151 | pk7_doit.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 136 | pk7_doit.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 152 | pk7_doit.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 137 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 153 | pk7_doit.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 154 | pk7_doit.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 155 | pk7_doit.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 156 | pk7_doit.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 157 | pk7_doit.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 158 | pk7_doit.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 138 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 159 | pk7_doit.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 139 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 160 | pk7_doit.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 140 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 161 | pk7_doit.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 162 | pk7_doit.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 163 | pk7_doit.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 141 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 164 | pk7_doit.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 142 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 165 | pk7_doit.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 143 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 166 | pk7_doit.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 167 | pk7_doit.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 144 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 168 | pk7_doit.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 145 | pk7_doit.o: ../cryptlib.h pk7_doit.c | 169 | pk7_doit.o: ../cryptlib.h pk7_doit.c |
| 146 | pk7_lib.o: ../../e_os.h ../../include/openssl/asn1.h | 170 | pk7_lib.o: ../../e_os.h ../../include/openssl/aes.h |
| 147 | pk7_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 171 | pk7_lib.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 148 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 172 | pk7_lib.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 149 | pk7_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 173 | pk7_lib.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 150 | pk7_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 174 | pk7_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 151 | pk7_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 175 | pk7_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 176 | pk7_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 177 | pk7_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 178 | pk7_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 179 | pk7_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 180 | pk7_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 152 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 181 | pk7_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 153 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 182 | pk7_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 154 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 183 | pk7_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 184 | pk7_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 185 | pk7_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 155 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 186 | pk7_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 156 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 187 | pk7_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 157 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 188 | pk7_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 189 | pk7_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 158 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c | 190 | pk7_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_lib.c |
| 159 | pk7_mime.o: ../../e_os.h ../../include/openssl/asn1.h | 191 | pk7_mime.o: ../../e_os.h ../../include/openssl/aes.h |
| 160 | pk7_mime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 192 | pk7_mime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 161 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 193 | pk7_mime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 162 | pk7_mime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 194 | pk7_mime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 163 | pk7_mime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 195 | pk7_mime.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 164 | pk7_mime.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 196 | pk7_mime.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 197 | pk7_mime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 198 | pk7_mime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 199 | pk7_mime.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 200 | pk7_mime.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 201 | pk7_mime.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 165 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 202 | pk7_mime.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 166 | pk7_mime.o: ../../include/openssl/opensslconf.h | 203 | pk7_mime.o: ../../include/openssl/opensslconf.h |
| 167 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 204 | pk7_mime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 168 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 205 | pk7_mime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 206 | pk7_mime.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 207 | pk7_mime.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 169 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 208 | pk7_mime.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 170 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 209 | pk7_mime.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 171 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 210 | pk7_mime.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 211 | pk7_mime.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 172 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c | 212 | pk7_mime.o: ../../include/openssl/x509_vfy.h ../cryptlib.h pk7_mime.c |
| 173 | pk7_smime.o: ../../e_os.h ../../include/openssl/asn1.h | 213 | pk7_smime.o: ../../e_os.h ../../include/openssl/aes.h |
| 174 | pk7_smime.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 214 | pk7_smime.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 175 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 215 | pk7_smime.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 176 | pk7_smime.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 216 | pk7_smime.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 177 | pk7_smime.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 217 | pk7_smime.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 178 | pk7_smime.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 218 | pk7_smime.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 179 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 219 | pk7_smime.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 220 | pk7_smime.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 221 | pk7_smime.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 222 | pk7_smime.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 223 | pk7_smime.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 224 | pk7_smime.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 180 | pk7_smime.o: ../../include/openssl/objects.h | 225 | pk7_smime.o: ../../include/openssl/objects.h |
| 181 | pk7_smime.o: ../../include/openssl/opensslconf.h | 226 | pk7_smime.o: ../../include/openssl/opensslconf.h |
| 182 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 227 | pk7_smime.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 183 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 228 | pk7_smime.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 229 | pk7_smime.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 230 | pk7_smime.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 184 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 231 | pk7_smime.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 185 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 232 | pk7_smime.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 233 | pk7_smime.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 186 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 234 | pk7_smime.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 187 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c | 235 | pk7_smime.o: ../../include/openssl/x509v3.h ../cryptlib.h pk7_smime.c |
| 188 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 236 | pkcs7err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
diff --git a/src/lib/libssl/src/crypto/pkcs7/verify.c b/src/lib/libssl/src/crypto/pkcs7/verify.c index 5f7afe8933..b40f26032e 100644 --- a/src/lib/libssl/src/crypto/pkcs7/verify.c +++ b/src/lib/libssl/src/crypto/pkcs7/verify.c | |||
| @@ -179,10 +179,11 @@ char *argv[]; | |||
| 179 | { | 179 | { |
| 180 | ASN1_UTCTIME *tm; | 180 | ASN1_UTCTIME *tm; |
| 181 | char *str1,*str2; | 181 | char *str1,*str2; |
| 182 | int rc; | ||
| 182 | 183 | ||
| 183 | si=sk_PKCS7_SIGNER_INFO_value(sk,i); | 184 | si=sk_PKCS7_SIGNER_INFO_value(sk,i); |
| 184 | i=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si); | 185 | rc=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si); |
| 185 | if (i <= 0) | 186 | if (rc <= 0) |
| 186 | goto err; | 187 | goto err; |
| 187 | printf("signer info\n"); | 188 | printf("signer info\n"); |
| 188 | if ((tm=get_signed_time(si)) != NULL) | 189 | if ((tm=get_signed_time(si)) != NULL) |
diff --git a/src/lib/libssl/src/crypto/rand/Makefile.ssl b/src/lib/libssl/src/crypto/rand/Makefile.ssl index 4d73d4f7e8..73b5f568e8 100644 --- a/src/lib/libssl/src/crypto/rand/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rand/Makefile.ssl | |||
| @@ -70,7 +70,7 @@ lint: | |||
| 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 70 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 71 | 71 | ||
| 72 | depend: | 72 | depend: |
| 73 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 73 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 74 | 74 | ||
| 75 | dclean: | 75 | dclean: |
| 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 76 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -81,16 +81,26 @@ clean: | |||
| 81 | 81 | ||
| 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 82 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 83 | 83 | ||
| 84 | md_rand.o: ../../e_os.h ../../include/openssl/asn1.h | 84 | md_rand.o: ../../e_os.h ../../include/openssl/aes.h |
| 85 | md_rand.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 85 | md_rand.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 86 | md_rand.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 86 | md_rand.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 87 | md_rand.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 87 | md_rand.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 88 | md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 88 | md_rand.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 89 | md_rand.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 90 | md_rand.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 91 | md_rand.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 92 | md_rand.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 93 | md_rand.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 94 | md_rand.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 89 | md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 95 | md_rand.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 90 | md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 96 | md_rand.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 91 | md_rand.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 97 | md_rand.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 92 | md_rand.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 98 | md_rand.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 93 | md_rand.o: ../../include/openssl/symhacks.h md_rand.c rand_lcl.h | 99 | md_rand.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 100 | md_rand.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 101 | md_rand.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 102 | md_rand.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 103 | md_rand.o: md_rand.c rand_lcl.h | ||
| 94 | rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 104 | rand_egd.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
| 95 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | 105 | rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 96 | rand_egd.o: rand_egd.c | 106 | rand_egd.o: rand_egd.c |
| @@ -113,42 +123,69 @@ rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | |||
| 113 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 123 | rand_lib.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 114 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 124 | rand_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 115 | rand_lib.o: ../cryptlib.h rand_lib.c | 125 | rand_lib.o: ../cryptlib.h rand_lib.c |
| 116 | rand_os2.o: ../../e_os.h ../../include/openssl/asn1.h | 126 | rand_os2.o: ../../e_os.h ../../include/openssl/aes.h |
| 117 | rand_os2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 127 | rand_os2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 118 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 128 | rand_os2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 119 | rand_os2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 129 | rand_os2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 120 | rand_os2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 130 | rand_os2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 131 | rand_os2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 132 | rand_os2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 133 | rand_os2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 134 | rand_os2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 135 | rand_os2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 136 | rand_os2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 121 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 137 | rand_os2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 122 | rand_os2.o: ../../include/openssl/opensslconf.h | 138 | rand_os2.o: ../../include/openssl/opensslconf.h |
| 123 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 139 | rand_os2.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 124 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 140 | rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 125 | rand_os2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 141 | rand_os2.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 126 | rand_os2.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | 142 | rand_os2.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 127 | rand_os2.o: rand_os2.c | 143 | rand_os2.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 128 | rand_unix.o: ../../e_os.h ../../include/openssl/asn1.h | 144 | rand_os2.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 129 | rand_unix.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 145 | rand_os2.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 130 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 146 | rand_os2.o: ../cryptlib.h rand_lcl.h rand_os2.c |
| 131 | rand_unix.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 147 | rand_unix.o: ../../e_os.h ../../include/openssl/aes.h |
| 132 | rand_unix.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 148 | rand_unix.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | rand_unix.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 150 | rand_unix.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 151 | rand_unix.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 152 | rand_unix.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 153 | rand_unix.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 154 | rand_unix.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 155 | rand_unix.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 156 | rand_unix.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 157 | rand_unix.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 133 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 158 | rand_unix.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 134 | rand_unix.o: ../../include/openssl/opensslconf.h | 159 | rand_unix.o: ../../include/openssl/opensslconf.h |
| 135 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 160 | rand_unix.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 136 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 161 | rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 137 | rand_unix.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 162 | rand_unix.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 138 | rand_unix.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | 163 | rand_unix.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 139 | rand_unix.o: rand_unix.c | 164 | rand_unix.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 140 | rand_win.o: ../../e_os.h ../../include/openssl/asn1.h | 165 | rand_unix.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 141 | rand_win.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 166 | rand_unix.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h |
| 142 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 167 | rand_unix.o: ../cryptlib.h rand_lcl.h rand_unix.c |
| 143 | rand_win.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 168 | rand_win.o: ../../e_os.h ../../include/openssl/aes.h |
| 144 | rand_win.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 169 | rand_win.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 170 | rand_win.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 171 | rand_win.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 172 | rand_win.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 173 | rand_win.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 174 | rand_win.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 175 | rand_win.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 176 | rand_win.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 177 | rand_win.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 178 | rand_win.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 145 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 179 | rand_win.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 146 | rand_win.o: ../../include/openssl/opensslconf.h | 180 | rand_win.o: ../../include/openssl/opensslconf.h |
| 147 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 181 | rand_win.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 148 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h | 182 | rand_win.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 149 | rand_win.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 183 | rand_win.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 150 | rand_win.o: ../../include/openssl/symhacks.h ../cryptlib.h rand_lcl.h | 184 | rand_win.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 151 | rand_win.o: rand_win.c | 185 | rand_win.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 186 | rand_win.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 187 | rand_win.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 188 | rand_win.o: ../cryptlib.h rand_lcl.h rand_win.c | ||
| 152 | randfile.o: ../../e_os.h ../../include/openssl/crypto.h | 189 | randfile.o: ../../e_os.h ../../include/openssl/crypto.h |
| 153 | randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h | 190 | randfile.o: ../../include/openssl/e_os2.h ../../include/openssl/opensslconf.h |
| 154 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 191 | randfile.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
diff --git a/src/lib/libssl/src/crypto/rand/rand.h b/src/lib/libssl/src/crypto/rand/rand.h index e17aa7a9f7..66e39991ec 100644 --- a/src/lib/libssl/src/crypto/rand/rand.h +++ b/src/lib/libssl/src/crypto/rand/rand.h | |||
| @@ -61,6 +61,11 @@ | |||
| 61 | 61 | ||
| 62 | #include <stdlib.h> | 62 | #include <stdlib.h> |
| 63 | #include <openssl/ossl_typ.h> | 63 | #include <openssl/ossl_typ.h> |
| 64 | #include <openssl/e_os2.h> | ||
| 65 | |||
| 66 | #if defined(OPENSSL_SYS_WINDOWS) | ||
| 67 | #include <windows.h> | ||
| 68 | #endif | ||
| 64 | 69 | ||
| 65 | #ifdef __cplusplus | 70 | #ifdef __cplusplus |
| 66 | extern "C" { | 71 | extern "C" { |
diff --git a/src/lib/libssl/src/crypto/rand/rand_egd.c b/src/lib/libssl/src/crypto/rand/rand_egd.c index 97ed12cf67..abc3ac27d5 100644 --- a/src/lib/libssl/src/crypto/rand/rand_egd.c +++ b/src/lib/libssl/src/crypto/rand/rand_egd.c | |||
| @@ -94,7 +94,7 @@ | |||
| 94 | * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255. | 94 | * RAND_egd() is a wrapper for RAND_egd_bytes() with numbytes=255. |
| 95 | */ | 95 | */ |
| 96 | 96 | ||
| 97 | #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) | 97 | #if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VMS) || defined(__DJGPP__) |
| 98 | int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) | 98 | int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes) |
| 99 | { | 99 | { |
| 100 | return(-1); | 100 | return(-1); |
diff --git a/src/lib/libssl/src/crypto/rand/rand_unix.c b/src/lib/libssl/src/crypto/rand/rand_unix.c index 0b29235130..a7f66c6dfe 100644 --- a/src/lib/libssl/src/crypto/rand/rand_unix.c +++ b/src/lib/libssl/src/crypto/rand/rand_unix.c | |||
| @@ -109,6 +109,8 @@ | |||
| 109 | * | 109 | * |
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #define USE_SOCKETS | ||
| 113 | #include "e_os.h" | ||
| 112 | #include "cryptlib.h" | 114 | #include "cryptlib.h" |
| 113 | #include <openssl/rand.h> | 115 | #include <openssl/rand.h> |
| 114 | #include "rand_lcl.h" | 116 | #include "rand_lcl.h" |
diff --git a/src/lib/libssl/src/crypto/rand/randfile.c b/src/lib/libssl/src/crypto/rand/randfile.c index 1c3e68ef31..215c2616eb 100644 --- a/src/lib/libssl/src/crypto/rand/randfile.c +++ b/src/lib/libssl/src/crypto/rand/randfile.c | |||
| @@ -144,7 +144,7 @@ int RAND_write_file(const char *file) | |||
| 144 | FILE *out = NULL; | 144 | FILE *out = NULL; |
| 145 | int n; | 145 | int n; |
| 146 | struct stat sb; | 146 | struct stat sb; |
| 147 | 147 | ||
| 148 | i=stat(file,&sb); | 148 | i=stat(file,&sb); |
| 149 | if (i != -1) { | 149 | if (i != -1) { |
| 150 | if (sb.st_mode & (S_IFBLK | S_IFCHR)) { | 150 | if (sb.st_mode & (S_IFBLK | S_IFCHR)) { |
diff --git a/src/lib/libssl/src/crypto/rc2/Makefile.ssl b/src/lib/libssl/src/crypto/rc2/Makefile.ssl index 6aa921c863..88e41bb98e 100644 --- a/src/lib/libssl/src/crypto/rc2/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rc2/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/rc4/Makefile.ssl b/src/lib/libssl/src/crypto/rc4/Makefile.ssl index c779728af8..6e5bbf9894 100644 --- a/src/lib/libssl/src/crypto/rc4/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rc4/Makefile.ssl | |||
| @@ -97,7 +97,7 @@ lint: | |||
| 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 97 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 98 | 98 | ||
| 99 | depend: | 99 | depend: |
| 100 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 100 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 101 | 101 | ||
| 102 | dclean: | 102 | dclean: |
| 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 103 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/rc5/Makefile.ssl b/src/lib/libssl/src/crypto/rc5/Makefile.ssl index 01d08c7d43..ff31ab47a9 100644 --- a/src/lib/libssl/src/crypto/rc5/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rc5/Makefile.ssl | |||
| @@ -94,7 +94,7 @@ lint: | |||
| 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 94 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 95 | 95 | ||
| 96 | depend: | 96 | depend: |
| 97 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 97 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 98 | 98 | ||
| 99 | dclean: | 99 | dclean: |
| 100 | $(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 |
diff --git a/src/lib/libssl/src/crypto/rijndael/Makefile.ssl b/src/lib/libssl/src/crypto/rijndael/Makefile.ssl index 7f57f174fd..6b098203b9 100644 --- a/src/lib/libssl/src/crypto/rijndael/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rijndael/Makefile.ssl | |||
| @@ -75,7 +75,7 @@ lint: | |||
| 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 75 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 76 | 76 | ||
| 77 | depend: | 77 | depend: |
| 78 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 78 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 79 | 79 | ||
| 80 | dclean: | 80 | dclean: |
| 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 81 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/ripemd/Makefile.ssl b/src/lib/libssl/src/crypto/ripemd/Makefile.ssl index a58662a69f..7ab5d2fc9e 100644 --- a/src/lib/libssl/src/crypto/ripemd/Makefile.ssl +++ b/src/lib/libssl/src/crypto/ripemd/Makefile.ssl | |||
| @@ -92,7 +92,7 @@ lint: | |||
| 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 93 | 93 | ||
| 94 | depend: | 94 | depend: |
| 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 96 | 96 | ||
| 97 | dclean: | 97 | dclean: |
| 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/rsa/Makefile.ssl b/src/lib/libssl/src/crypto/rsa/Makefile.ssl index ddd138acd2..8c44b7f142 100644 --- a/src/lib/libssl/src/crypto/rsa/Makefile.ssl +++ b/src/lib/libssl/src/crypto/rsa/Makefile.ssl | |||
| @@ -72,7 +72,7 @@ lint: | |||
| 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 73 | 73 | ||
| 74 | depend: | 74 | depend: |
| 75 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 76 | 76 | ||
| 77 | dclean: | 77 | dclean: |
| 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -158,17 +158,26 @@ rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 158 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 159 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 160 | 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 |
| 161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h | 161 | rsa_oaep.o: ../../e_os.h ../../include/openssl/aes.h |
| 162 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 162 | rsa_oaep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 163 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 163 | rsa_oaep.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 164 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 164 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 165 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 165 | rsa_oaep.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 166 | rsa_oaep.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 167 | rsa_oaep.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 168 | rsa_oaep.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 169 | rsa_oaep.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 171 | rsa_oaep.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 166 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 172 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 167 | rsa_oaep.o: ../../include/openssl/opensslconf.h | 173 | rsa_oaep.o: ../../include/openssl/opensslconf.h |
| 168 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 174 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 169 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 175 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h |
| 176 | rsa_oaep.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 177 | rsa_oaep.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 178 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 171 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 179 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 180 | rsa_oaep.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 172 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | 181 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c |
| 173 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | 182 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h |
| 174 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 183 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| @@ -179,35 +188,50 @@ rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 179 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 188 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 180 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 189 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 181 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | 190 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c |
| 182 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h | 191 | rsa_saos.o: ../../e_os.h ../../include/openssl/aes.h |
| 183 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 192 | rsa_saos.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 184 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 193 | rsa_saos.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 185 | rsa_saos.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 194 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 186 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 195 | rsa_saos.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 187 | rsa_saos.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 196 | rsa_saos.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 197 | rsa_saos.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 198 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 199 | rsa_saos.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 200 | rsa_saos.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 201 | rsa_saos.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 188 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 202 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 189 | rsa_saos.o: ../../include/openssl/opensslconf.h | 203 | rsa_saos.o: ../../include/openssl/opensslconf.h |
| 190 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 204 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 191 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 205 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 206 | rsa_saos.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 207 | rsa_saos.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 192 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 208 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 193 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 209 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 210 | rsa_saos.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 194 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 211 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 195 | rsa_saos.o: ../cryptlib.h rsa_saos.c | 212 | rsa_saos.o: ../cryptlib.h rsa_saos.c |
| 196 | rsa_sign.o: ../../e_os.h ../../include/openssl/asn1.h | 213 | rsa_sign.o: ../../e_os.h ../../include/openssl/aes.h |
| 197 | rsa_sign.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 214 | rsa_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 198 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 215 | rsa_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 199 | rsa_sign.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 216 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 200 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | 217 | rsa_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 201 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 218 | rsa_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 202 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 219 | rsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 220 | rsa_sign.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 221 | rsa_sign.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 222 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 223 | rsa_sign.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 224 | rsa_sign.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 203 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 225 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 204 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 226 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 205 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 227 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h |
| 228 | rsa_sign.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 229 | rsa_sign.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 206 | rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 230 | rsa_sign.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 207 | rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 231 | rsa_sign.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 208 | rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h | 232 | rsa_sign.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 209 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 233 | rsa_sign.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h |
| 210 | rsa_sign.o: ../cryptlib.h rsa_sign.c | 234 | rsa_sign.o: ../../include/openssl/x509_vfy.h ../cryptlib.h rsa_sign.c |
| 211 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | 235 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h |
| 212 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 236 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 213 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 237 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
diff --git a/src/lib/libssl/src/crypto/rsa/rsa.h b/src/lib/libssl/src/crypto/rsa/rsa.h index 030a6c88e5..98b3bd7cc5 100644 --- a/src/lib/libssl/src/crypto/rsa/rsa.h +++ b/src/lib/libssl/src/crypto/rsa/rsa.h | |||
| @@ -276,6 +276,9 @@ int RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | |||
| 276 | int RSA_set_ex_data(RSA *r,int idx,void *arg); | 276 | int RSA_set_ex_data(RSA *r,int idx,void *arg); |
| 277 | void *RSA_get_ex_data(const RSA *r, int idx); | 277 | void *RSA_get_ex_data(const RSA *r, int idx); |
| 278 | 278 | ||
| 279 | RSA *RSAPublicKey_dup(RSA *rsa); | ||
| 280 | RSA *RSAPrivateKey_dup(RSA *rsa); | ||
| 281 | |||
| 279 | /* BEGIN ERROR CODES */ | 282 | /* BEGIN ERROR CODES */ |
| 280 | /* The following lines are auto generated by the script mkerr.pl. Any changes | 283 | /* The following lines are auto generated by the script mkerr.pl. Any changes |
| 281 | * made after this point may be overwritten when the script is next run. | 284 | * made after this point may be overwritten when the script is next run. |
diff --git a/src/lib/libssl/src/crypto/sha/Makefile.ssl b/src/lib/libssl/src/crypto/sha/Makefile.ssl index 482ff192b1..0aa678d6f4 100644 --- a/src/lib/libssl/src/crypto/sha/Makefile.ssl +++ b/src/lib/libssl/src/crypto/sha/Makefile.ssl | |||
| @@ -92,7 +92,7 @@ lint: | |||
| 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 92 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 93 | 93 | ||
| 94 | depend: | 94 | depend: |
| 95 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 95 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 96 | 96 | ||
| 97 | dclean: | 97 | dclean: |
| 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 98 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/stack/Makefile.ssl b/src/lib/libssl/src/crypto/stack/Makefile.ssl index e04066dcd6..8574739c76 100644 --- a/src/lib/libssl/src/crypto/stack/Makefile.ssl +++ b/src/lib/libssl/src/crypto/stack/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/symhacks.h b/src/lib/libssl/src/crypto/symhacks.h index de0f452b47..774162fec9 100644 --- a/src/lib/libssl/src/crypto/symhacks.h +++ b/src/lib/libssl/src/crypto/symhacks.h | |||
| @@ -247,7 +247,7 @@ | |||
| 247 | 247 | ||
| 248 | 248 | ||
| 249 | /* Case insensiteve linking causes problems.... */ | 249 | /* Case insensiteve linking causes problems.... */ |
| 250 | #if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_VMS) | 250 | #if defined(OPENSSL_SYS_WIN16) || defined(OPENSSL_SYS_VMS) || defined(OPENSSL_SYS_OS2) |
| 251 | #undef ERR_load_CRYPTO_strings | 251 | #undef ERR_load_CRYPTO_strings |
| 252 | #define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings | 252 | #define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings |
| 253 | #undef OCSP_crlID_new | 253 | #undef OCSP_crlID_new |
diff --git a/src/lib/libssl/src/crypto/txt_db/Makefile.ssl b/src/lib/libssl/src/crypto/txt_db/Makefile.ssl index 8e697fc863..61ff361348 100644 --- a/src/lib/libssl/src/crypto/txt_db/Makefile.ssl +++ b/src/lib/libssl/src/crypto/txt_db/Makefile.ssl | |||
| @@ -68,7 +68,7 @@ lint: | |||
| 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 68 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 69 | 69 | ||
| 70 | depend: | 70 | depend: |
| 71 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 71 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 72 | 72 | ||
| 73 | dclean: | 73 | dclean: |
| 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 74 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/ui/Makefile.ssl b/src/lib/libssl/src/crypto/ui/Makefile.ssl index 7de1d0022b..57b2e38335 100644 --- a/src/lib/libssl/src/crypto/ui/Makefile.ssl +++ b/src/lib/libssl/src/crypto/ui/Makefile.ssl | |||
| @@ -72,7 +72,7 @@ lint: | |||
| 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 73 | 73 | ||
| 74 | depend: | 74 | depend: |
| 75 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 75 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 76 | 76 | ||
| 77 | dclean: | 77 | dclean: |
| 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
diff --git a/src/lib/libssl/src/crypto/ui/ui_openssl.c b/src/lib/libssl/src/crypto/ui/ui_openssl.c index 821dd29eaa..f47ed31cb0 100644 --- a/src/lib/libssl/src/crypto/ui/ui_openssl.c +++ b/src/lib/libssl/src/crypto/ui/ui_openssl.c | |||
| @@ -269,7 +269,7 @@ static long tty_orig[3], tty_new[3]; /* XXX Is there any guarantee that this w | |||
| 269 | static long status; | 269 | static long status; |
| 270 | static unsigned short channel = 0; | 270 | static unsigned short channel = 0; |
| 271 | #else | 271 | #else |
| 272 | #ifndef OPENSSL_SYS_MSDOS | 272 | #if !defined(OPENSSL_SYS_MSDOS) || defined(__DJGPP__) |
| 273 | static TTY_STRUCT tty_orig,tty_new; | 273 | static TTY_STRUCT tty_orig,tty_new; |
| 274 | #endif | 274 | #endif |
| 275 | #endif | 275 | #endif |
diff --git a/src/lib/libssl/src/crypto/ui/ui_util.c b/src/lib/libssl/src/crypto/ui/ui_util.c index 7c6f7d3a73..f05573df33 100644 --- a/src/lib/libssl/src/crypto/ui/ui_util.c +++ b/src/lib/libssl/src/crypto/ui/ui_util.c | |||
| @@ -71,12 +71,15 @@ int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) | |||
| 71 | int ok = 0; | 71 | int ok = 0; |
| 72 | UI *ui; | 72 | UI *ui; |
| 73 | 73 | ||
| 74 | if (size < 1) | ||
| 75 | return -1; | ||
| 76 | |||
| 74 | ui = UI_new(); | 77 | ui = UI_new(); |
| 75 | if (ui) | 78 | if (ui) |
| 76 | { | 79 | { |
| 77 | ok = UI_add_input_string(ui,prompt,0,buf,0,BUFSIZ-1); | 80 | ok = UI_add_input_string(ui,prompt,0,buf,0,size-1); |
| 78 | if (ok == 0 && verify) | 81 | if (ok == 0 && verify) |
| 79 | ok = UI_add_verify_string(ui,prompt,0,buff,0,BUFSIZ-1, | 82 | ok = UI_add_verify_string(ui,prompt,0,buff,0,size-1, |
| 80 | buf); | 83 | buf); |
| 81 | if (ok == 0) | 84 | if (ok == 0) |
| 82 | ok=UI_process(ui); | 85 | ok=UI_process(ui); |
diff --git a/src/lib/libssl/src/crypto/x509/Makefile.ssl b/src/lib/libssl/src/crypto/x509/Makefile.ssl index 2df6ddcd34..ee53294699 100644 --- a/src/lib/libssl/src/crypto/x509/Makefile.ssl +++ b/src/lib/libssl/src/crypto/x509/Makefile.ssl | |||
| @@ -78,7 +78,7 @@ lint: | |||
| 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 78 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 79 | 79 | ||
| 80 | depend: | 80 | depend: |
| 81 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 81 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 82 | 82 | ||
| 83 | dclean: | 83 | dclean: |
| 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 84 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -89,322 +89,506 @@ clean: | |||
| 89 | 89 | ||
| 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 90 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 91 | 91 | ||
| 92 | by_dir.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 92 | by_dir.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 93 | by_dir.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 93 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 94 | by_dir.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 94 | by_dir.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 95 | by_dir.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 95 | by_dir.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 96 | by_dir.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 96 | by_dir.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 97 | by_dir.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 97 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 98 | by_dir.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 99 | by_dir.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 100 | by_dir.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 101 | by_dir.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 102 | by_dir.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 98 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 103 | by_dir.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 99 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 104 | by_dir.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 100 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 105 | by_dir.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 106 | by_dir.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 107 | by_dir.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 101 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 108 | by_dir.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 102 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 109 | by_dir.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 110 | by_dir.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 103 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 111 | by_dir.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 104 | by_dir.o: ../cryptlib.h by_dir.c | 112 | by_dir.o: ../cryptlib.h by_dir.c |
| 105 | by_file.o: ../../e_os.h ../../include/openssl/asn1.h | 113 | by_file.o: ../../e_os.h ../../include/openssl/aes.h |
| 106 | by_file.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 114 | by_file.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 107 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 115 | by_file.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 108 | by_file.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 116 | by_file.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 109 | by_file.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 117 | by_file.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 110 | by_file.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 118 | by_file.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 119 | by_file.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 120 | by_file.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 121 | by_file.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 122 | by_file.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 123 | by_file.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 111 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 124 | by_file.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 112 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 125 | by_file.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 113 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h | 126 | by_file.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pem.h |
| 114 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h | 127 | by_file.o: ../../include/openssl/pem2.h ../../include/openssl/pkcs7.h |
| 128 | by_file.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 129 | by_file.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 115 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 130 | by_file.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 116 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 131 | by_file.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 117 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 132 | by_file.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 133 | by_file.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 118 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c | 134 | by_file.o: ../../include/openssl/x509_vfy.h ../cryptlib.h by_file.c |
| 119 | x509_att.o: ../../e_os.h ../../include/openssl/asn1.h | 135 | x509_att.o: ../../e_os.h ../../include/openssl/aes.h |
| 120 | x509_att.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 136 | x509_att.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 121 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 137 | x509_att.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 122 | x509_att.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 138 | x509_att.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 123 | x509_att.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 139 | x509_att.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 124 | x509_att.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 140 | x509_att.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 125 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 141 | x509_att.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 142 | x509_att.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 143 | x509_att.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 144 | x509_att.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 145 | x509_att.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 146 | x509_att.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 126 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 147 | x509_att.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 127 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 148 | x509_att.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 128 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 149 | x509_att.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 150 | x509_att.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 151 | x509_att.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 129 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 152 | x509_att.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 130 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 153 | x509_att.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 154 | x509_att.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 131 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 155 | x509_att.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 132 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c | 156 | x509_att.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_att.c |
| 133 | x509_cmp.o: ../../e_os.h ../../include/openssl/asn1.h | 157 | x509_cmp.o: ../../e_os.h ../../include/openssl/aes.h |
| 134 | x509_cmp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 158 | x509_cmp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 135 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 159 | x509_cmp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 136 | x509_cmp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 160 | x509_cmp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 137 | x509_cmp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 161 | x509_cmp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 138 | x509_cmp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 162 | x509_cmp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 139 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 163 | x509_cmp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 164 | x509_cmp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 165 | x509_cmp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 166 | x509_cmp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 167 | x509_cmp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 168 | x509_cmp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 140 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 169 | x509_cmp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 141 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 170 | x509_cmp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 142 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 171 | x509_cmp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 172 | x509_cmp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 173 | x509_cmp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 143 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 174 | x509_cmp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 144 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 175 | x509_cmp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 176 | x509_cmp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 145 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 177 | x509_cmp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 146 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c | 178 | x509_cmp.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_cmp.c |
| 147 | x509_d2.o: ../../e_os.h ../../include/openssl/asn1.h | 179 | x509_d2.o: ../../e_os.h ../../include/openssl/aes.h |
| 148 | x509_d2.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 180 | x509_d2.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 181 | x509_d2.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 150 | x509_d2.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 182 | x509_d2.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 151 | x509_d2.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 183 | x509_d2.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 152 | x509_d2.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 184 | x509_d2.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 185 | x509_d2.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 186 | x509_d2.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 187 | x509_d2.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 188 | x509_d2.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 189 | x509_d2.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 153 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 190 | x509_d2.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 154 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 191 | x509_d2.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 155 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 192 | x509_d2.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 193 | x509_d2.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 194 | x509_d2.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 156 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 195 | x509_d2.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 157 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 196 | x509_d2.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 158 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 197 | x509_d2.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 198 | x509_d2.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 159 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c | 199 | x509_d2.o: ../../include/openssl/x509_vfy.h ../cryptlib.h x509_d2.c |
| 160 | x509_def.o: ../../e_os.h ../../include/openssl/asn1.h | 200 | x509_def.o: ../../e_os.h ../../include/openssl/aes.h |
| 161 | x509_def.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 201 | x509_def.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 162 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 202 | x509_def.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 163 | x509_def.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 203 | x509_def.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 164 | x509_def.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 204 | x509_def.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 165 | x509_def.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 205 | x509_def.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 206 | x509_def.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 207 | x509_def.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 208 | x509_def.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 209 | x509_def.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 210 | x509_def.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 166 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 211 | x509_def.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 167 | x509_def.o: ../../include/openssl/opensslconf.h | 212 | x509_def.o: ../../include/openssl/opensslconf.h |
| 168 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 213 | x509_def.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 169 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 214 | x509_def.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 215 | x509_def.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 216 | x509_def.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 170 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 217 | x509_def.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 171 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 218 | x509_def.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 219 | x509_def.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 172 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 220 | x509_def.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 173 | x509_def.o: ../cryptlib.h x509_def.c | 221 | x509_def.o: ../cryptlib.h x509_def.c |
| 174 | x509_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 222 | x509_err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 223 | x509_err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 175 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 224 | x509_err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 176 | x509_err.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 225 | x509_err.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 177 | x509_err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 226 | x509_err.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 178 | x509_err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 227 | x509_err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 179 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 228 | x509_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 229 | x509_err.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 230 | x509_err.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 231 | x509_err.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 232 | x509_err.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 180 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 233 | x509_err.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 181 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 234 | x509_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 182 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 235 | x509_err.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 236 | x509_err.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 237 | x509_err.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 183 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 238 | x509_err.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 184 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 239 | x509_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 240 | x509_err.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 185 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 241 | x509_err.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 186 | x509_err.o: x509_err.c | 242 | x509_err.o: x509_err.c |
| 187 | x509_ext.o: ../../e_os.h ../../include/openssl/asn1.h | 243 | x509_ext.o: ../../e_os.h ../../include/openssl/aes.h |
| 188 | x509_ext.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 244 | x509_ext.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 189 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 245 | x509_ext.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 190 | x509_ext.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 246 | x509_ext.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 191 | x509_ext.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 247 | x509_ext.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 192 | x509_ext.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 248 | x509_ext.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 193 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 249 | x509_ext.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 250 | x509_ext.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 251 | x509_ext.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 252 | x509_ext.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 253 | x509_ext.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 254 | x509_ext.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 194 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 255 | x509_ext.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 195 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 256 | x509_ext.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 196 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 257 | x509_ext.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 258 | x509_ext.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 259 | x509_ext.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 197 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 260 | x509_ext.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 198 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 261 | x509_ext.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 262 | x509_ext.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 199 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 263 | x509_ext.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 200 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c | 264 | x509_ext.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_ext.c |
| 201 | x509_lu.o: ../../e_os.h ../../include/openssl/asn1.h | 265 | x509_lu.o: ../../e_os.h ../../include/openssl/aes.h |
| 202 | x509_lu.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 266 | x509_lu.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 203 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 267 | x509_lu.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 204 | x509_lu.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 268 | x509_lu.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 205 | x509_lu.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 269 | x509_lu.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 206 | x509_lu.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 270 | x509_lu.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 207 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 271 | x509_lu.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 272 | x509_lu.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 273 | x509_lu.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 274 | x509_lu.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 275 | x509_lu.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 276 | x509_lu.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 208 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 277 | x509_lu.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 209 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 278 | x509_lu.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 210 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 279 | x509_lu.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 280 | x509_lu.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 281 | x509_lu.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 211 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 282 | x509_lu.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 212 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 283 | x509_lu.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 284 | x509_lu.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 213 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 285 | x509_lu.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 214 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c | 286 | x509_lu.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_lu.c |
| 215 | x509_obj.o: ../../e_os.h ../../include/openssl/asn1.h | 287 | x509_obj.o: ../../e_os.h ../../include/openssl/aes.h |
| 216 | x509_obj.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 288 | x509_obj.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 217 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 289 | x509_obj.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 218 | x509_obj.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 290 | x509_obj.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 219 | x509_obj.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 291 | x509_obj.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 220 | x509_obj.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 292 | x509_obj.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 293 | x509_obj.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 294 | x509_obj.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 295 | x509_obj.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 296 | x509_obj.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 297 | x509_obj.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 221 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 298 | x509_obj.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 222 | x509_obj.o: ../../include/openssl/opensslconf.h | 299 | x509_obj.o: ../../include/openssl/opensslconf.h |
| 223 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 300 | x509_obj.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 224 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 301 | x509_obj.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 302 | x509_obj.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 303 | x509_obj.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 225 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 304 | x509_obj.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 226 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 305 | x509_obj.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 306 | x509_obj.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 227 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 307 | x509_obj.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 228 | x509_obj.o: ../cryptlib.h x509_obj.c | 308 | x509_obj.o: ../cryptlib.h x509_obj.c |
| 229 | x509_r2x.o: ../../e_os.h ../../include/openssl/asn1.h | 309 | x509_r2x.o: ../../e_os.h ../../include/openssl/aes.h |
| 230 | x509_r2x.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 310 | x509_r2x.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 231 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 311 | x509_r2x.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 232 | x509_r2x.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 312 | x509_r2x.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 233 | x509_r2x.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 313 | x509_r2x.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 234 | x509_r2x.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 314 | x509_r2x.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 315 | x509_r2x.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 316 | x509_r2x.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 317 | x509_r2x.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 318 | x509_r2x.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 319 | x509_r2x.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 235 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 320 | x509_r2x.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 236 | x509_r2x.o: ../../include/openssl/opensslconf.h | 321 | x509_r2x.o: ../../include/openssl/opensslconf.h |
| 237 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 322 | x509_r2x.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 238 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 323 | x509_r2x.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 324 | x509_r2x.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 325 | x509_r2x.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 239 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 326 | x509_r2x.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 240 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 327 | x509_r2x.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 328 | x509_r2x.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 241 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 329 | x509_r2x.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 242 | x509_r2x.o: ../cryptlib.h x509_r2x.c | 330 | x509_r2x.o: ../cryptlib.h x509_r2x.c |
| 243 | x509_req.o: ../../e_os.h ../../include/openssl/asn1.h | 331 | x509_req.o: ../../e_os.h ../../include/openssl/aes.h |
| 244 | x509_req.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 332 | x509_req.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 245 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 333 | x509_req.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 246 | x509_req.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 334 | x509_req.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 247 | x509_req.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 335 | x509_req.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 248 | x509_req.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 336 | x509_req.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 337 | x509_req.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 338 | x509_req.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 339 | x509_req.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 340 | x509_req.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 341 | x509_req.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 249 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 342 | x509_req.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 250 | x509_req.o: ../../include/openssl/opensslconf.h | 343 | x509_req.o: ../../include/openssl/opensslconf.h |
| 251 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 344 | x509_req.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 252 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h | 345 | x509_req.o: ../../include/openssl/pem.h ../../include/openssl/pem2.h |
| 253 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 346 | x509_req.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 347 | x509_req.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 348 | x509_req.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 254 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 349 | x509_req.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 255 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 350 | x509_req.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 351 | x509_req.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 256 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 352 | x509_req.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 257 | x509_req.o: ../cryptlib.h x509_req.c | 353 | x509_req.o: ../cryptlib.h x509_req.c |
| 258 | x509_set.o: ../../e_os.h ../../include/openssl/asn1.h | 354 | x509_set.o: ../../e_os.h ../../include/openssl/aes.h |
| 259 | x509_set.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 355 | x509_set.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 260 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 356 | x509_set.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 261 | x509_set.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 357 | x509_set.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 262 | x509_set.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 358 | x509_set.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 263 | x509_set.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 359 | x509_set.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 360 | x509_set.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 361 | x509_set.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 362 | x509_set.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 363 | x509_set.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 364 | x509_set.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 264 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 365 | x509_set.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 265 | x509_set.o: ../../include/openssl/opensslconf.h | 366 | x509_set.o: ../../include/openssl/opensslconf.h |
| 266 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 367 | x509_set.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 267 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 368 | x509_set.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 369 | x509_set.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 370 | x509_set.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 268 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 371 | x509_set.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 269 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 372 | x509_set.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 373 | x509_set.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 270 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 374 | x509_set.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 271 | x509_set.o: ../cryptlib.h x509_set.c | 375 | x509_set.o: ../cryptlib.h x509_set.c |
| 272 | x509_trs.o: ../../e_os.h ../../include/openssl/asn1.h | 376 | x509_trs.o: ../../e_os.h ../../include/openssl/aes.h |
| 273 | x509_trs.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 377 | x509_trs.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 274 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 378 | x509_trs.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 275 | x509_trs.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 379 | x509_trs.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 276 | x509_trs.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 380 | x509_trs.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 277 | x509_trs.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 381 | x509_trs.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 278 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 382 | x509_trs.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 383 | x509_trs.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 384 | x509_trs.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 385 | x509_trs.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 386 | x509_trs.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 387 | x509_trs.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 279 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 388 | x509_trs.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 280 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 389 | x509_trs.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 281 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 390 | x509_trs.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 391 | x509_trs.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 392 | x509_trs.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 282 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 393 | x509_trs.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 283 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 394 | x509_trs.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 395 | x509_trs.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 284 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 396 | x509_trs.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 285 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c | 397 | x509_trs.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_trs.c |
| 286 | x509_txt.o: ../../e_os.h ../../include/openssl/asn1.h | 398 | x509_txt.o: ../../e_os.h ../../include/openssl/aes.h |
| 287 | x509_txt.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 399 | x509_txt.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 288 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 400 | x509_txt.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 289 | x509_txt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 401 | x509_txt.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 290 | x509_txt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 402 | x509_txt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 291 | x509_txt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 403 | x509_txt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 404 | x509_txt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 405 | x509_txt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 406 | x509_txt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 407 | x509_txt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 408 | x509_txt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 292 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 409 | x509_txt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 293 | x509_txt.o: ../../include/openssl/opensslconf.h | 410 | x509_txt.o: ../../include/openssl/opensslconf.h |
| 294 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 411 | x509_txt.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 295 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 412 | x509_txt.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 413 | x509_txt.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 414 | x509_txt.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 296 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 415 | x509_txt.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 297 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 416 | x509_txt.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 417 | x509_txt.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 298 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 418 | x509_txt.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 299 | x509_txt.o: ../cryptlib.h x509_txt.c | 419 | x509_txt.o: ../cryptlib.h x509_txt.c |
| 300 | x509_v3.o: ../../e_os.h ../../include/openssl/asn1.h | 420 | x509_v3.o: ../../e_os.h ../../include/openssl/aes.h |
| 301 | x509_v3.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 421 | x509_v3.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 302 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 422 | x509_v3.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 303 | x509_v3.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 423 | x509_v3.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 304 | x509_v3.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 424 | x509_v3.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 305 | x509_v3.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 425 | x509_v3.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 306 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 426 | x509_v3.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 427 | x509_v3.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 428 | x509_v3.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 429 | x509_v3.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 430 | x509_v3.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 431 | x509_v3.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 307 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 432 | x509_v3.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 308 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 433 | x509_v3.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 309 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 434 | x509_v3.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 435 | x509_v3.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 436 | x509_v3.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 310 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 437 | x509_v3.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 311 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 438 | x509_v3.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 439 | x509_v3.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 312 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 440 | x509_v3.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 313 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c | 441 | x509_v3.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_v3.c |
| 314 | x509_vfy.o: ../../e_os.h ../../include/openssl/asn1.h | 442 | x509_vfy.o: ../../e_os.h ../../include/openssl/aes.h |
| 315 | x509_vfy.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 443 | x509_vfy.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 316 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 444 | x509_vfy.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 317 | x509_vfy.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 445 | x509_vfy.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 318 | x509_vfy.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 446 | x509_vfy.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 319 | x509_vfy.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 447 | x509_vfy.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 320 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 448 | x509_vfy.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 449 | x509_vfy.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 450 | x509_vfy.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 451 | x509_vfy.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 452 | x509_vfy.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 453 | x509_vfy.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 321 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 454 | x509_vfy.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 322 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 455 | x509_vfy.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 323 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 456 | x509_vfy.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 457 | x509_vfy.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 458 | x509_vfy.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 324 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 459 | x509_vfy.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 325 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 460 | x509_vfy.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 461 | x509_vfy.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 326 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 462 | x509_vfy.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 327 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c | 463 | x509_vfy.o: ../../include/openssl/x509v3.h ../cryptlib.h x509_vfy.c |
| 328 | x509cset.o: ../../e_os.h ../../include/openssl/asn1.h | 464 | x509cset.o: ../../e_os.h ../../include/openssl/aes.h |
| 329 | x509cset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 465 | x509cset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 330 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 466 | x509cset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 331 | x509cset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 467 | x509cset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 332 | x509cset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 468 | x509cset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 333 | x509cset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 469 | x509cset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 470 | x509cset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 471 | x509cset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 472 | x509cset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 473 | x509cset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 474 | x509cset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 334 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 475 | x509cset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 335 | x509cset.o: ../../include/openssl/opensslconf.h | 476 | x509cset.o: ../../include/openssl/opensslconf.h |
| 336 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 477 | x509cset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 337 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 478 | x509cset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 479 | x509cset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 480 | x509cset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 338 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 481 | x509cset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 339 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 482 | x509cset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 483 | x509cset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 340 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 484 | x509cset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 341 | x509cset.o: ../cryptlib.h x509cset.c | 485 | x509cset.o: ../cryptlib.h x509cset.c |
| 342 | x509name.o: ../../e_os.h ../../include/openssl/asn1.h | 486 | x509name.o: ../../e_os.h ../../include/openssl/aes.h |
| 343 | x509name.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 487 | x509name.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 344 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 488 | x509name.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 345 | x509name.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 489 | x509name.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 346 | x509name.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 490 | x509name.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 347 | x509name.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 491 | x509name.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 492 | x509name.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 493 | x509name.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 494 | x509name.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 495 | x509name.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 496 | x509name.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 348 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 497 | x509name.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 349 | x509name.o: ../../include/openssl/opensslconf.h | 498 | x509name.o: ../../include/openssl/opensslconf.h |
| 350 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 499 | x509name.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 351 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 500 | x509name.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 501 | x509name.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 502 | x509name.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 352 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 503 | x509name.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 353 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 504 | x509name.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 505 | x509name.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 354 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 506 | x509name.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 355 | x509name.o: ../cryptlib.h x509name.c | 507 | x509name.o: ../cryptlib.h x509name.c |
| 356 | x509rset.o: ../../e_os.h ../../include/openssl/asn1.h | 508 | x509rset.o: ../../e_os.h ../../include/openssl/aes.h |
| 357 | x509rset.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 509 | x509rset.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 358 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 510 | x509rset.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 359 | x509rset.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 511 | x509rset.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 360 | x509rset.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 512 | x509rset.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 361 | x509rset.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 513 | x509rset.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 514 | x509rset.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 515 | x509rset.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 516 | x509rset.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 517 | x509rset.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 518 | x509rset.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 362 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 519 | x509rset.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 363 | x509rset.o: ../../include/openssl/opensslconf.h | 520 | x509rset.o: ../../include/openssl/opensslconf.h |
| 364 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 521 | x509rset.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 365 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 522 | x509rset.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 523 | x509rset.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 524 | x509rset.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 366 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 525 | x509rset.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 367 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 526 | x509rset.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 527 | x509rset.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 368 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 528 | x509rset.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 369 | x509rset.o: ../cryptlib.h x509rset.c | 529 | x509rset.o: ../cryptlib.h x509rset.c |
| 370 | x509spki.o: ../../e_os.h ../../include/openssl/asn1.h | 530 | x509spki.o: ../../e_os.h ../../include/openssl/aes.h |
| 371 | x509spki.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 531 | x509spki.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 372 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 532 | x509spki.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 373 | x509spki.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 533 | x509spki.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 374 | x509spki.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 534 | x509spki.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 375 | x509spki.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 535 | x509spki.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 536 | x509spki.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 537 | x509spki.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 538 | x509spki.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 539 | x509spki.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 540 | x509spki.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 376 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 541 | x509spki.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 377 | x509spki.o: ../../include/openssl/opensslconf.h | 542 | x509spki.o: ../../include/openssl/opensslconf.h |
| 378 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 543 | x509spki.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 379 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 544 | x509spki.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 545 | x509spki.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 546 | x509spki.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 380 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 547 | x509spki.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 381 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 548 | x509spki.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 549 | x509spki.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 382 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 550 | x509spki.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 383 | x509spki.o: ../cryptlib.h x509spki.c | 551 | x509spki.o: ../cryptlib.h x509spki.c |
| 384 | x509type.o: ../../e_os.h ../../include/openssl/asn1.h | 552 | x509type.o: ../../e_os.h ../../include/openssl/aes.h |
| 385 | x509type.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 553 | x509type.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 386 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 554 | x509type.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 387 | x509type.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 555 | x509type.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 388 | x509type.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 556 | x509type.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 389 | x509type.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 557 | x509type.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 558 | x509type.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 559 | x509type.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 560 | x509type.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 561 | x509type.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 562 | x509type.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 390 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 563 | x509type.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 391 | x509type.o: ../../include/openssl/opensslconf.h | 564 | x509type.o: ../../include/openssl/opensslconf.h |
| 392 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 565 | x509type.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 393 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 566 | x509type.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 567 | x509type.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 568 | x509type.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 394 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 569 | x509type.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 395 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 570 | x509type.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 571 | x509type.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 396 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 572 | x509type.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 397 | x509type.o: ../cryptlib.h x509type.c | 573 | x509type.o: ../cryptlib.h x509type.c |
| 398 | x_all.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 574 | x_all.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 575 | x_all.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 399 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 576 | x_all.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 400 | x_all.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 577 | x_all.o: ../../include/openssl/cast.h ../../include/openssl/crypto.h |
| 401 | x_all.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 578 | x_all.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 402 | x_all.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 579 | x_all.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 403 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 580 | x_all.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 581 | x_all.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 582 | x_all.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 583 | x_all.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 584 | x_all.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 404 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 585 | x_all.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 405 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 586 | x_all.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 406 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 587 | x_all.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 588 | x_all.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 589 | x_all.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 407 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 590 | x_all.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 408 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 591 | x_all.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 592 | x_all.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 409 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 593 | x_all.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 410 | x_all.o: ../cryptlib.h x_all.c | 594 | x_all.o: ../cryptlib.h x_all.c |
diff --git a/src/lib/libssl/src/crypto/x509v3/Makefile.ssl b/src/lib/libssl/src/crypto/x509v3/Makefile.ssl index 40fe46f983..3534e8b236 100644 --- a/src/lib/libssl/src/crypto/x509v3/Makefile.ssl +++ b/src/lib/libssl/src/crypto/x509v3/Makefile.ssl | |||
| @@ -74,7 +74,7 @@ lint: | |||
| 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 74 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 75 | 75 | ||
| 76 | depend: | 76 | depend: |
| 77 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 77 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 78 | 78 | ||
| 79 | dclean: | 79 | dclean: |
| 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 80 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -85,336 +85,519 @@ clean: | |||
| 85 | 85 | ||
| 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 86 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 87 | 87 | ||
| 88 | v3_akey.o: ../../e_os.h ../../include/openssl/asn1.h | 88 | v3_akey.o: ../../e_os.h ../../include/openssl/aes.h |
| 89 | v3_akey.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 89 | v3_akey.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 90 | v3_akey.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 90 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 91 | v3_akey.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 91 | v3_akey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 92 | v3_akey.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 92 | v3_akey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 93 | v3_akey.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 93 | v3_akey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 94 | v3_akey.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 94 | v3_akey.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 95 | v3_akey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 96 | v3_akey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 97 | v3_akey.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 98 | v3_akey.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 99 | v3_akey.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 95 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 100 | v3_akey.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 96 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 101 | v3_akey.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 97 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 102 | v3_akey.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 103 | v3_akey.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 104 | v3_akey.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 98 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 105 | v3_akey.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 99 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 106 | v3_akey.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 100 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 107 | v3_akey.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 108 | v3_akey.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 101 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 109 | v3_akey.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 102 | v3_akey.o: ../cryptlib.h v3_akey.c | 110 | v3_akey.o: ../cryptlib.h v3_akey.c |
| 103 | v3_akeya.o: ../../e_os.h ../../include/openssl/asn1.h | 111 | v3_akeya.o: ../../e_os.h ../../include/openssl/aes.h |
| 104 | v3_akeya.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 112 | v3_akeya.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 113 | v3_akeya.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 105 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 114 | v3_akeya.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 106 | v3_akeya.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 115 | v3_akeya.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 107 | v3_akeya.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 116 | v3_akeya.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 108 | v3_akeya.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 117 | v3_akeya.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 109 | v3_akeya.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 118 | v3_akeya.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 119 | v3_akeya.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 120 | v3_akeya.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 121 | v3_akeya.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 122 | v3_akeya.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 110 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 123 | v3_akeya.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 111 | v3_akeya.o: ../../include/openssl/opensslconf.h | 124 | v3_akeya.o: ../../include/openssl/opensslconf.h |
| 112 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 125 | v3_akeya.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 113 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 126 | v3_akeya.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 127 | v3_akeya.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 128 | v3_akeya.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 114 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 129 | v3_akeya.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 115 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 130 | v3_akeya.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 131 | v3_akeya.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 116 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 132 | v3_akeya.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 117 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c | 133 | v3_akeya.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_akeya.c |
| 118 | v3_alt.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 134 | v3_alt.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 135 | v3_alt.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 119 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 136 | v3_alt.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 120 | v3_alt.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 137 | v3_alt.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 121 | v3_alt.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 138 | v3_alt.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 122 | v3_alt.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 139 | v3_alt.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 123 | v3_alt.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 140 | v3_alt.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 141 | v3_alt.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 142 | v3_alt.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 143 | v3_alt.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 144 | v3_alt.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 124 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 145 | v3_alt.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 125 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 146 | v3_alt.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 126 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 147 | v3_alt.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 148 | v3_alt.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 149 | v3_alt.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 127 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 150 | v3_alt.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 128 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 151 | v3_alt.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 129 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 152 | v3_alt.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 153 | v3_alt.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 130 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 154 | v3_alt.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 131 | v3_alt.o: ../cryptlib.h v3_alt.c | 155 | v3_alt.o: ../cryptlib.h v3_alt.c |
| 132 | v3_bcons.o: ../../e_os.h ../../include/openssl/asn1.h | 156 | v3_bcons.o: ../../e_os.h ../../include/openssl/aes.h |
| 133 | v3_bcons.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 157 | v3_bcons.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 158 | v3_bcons.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 134 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 159 | v3_bcons.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 135 | v3_bcons.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 160 | v3_bcons.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 136 | v3_bcons.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 161 | v3_bcons.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 137 | v3_bcons.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 162 | v3_bcons.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 138 | v3_bcons.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 163 | v3_bcons.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 164 | v3_bcons.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 165 | v3_bcons.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 166 | v3_bcons.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 167 | v3_bcons.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 139 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 168 | v3_bcons.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 140 | v3_bcons.o: ../../include/openssl/opensslconf.h | 169 | v3_bcons.o: ../../include/openssl/opensslconf.h |
| 141 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 170 | v3_bcons.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 142 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 171 | v3_bcons.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 172 | v3_bcons.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 173 | v3_bcons.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 143 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 174 | v3_bcons.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 144 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 175 | v3_bcons.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 176 | v3_bcons.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 145 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 177 | v3_bcons.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 146 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c | 178 | v3_bcons.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bcons.c |
| 147 | v3_bitst.o: ../../e_os.h ../../include/openssl/asn1.h | 179 | v3_bitst.o: ../../e_os.h ../../include/openssl/aes.h |
| 148 | v3_bitst.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 180 | v3_bitst.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 149 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 181 | v3_bitst.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 150 | v3_bitst.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 182 | v3_bitst.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 151 | v3_bitst.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 183 | v3_bitst.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 152 | v3_bitst.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 184 | v3_bitst.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 153 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 185 | v3_bitst.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 186 | v3_bitst.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 187 | v3_bitst.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 188 | v3_bitst.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 189 | v3_bitst.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 190 | v3_bitst.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 154 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 191 | v3_bitst.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 155 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 192 | v3_bitst.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 156 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 193 | v3_bitst.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 194 | v3_bitst.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 195 | v3_bitst.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 157 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 196 | v3_bitst.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 158 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 197 | v3_bitst.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 198 | v3_bitst.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 159 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 199 | v3_bitst.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 160 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c | 200 | v3_bitst.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_bitst.c |
| 161 | v3_conf.o: ../../e_os.h ../../include/openssl/asn1.h | 201 | v3_conf.o: ../../e_os.h ../../include/openssl/aes.h |
| 162 | v3_conf.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 202 | v3_conf.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 163 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 203 | v3_conf.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 164 | v3_conf.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 204 | v3_conf.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 165 | v3_conf.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 205 | v3_conf.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 166 | v3_conf.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 206 | v3_conf.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 167 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 207 | v3_conf.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 208 | v3_conf.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 209 | v3_conf.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 210 | v3_conf.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 211 | v3_conf.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 212 | v3_conf.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 168 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 213 | v3_conf.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 169 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 214 | v3_conf.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 170 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 215 | v3_conf.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 216 | v3_conf.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 217 | v3_conf.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 171 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 218 | v3_conf.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 172 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 219 | v3_conf.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 220 | v3_conf.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 173 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 221 | v3_conf.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 174 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c | 222 | v3_conf.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_conf.c |
| 175 | v3_cpols.o: ../../e_os.h ../../include/openssl/asn1.h | 223 | v3_cpols.o: ../../e_os.h ../../include/openssl/aes.h |
| 176 | v3_cpols.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 224 | v3_cpols.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 225 | v3_cpols.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 177 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 226 | v3_cpols.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 178 | v3_cpols.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 227 | v3_cpols.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 179 | v3_cpols.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 228 | v3_cpols.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 180 | v3_cpols.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 229 | v3_cpols.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 181 | v3_cpols.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 230 | v3_cpols.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 231 | v3_cpols.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 232 | v3_cpols.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 233 | v3_cpols.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 234 | v3_cpols.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 182 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 235 | v3_cpols.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 183 | v3_cpols.o: ../../include/openssl/opensslconf.h | 236 | v3_cpols.o: ../../include/openssl/opensslconf.h |
| 184 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 237 | v3_cpols.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 185 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 238 | v3_cpols.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 239 | v3_cpols.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 240 | v3_cpols.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 186 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 241 | v3_cpols.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 187 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 242 | v3_cpols.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 243 | v3_cpols.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 188 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 244 | v3_cpols.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 189 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c | 245 | v3_cpols.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_cpols.c |
| 190 | v3_crld.o: ../../e_os.h ../../include/openssl/asn1.h | 246 | v3_crld.o: ../../e_os.h ../../include/openssl/aes.h |
| 191 | v3_crld.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 247 | v3_crld.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 248 | v3_crld.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 192 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 249 | v3_crld.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 193 | v3_crld.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 250 | v3_crld.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 194 | v3_crld.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 251 | v3_crld.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 195 | v3_crld.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 252 | v3_crld.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 196 | v3_crld.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 253 | v3_crld.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 254 | v3_crld.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 255 | v3_crld.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 256 | v3_crld.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 257 | v3_crld.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 197 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 258 | v3_crld.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 198 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 259 | v3_crld.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 199 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 260 | v3_crld.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 261 | v3_crld.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 262 | v3_crld.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 200 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 263 | v3_crld.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 201 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 264 | v3_crld.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 202 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 265 | v3_crld.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 266 | v3_crld.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 203 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 267 | v3_crld.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 204 | v3_crld.o: ../cryptlib.h v3_crld.c | 268 | v3_crld.o: ../cryptlib.h v3_crld.c |
| 205 | v3_enum.o: ../../e_os.h ../../include/openssl/asn1.h | 269 | v3_enum.o: ../../e_os.h ../../include/openssl/aes.h |
| 206 | v3_enum.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 270 | v3_enum.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 207 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 271 | v3_enum.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 208 | v3_enum.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 272 | v3_enum.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 209 | v3_enum.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 273 | v3_enum.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 210 | v3_enum.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 274 | v3_enum.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 211 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 275 | v3_enum.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 276 | v3_enum.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 277 | v3_enum.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 278 | v3_enum.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 279 | v3_enum.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 280 | v3_enum.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 212 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 281 | v3_enum.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 213 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 282 | v3_enum.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 214 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 283 | v3_enum.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 284 | v3_enum.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 285 | v3_enum.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 215 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 286 | v3_enum.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 216 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 287 | v3_enum.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 288 | v3_enum.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 217 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 289 | v3_enum.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 218 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c | 290 | v3_enum.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_enum.c |
| 219 | v3_extku.o: ../../e_os.h ../../include/openssl/asn1.h | 291 | v3_extku.o: ../../e_os.h ../../include/openssl/aes.h |
| 220 | v3_extku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 292 | v3_extku.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 293 | v3_extku.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 221 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 294 | v3_extku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 222 | v3_extku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 295 | v3_extku.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 223 | v3_extku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 296 | v3_extku.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 224 | v3_extku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 297 | v3_extku.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 225 | v3_extku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 298 | v3_extku.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 299 | v3_extku.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 300 | v3_extku.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 301 | v3_extku.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 302 | v3_extku.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 226 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 303 | v3_extku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 227 | v3_extku.o: ../../include/openssl/opensslconf.h | 304 | v3_extku.o: ../../include/openssl/opensslconf.h |
| 228 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 305 | v3_extku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 229 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 306 | v3_extku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 307 | v3_extku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 308 | v3_extku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 230 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 309 | v3_extku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 231 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 310 | v3_extku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 311 | v3_extku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 232 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 312 | v3_extku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 233 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c | 313 | v3_extku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_extku.c |
| 234 | v3_genn.o: ../../e_os.h ../../include/openssl/asn1.h | 314 | v3_genn.o: ../../e_os.h ../../include/openssl/aes.h |
| 235 | v3_genn.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 315 | v3_genn.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 316 | v3_genn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 236 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 317 | v3_genn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 237 | v3_genn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 318 | v3_genn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 238 | v3_genn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 319 | v3_genn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 239 | v3_genn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 320 | v3_genn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 240 | v3_genn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 321 | v3_genn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 322 | v3_genn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 323 | v3_genn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 324 | v3_genn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 325 | v3_genn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 241 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 326 | v3_genn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 242 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 327 | v3_genn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 243 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 328 | v3_genn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 329 | v3_genn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 330 | v3_genn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 244 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 331 | v3_genn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 245 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 332 | v3_genn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 246 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 333 | v3_genn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 334 | v3_genn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 247 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 335 | v3_genn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 248 | v3_genn.o: ../cryptlib.h v3_genn.c | 336 | v3_genn.o: ../cryptlib.h v3_genn.c |
| 249 | v3_ia5.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 337 | v3_ia5.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 338 | v3_ia5.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 250 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 339 | v3_ia5.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 251 | v3_ia5.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 340 | v3_ia5.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 252 | v3_ia5.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 341 | v3_ia5.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 253 | v3_ia5.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 342 | v3_ia5.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 254 | v3_ia5.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 343 | v3_ia5.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 344 | v3_ia5.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 345 | v3_ia5.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 346 | v3_ia5.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 347 | v3_ia5.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 255 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 348 | v3_ia5.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 256 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 349 | v3_ia5.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 257 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 350 | v3_ia5.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 351 | v3_ia5.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 352 | v3_ia5.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 258 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 353 | v3_ia5.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 259 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 354 | v3_ia5.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 260 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 355 | v3_ia5.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 356 | v3_ia5.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 261 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 357 | v3_ia5.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 262 | v3_ia5.o: ../cryptlib.h v3_ia5.c | 358 | v3_ia5.o: ../cryptlib.h v3_ia5.c |
| 263 | v3_info.o: ../../e_os.h ../../include/openssl/asn1.h | 359 | v3_info.o: ../../e_os.h ../../include/openssl/aes.h |
| 264 | v3_info.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 360 | v3_info.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 361 | v3_info.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 265 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 362 | v3_info.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 266 | v3_info.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 363 | v3_info.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 267 | v3_info.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 364 | v3_info.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 268 | v3_info.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 365 | v3_info.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 269 | v3_info.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 366 | v3_info.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 367 | v3_info.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 368 | v3_info.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 369 | v3_info.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 370 | v3_info.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 270 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 371 | v3_info.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 271 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 372 | v3_info.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 272 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 373 | v3_info.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 374 | v3_info.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 375 | v3_info.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 273 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 376 | v3_info.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 274 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 377 | v3_info.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 275 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 378 | v3_info.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 379 | v3_info.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 276 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 380 | v3_info.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 277 | v3_info.o: ../cryptlib.h v3_info.c | 381 | v3_info.o: ../cryptlib.h v3_info.c |
| 278 | v3_int.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 382 | v3_int.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 383 | v3_int.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 279 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 384 | v3_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 280 | v3_int.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 385 | v3_int.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 281 | v3_int.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 386 | v3_int.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 282 | v3_int.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 387 | v3_int.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 283 | v3_int.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 388 | v3_int.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 389 | v3_int.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 390 | v3_int.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 391 | v3_int.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 392 | v3_int.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 284 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 393 | v3_int.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 285 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 394 | v3_int.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 286 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 395 | v3_int.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 396 | v3_int.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 397 | v3_int.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 287 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 398 | v3_int.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 288 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 399 | v3_int.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 289 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 400 | v3_int.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 401 | v3_int.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 290 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 402 | v3_int.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 291 | v3_int.o: ../cryptlib.h v3_int.c | 403 | v3_int.o: ../cryptlib.h v3_int.c |
| 292 | v3_lib.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 404 | v3_lib.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 405 | v3_lib.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 293 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 406 | v3_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 294 | v3_lib.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 407 | v3_lib.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 295 | v3_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 408 | v3_lib.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 296 | v3_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 409 | v3_lib.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 297 | v3_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 410 | v3_lib.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 411 | v3_lib.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 412 | v3_lib.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 413 | v3_lib.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 414 | v3_lib.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 298 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 415 | v3_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 299 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 416 | v3_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 300 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 417 | v3_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 418 | v3_lib.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 419 | v3_lib.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 301 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 420 | v3_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 302 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 421 | v3_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 303 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 422 | v3_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 423 | v3_lib.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 304 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 424 | v3_lib.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 305 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c | 425 | v3_lib.o: ../cryptlib.h ext_dat.h v3_lib.c |
| 306 | v3_ocsp.o: ../../e_os.h ../../include/openssl/asn1.h | 426 | v3_ocsp.o: ../../e_os.h ../../include/openssl/aes.h |
| 307 | v3_ocsp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 427 | v3_ocsp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 308 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 428 | v3_ocsp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 309 | v3_ocsp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 429 | v3_ocsp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 310 | v3_ocsp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 430 | v3_ocsp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 311 | v3_ocsp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 431 | v3_ocsp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 312 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 432 | v3_ocsp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 433 | v3_ocsp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 434 | v3_ocsp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 435 | v3_ocsp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 436 | v3_ocsp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 437 | v3_ocsp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 313 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h | 438 | v3_ocsp.o: ../../include/openssl/objects.h ../../include/openssl/ocsp.h |
| 314 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 439 | v3_ocsp.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 315 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 440 | v3_ocsp.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 441 | v3_ocsp.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 442 | v3_ocsp.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 316 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 443 | v3_ocsp.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 317 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 444 | v3_ocsp.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 318 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 445 | v3_ocsp.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 446 | v3_ocsp.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 319 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 447 | v3_ocsp.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 320 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c | 448 | v3_ocsp.o: ../cryptlib.h v3_ocsp.c |
| 321 | v3_pku.o: ../../e_os.h ../../include/openssl/asn1.h | 449 | v3_pku.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 322 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 450 | v3_pku.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 323 | v3_pku.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 451 | v3_pku.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 452 | v3_pku.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 324 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 453 | v3_pku.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 454 | v3_pku.o: ../../include/openssl/des.h ../../include/openssl/des_old.h | ||
| 325 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 455 | v3_pku.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 326 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 456 | v3_pku.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 327 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 457 | v3_pku.o: ../../include/openssl/evp.h ../../include/openssl/idea.h |
| 328 | v3_pku.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 458 | v3_pku.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h |
| 329 | v3_pku.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 459 | v3_pku.o: ../../include/openssl/md4.h ../../include/openssl/md5.h |
| 330 | v3_pku.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 460 | v3_pku.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h |
| 331 | v3_pku.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 461 | v3_pku.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 332 | v3_pku.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 462 | v3_pku.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 333 | v3_pku.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 463 | v3_pku.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 334 | v3_pku.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 464 | v3_pku.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h |
| 335 | v3_pku.o: ../cryptlib.h v3_pku.c | 465 | v3_pku.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h |
| 336 | v3_prn.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 466 | v3_pku.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 467 | v3_pku.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 468 | v3_pku.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 469 | v3_pku.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 470 | v3_pku.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_pku.c | ||
| 471 | v3_prn.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h | ||
| 472 | v3_prn.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 337 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 473 | v3_prn.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 338 | v3_prn.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 474 | v3_prn.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 339 | v3_prn.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 475 | v3_prn.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 340 | v3_prn.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 476 | v3_prn.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 341 | v3_prn.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 477 | v3_prn.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 478 | v3_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 479 | v3_prn.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 480 | v3_prn.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 481 | v3_prn.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 342 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 482 | v3_prn.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 343 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 483 | v3_prn.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 344 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 484 | v3_prn.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 485 | v3_prn.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 486 | v3_prn.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 345 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 487 | v3_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 346 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 488 | v3_prn.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 347 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 489 | v3_prn.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 490 | v3_prn.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 348 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 491 | v3_prn.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 349 | v3_prn.o: ../cryptlib.h v3_prn.c | 492 | v3_prn.o: ../cryptlib.h v3_prn.c |
| 350 | v3_purp.o: ../../e_os.h ../../include/openssl/asn1.h | 493 | v3_purp.o: ../../e_os.h ../../include/openssl/aes.h |
| 351 | v3_purp.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 494 | v3_purp.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 352 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 495 | v3_purp.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 353 | v3_purp.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 496 | v3_purp.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 354 | v3_purp.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 497 | v3_purp.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 355 | v3_purp.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 498 | v3_purp.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 356 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 499 | v3_purp.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 500 | v3_purp.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 501 | v3_purp.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 502 | v3_purp.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 503 | v3_purp.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 504 | v3_purp.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 357 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 505 | v3_purp.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 358 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 506 | v3_purp.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 359 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 507 | v3_purp.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 508 | v3_purp.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 509 | v3_purp.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 360 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 510 | v3_purp.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 361 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 511 | v3_purp.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 512 | v3_purp.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 362 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 513 | v3_purp.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 363 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c | 514 | v3_purp.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_purp.c |
| 364 | v3_skey.o: ../../e_os.h ../../include/openssl/asn1.h | 515 | v3_skey.o: ../../e_os.h ../../include/openssl/aes.h |
| 365 | v3_skey.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 516 | v3_skey.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 366 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/conf.h | 517 | v3_skey.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h |
| 367 | v3_skey.o: ../../include/openssl/crypto.h ../../include/openssl/dh.h | 518 | v3_skey.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h |
| 368 | v3_skey.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | 519 | v3_skey.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h |
| 369 | v3_skey.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 520 | v3_skey.o: ../../include/openssl/des.h ../../include/openssl/des_old.h |
| 370 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 521 | v3_skey.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h |
| 522 | v3_skey.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 523 | v3_skey.o: ../../include/openssl/evp.h ../../include/openssl/idea.h | ||
| 524 | v3_skey.o: ../../include/openssl/lhash.h ../../include/openssl/md2.h | ||
| 525 | v3_skey.o: ../../include/openssl/md4.h ../../include/openssl/md5.h | ||
| 526 | v3_skey.o: ../../include/openssl/mdc2.h ../../include/openssl/obj_mac.h | ||
| 371 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 527 | v3_skey.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 372 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 528 | v3_skey.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 373 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 529 | v3_skey.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 530 | v3_skey.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 531 | v3_skey.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 374 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 532 | v3_skey.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 375 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 533 | v3_skey.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 534 | v3_skey.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 376 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 535 | v3_skey.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 377 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c | 536 | v3_skey.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_skey.c |
| 378 | v3_sxnet.o: ../../e_os.h ../../include/openssl/asn1.h | 537 | v3_sxnet.o: ../../e_os.h ../../include/openssl/aes.h |
| 379 | v3_sxnet.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 538 | v3_sxnet.o: ../../include/openssl/asn1.h ../../include/openssl/asn1t.h |
| 539 | v3_sxnet.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 380 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 540 | v3_sxnet.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 381 | v3_sxnet.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 541 | v3_sxnet.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 382 | v3_sxnet.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 542 | v3_sxnet.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 383 | v3_sxnet.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 543 | v3_sxnet.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 384 | v3_sxnet.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 544 | v3_sxnet.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 545 | v3_sxnet.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 546 | v3_sxnet.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 547 | v3_sxnet.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 548 | v3_sxnet.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 385 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 549 | v3_sxnet.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 386 | v3_sxnet.o: ../../include/openssl/opensslconf.h | 550 | v3_sxnet.o: ../../include/openssl/opensslconf.h |
| 387 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 551 | v3_sxnet.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 388 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 552 | v3_sxnet.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h |
| 553 | v3_sxnet.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 554 | v3_sxnet.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 389 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 555 | v3_sxnet.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 390 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 556 | v3_sxnet.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 557 | v3_sxnet.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 391 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 558 | v3_sxnet.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 392 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c | 559 | v3_sxnet.o: ../../include/openssl/x509v3.h ../cryptlib.h v3_sxnet.c |
| 393 | v3_utl.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h | 560 | v3_utl.o: ../../e_os.h ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 561 | v3_utl.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 394 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 562 | v3_utl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 395 | v3_utl.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 563 | v3_utl.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 396 | v3_utl.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 564 | v3_utl.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 397 | v3_utl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 565 | v3_utl.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 398 | v3_utl.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 566 | v3_utl.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 567 | v3_utl.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 568 | v3_utl.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 569 | v3_utl.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 570 | v3_utl.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 399 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 571 | v3_utl.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 400 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 572 | v3_utl.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 401 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 573 | v3_utl.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 574 | v3_utl.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 575 | v3_utl.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 402 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 576 | v3_utl.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 403 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 577 | v3_utl.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 404 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 578 | v3_utl.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 579 | v3_utl.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 405 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 580 | v3_utl.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 406 | v3_utl.o: ../cryptlib.h v3_utl.c | 581 | v3_utl.o: ../cryptlib.h v3_utl.c |
| 407 | v3err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 582 | v3err.o: ../../include/openssl/aes.h ../../include/openssl/asn1.h |
| 583 | v3err.o: ../../include/openssl/bio.h ../../include/openssl/blowfish.h | ||
| 408 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 584 | v3err.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| 409 | v3err.o: ../../include/openssl/conf.h ../../include/openssl/crypto.h | 585 | v3err.o: ../../include/openssl/cast.h ../../include/openssl/conf.h |
| 410 | v3err.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | 586 | v3err.o: ../../include/openssl/crypto.h ../../include/openssl/des.h |
| 411 | v3err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 587 | v3err.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h |
| 412 | v3err.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | 588 | v3err.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h |
| 589 | v3err.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 590 | v3err.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 591 | v3err.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 592 | v3err.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 413 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 593 | v3err.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 414 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | 594 | v3err.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 415 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h | 595 | v3err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 596 | v3err.o: ../../include/openssl/rc2.h ../../include/openssl/rc4.h | ||
| 597 | v3err.o: ../../include/openssl/rc5.h ../../include/openssl/ripemd.h | ||
| 416 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 598 | v3err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 417 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 599 | v3err.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 418 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 600 | v3err.o: ../../include/openssl/symhacks.h ../../include/openssl/ui.h |
| 601 | v3err.o: ../../include/openssl/ui_compat.h ../../include/openssl/x509.h | ||
| 419 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h | 602 | v3err.o: ../../include/openssl/x509_vfy.h ../../include/openssl/x509v3.h |
| 420 | v3err.o: v3err.c | 603 | v3err.o: v3err.c |
diff --git a/src/lib/libssl/src/crypto/x509v3/ext_dat.h b/src/lib/libssl/src/crypto/x509v3/ext_dat.h index 586f116db5..2fb97d8925 100644 --- a/src/lib/libssl/src/crypto/x509v3/ext_dat.h +++ b/src/lib/libssl/src/crypto/x509v3/ext_dat.h | |||
| @@ -99,8 +99,8 @@ static X509V3_EXT_METHOD *standard_exts[] = { | |||
| 99 | &v3_ocsp_nocheck, | 99 | &v3_ocsp_nocheck, |
| 100 | &v3_ocsp_acutoff, | 100 | &v3_ocsp_acutoff, |
| 101 | &v3_ocsp_serviceloc, | 101 | &v3_ocsp_serviceloc, |
| 102 | &v3_crl_hold, | 102 | &v3_sinfo, |
| 103 | &v3_sinfo | 103 | &v3_crl_hold |
| 104 | }; | 104 | }; |
| 105 | 105 | ||
| 106 | /* Number of standard extensions */ | 106 | /* Number of standard extensions */ |
diff --git a/src/lib/libssl/src/crypto/x509v3/v3_info.c b/src/lib/libssl/src/crypto/x509v3/v3_info.c index 7f17f3231d..e1cf01a9b4 100644 --- a/src/lib/libssl/src/crypto/x509v3/v3_info.c +++ b/src/lib/libssl/src/crypto/x509v3/v3_info.c | |||
| @@ -158,6 +158,7 @@ static AUTHORITY_INFO_ACCESS *v2i_AUTHORITY_INFO_ACCESS(X509V3_EXT_METHOD *metho | |||
| 158 | objlen = ptmp - cnf->name; | 158 | objlen = ptmp - cnf->name; |
| 159 | ctmp.name = ptmp + 1; | 159 | ctmp.name = ptmp + 1; |
| 160 | ctmp.value = cnf->value; | 160 | ctmp.value = cnf->value; |
| 161 | GENERAL_NAME_free(acc->location); | ||
| 161 | if(!(acc->location = v2i_GENERAL_NAME(method, ctx, &ctmp))) | 162 | if(!(acc->location = v2i_GENERAL_NAME(method, ctx, &ctmp))) |
| 162 | goto err; | 163 | goto err; |
| 163 | if(!(objtmp = OPENSSL_malloc(objlen + 1))) { | 164 | if(!(objtmp = OPENSSL_malloc(objlen + 1))) { |
diff --git a/src/lib/libssl/src/demos/easy_tls/Makefile b/src/lib/libssl/src/demos/easy_tls/Makefile index 32a79c4cc9..bec7e7265e 100644 --- a/src/lib/libssl/src/demos/easy_tls/Makefile +++ b/src/lib/libssl/src/demos/easy_tls/Makefile | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | # Makefile for easy-tls example application (rudimentary client and server) | 1 | # Makefile for easy-tls example application (rudimentary client and server) |
| 2 | # $Id: Makefile,v 1.2 2002/09/05 22:12:11 markus Exp $ | 2 | # $Id: Makefile,v 1.3 2002/09/10 16:31:56 markus Exp $ |
| 3 | 3 | ||
| 4 | SOLARIS_CFLAGS=-Wall -pedantic -g -O2 | 4 | SOLARIS_CFLAGS=-Wall -pedantic -g -O2 |
| 5 | SOLARIS_LIBS=-lxnet | 5 | SOLARIS_LIBS=-lxnet |
diff --git a/src/lib/libssl/src/demos/easy_tls/cacerts.pem b/src/lib/libssl/src/demos/easy_tls/cacerts.pem index 036e3c3dc0..b6db7cf2bb 100644 --- a/src/lib/libssl/src/demos/easy_tls/cacerts.pem +++ b/src/lib/libssl/src/demos/easy_tls/cacerts.pem | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | $Id: cacerts.pem,v 1.2 2002/09/05 22:12:11 markus Exp $ | 1 | $Id: cacerts.pem,v 1.3 2002/09/10 16:31:56 markus Exp $ |
| 2 | 2 | ||
| 3 | issuer= /C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test PCA (1024 bit) | 3 | issuer= /C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test PCA (1024 bit) |
| 4 | subject=/C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test CA (1024 bit) | 4 | subject=/C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test CA (1024 bit) |
diff --git a/src/lib/libssl/src/demos/easy_tls/cert.pem b/src/lib/libssl/src/demos/easy_tls/cert.pem index ab38de65e7..3fcf302e2b 100644 --- a/src/lib/libssl/src/demos/easy_tls/cert.pem +++ b/src/lib/libssl/src/demos/easy_tls/cert.pem | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | $Id: cert.pem,v 1.2 2002/09/05 22:12:11 markus Exp $ | 1 | $Id: cert.pem,v 1.3 2002/09/10 16:31:56 markus Exp $ |
| 2 | 2 | ||
| 3 | Example certificate and key. | 3 | Example certificate and key. |
| 4 | 4 | ||
diff --git a/src/lib/libssl/src/demos/easy_tls/easy-tls.c b/src/lib/libssl/src/demos/easy_tls/easy-tls.c index 70f7ae3c11..c958f4b609 100644 --- a/src/lib/libssl/src/demos/easy_tls/easy-tls.c +++ b/src/lib/libssl/src/demos/easy_tls/easy-tls.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* -*- Mode: C; c-file-style: "bsd" -*- */ | 1 | /* -*- Mode: C; c-file-style: "bsd" -*- */ |
| 2 | /* | 2 | /* |
| 3 | * easy-tls.c -- generic TLS proxy. | 3 | * easy-tls.c -- generic TLS proxy. |
| 4 | * $Id: easy-tls.c,v 1.2 2002/09/05 22:12:11 markus Exp $ | 4 | * $Id: easy-tls.c,v 1.3 2002/09/10 16:31:56 markus Exp $ |
| 5 | */ | 5 | */ |
| 6 | /* | 6 | /* |
| 7 | (c) Copyright 1999 Bodo Moeller. All rights reserved. | 7 | (c) Copyright 1999 Bodo Moeller. All rights reserved. |
| @@ -73,7 +73,7 @@ | |||
| 73 | */ | 73 | */ |
| 74 | 74 | ||
| 75 | static char const rcsid[] = | 75 | static char const rcsid[] = |
| 76 | "$Id: easy-tls.c,v 1.2 2002/09/05 22:12:11 markus Exp $"; | 76 | "$Id: easy-tls.c,v 1.3 2002/09/10 16:31:56 markus Exp $"; |
| 77 | 77 | ||
| 78 | #include <assert.h> | 78 | #include <assert.h> |
| 79 | #include <errno.h> | 79 | #include <errno.h> |
diff --git a/src/lib/libssl/src/demos/easy_tls/easy-tls.h b/src/lib/libssl/src/demos/easy_tls/easy-tls.h index 3133200443..7ea26203c1 100644 --- a/src/lib/libssl/src/demos/easy_tls/easy-tls.h +++ b/src/lib/libssl/src/demos/easy_tls/easy-tls.h | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* -*- Mode: C; c-file-style: "bsd" -*- */ | 1 | /* -*- Mode: C; c-file-style: "bsd" -*- */ |
| 2 | /* | 2 | /* |
| 3 | * easy-tls.h -- generic TLS proxy. | 3 | * easy-tls.h -- generic TLS proxy. |
| 4 | * $Id: easy-tls.h,v 1.2 2002/09/05 22:12:11 markus Exp $ | 4 | * $Id: easy-tls.h,v 1.3 2002/09/10 16:31:56 markus Exp $ |
| 5 | */ | 5 | */ |
| 6 | /* | 6 | /* |
| 7 | * (c) Copyright 1999 Bodo Moeller. All rights reserved. | 7 | * (c) Copyright 1999 Bodo Moeller. All rights reserved. |
diff --git a/src/lib/libssl/src/demos/easy_tls/test.c b/src/lib/libssl/src/demos/easy_tls/test.c index f86141d1d8..9b478c3fd8 100644 --- a/src/lib/libssl/src/demos/easy_tls/test.c +++ b/src/lib/libssl/src/demos/easy_tls/test.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* test.c */ | 1 | /* test.c */ |
| 2 | /* $Id: test.c,v 1.2 2002/09/05 22:12:11 markus Exp $ */ | 2 | /* $Id: test.c,v 1.3 2002/09/10 16:31:56 markus Exp $ */ |
| 3 | 3 | ||
| 4 | #define L_PORT 9999 | 4 | #define L_PORT 9999 |
| 5 | #define C_PORT 443 | 5 | #define C_PORT 443 |
diff --git a/src/lib/libssl/src/demos/easy_tls/test.h b/src/lib/libssl/src/demos/easy_tls/test.h index 575391c00b..b5792a0a81 100644 --- a/src/lib/libssl/src/demos/easy_tls/test.h +++ b/src/lib/libssl/src/demos/easy_tls/test.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* test.h */ | 1 | /* test.h */ |
| 2 | /* $Id: test.h,v 1.2 2002/09/05 22:12:11 markus Exp $ */ | 2 | /* $Id: test.h,v 1.3 2002/09/10 16:31:56 markus Exp $ */ |
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | void test_process_init(int fd, int client_p, void *apparg); | 5 | void test_process_init(int fd, int client_p, void *apparg); |
diff --git a/src/lib/libssl/src/doc/apps/ciphers.pod b/src/lib/libssl/src/doc/apps/ciphers.pod index 21077614a7..b7e577b24f 100644 --- a/src/lib/libssl/src/doc/apps/ciphers.pod +++ b/src/lib/libssl/src/doc/apps/ciphers.pod | |||
| @@ -108,10 +108,20 @@ the default cipher list. This is determined at compile time and is normally | |||
| 108 | B<ALL:!ADH:RC4+RSA:+SSLv2:@STRENGTH>. This must be the first cipher string | 108 | B<ALL:!ADH:RC4+RSA:+SSLv2:@STRENGTH>. This must be the first cipher string |
| 109 | specified. | 109 | specified. |
| 110 | 110 | ||
| 111 | =item B<COMPLEMENTOFDEFAULT> | ||
| 112 | |||
| 113 | the ciphers included in B<ALL>, but not enabled by default. Currently | ||
| 114 | this is B<ADH>. Note that this rule does not cover B<eNULL>, which is | ||
| 115 | not included by B<ALL> (use B<COMPLEMENTOFALL> if necessary). | ||
| 116 | |||
| 111 | =item B<ALL> | 117 | =item B<ALL> |
| 112 | 118 | ||
| 113 | all ciphers suites except the B<eNULL> ciphers which must be explicitly enabled. | 119 | all ciphers suites except the B<eNULL> ciphers which must be explicitly enabled. |
| 114 | 120 | ||
| 121 | =item B<COMPLEMENTOFALL> | ||
| 122 | |||
| 123 | the cipher suites not enabled by B<ALL>, currently being B<eNULL>. | ||
| 124 | |||
| 115 | =item B<HIGH> | 125 | =item B<HIGH> |
| 116 | 126 | ||
| 117 | "high" encryption cipher suites. This currently means those with key lengths larger | 127 | "high" encryption cipher suites. This currently means those with key lengths larger |
| @@ -339,8 +349,22 @@ Include only 3DES ciphers and then place RSA ciphers last: | |||
| 339 | 349 | ||
| 340 | openssl ciphers -v '3DES:+RSA' | 350 | openssl ciphers -v '3DES:+RSA' |
| 341 | 351 | ||
| 352 | Include all RC4 ciphers but leave out those without authentication: | ||
| 353 | |||
| 354 | openssl ciphers -v 'RC4:!COMPLEMENTOFDEFAULT' | ||
| 355 | |||
| 356 | Include all chiphers with RSA authentication but leave out ciphers without | ||
| 357 | encryption. | ||
| 358 | |||
| 359 | openssl ciphers -v 'RSA:!COMPLEMENTOFALL' | ||
| 360 | |||
| 342 | =head1 SEE ALSO | 361 | =head1 SEE ALSO |
| 343 | 362 | ||
| 344 | L<s_client(1)|s_client(1)>, L<s_server(1)|s_server(1)>, L<ssl(3)|ssl(3)> | 363 | L<s_client(1)|s_client(1)>, L<s_server(1)|s_server(1)>, L<ssl(3)|ssl(3)> |
| 345 | 364 | ||
| 365 | =head1 HISTORY | ||
| 366 | |||
| 367 | The B<COMPLENTOFALL> and B<COMPLEMENTOFDEFAULT> selection options were | ||
| 368 | added in version 0.9.7. | ||
| 369 | |||
| 346 | =cut | 370 | =cut |
diff --git a/src/lib/libssl/src/doc/apps/crl2pkcs7.pod b/src/lib/libssl/src/doc/apps/crl2pkcs7.pod index da199b044a..3797bc0df4 100644 --- a/src/lib/libssl/src/doc/apps/crl2pkcs7.pod +++ b/src/lib/libssl/src/doc/apps/crl2pkcs7.pod | |||
| @@ -6,12 +6,13 @@ crl2pkcs7 - Create a PKCS#7 structure from a CRL and certificates. | |||
| 6 | 6 | ||
| 7 | =head1 SYNOPSIS | 7 | =head1 SYNOPSIS |
| 8 | 8 | ||
| 9 | B<openssl> B<pkcs7> | 9 | B<openssl> B<crl2pkcs7> |
| 10 | [B<-inform PEM|DER>] | 10 | [B<-inform PEM|DER>] |
| 11 | [B<-outform PEM|DER>] | 11 | [B<-outform PEM|DER>] |
| 12 | [B<-in filename>] | 12 | [B<-in filename>] |
| 13 | [B<-out filename>] | 13 | [B<-out filename>] |
| 14 | [B<-print_certs>] | 14 | [B<-certfile filename>] |
| 15 | [B<-nocrl>] | ||
| 15 | 16 | ||
| 16 | =head1 DESCRIPTION | 17 | =head1 DESCRIPTION |
| 17 | 18 | ||
diff --git a/src/lib/libssl/src/doc/crypto/BN_zero.pod b/src/lib/libssl/src/doc/crypto/BN_zero.pod index 3c64a65697..b555ec3988 100644 --- a/src/lib/libssl/src/doc/crypto/BN_zero.pod +++ b/src/lib/libssl/src/doc/crypto/BN_zero.pod | |||
| @@ -53,4 +53,7 @@ BN_zero(), BN_one() and BN_set_word() are available in all versions of | |||
| 53 | SSLeay and OpenSSL. BN_value_one() and BN_get_word() were added in | 53 | SSLeay and OpenSSL. BN_value_one() and BN_get_word() were added in |
| 54 | SSLeay 0.8. | 54 | SSLeay 0.8. |
| 55 | 55 | ||
| 56 | BN_value_one() was changed to return a true const BIGNUM * in OpenSSL | ||
| 57 | 0.9.7. | ||
| 58 | |||
| 56 | =cut | 59 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/DH_get_ex_new_index.pod b/src/lib/libssl/src/doc/crypto/DH_get_ex_new_index.pod index 82e2548bcd..fa5eab2650 100644 --- a/src/lib/libssl/src/doc/crypto/DH_get_ex_new_index.pod +++ b/src/lib/libssl/src/doc/crypto/DH_get_ex_new_index.pod | |||
| @@ -26,7 +26,7 @@ as described in L<RSA_get_ex_new_index(3)>. | |||
| 26 | 26 | ||
| 27 | =head1 SEE ALSO | 27 | =head1 SEE ALSO |
| 28 | 28 | ||
| 29 | L<RSA_get_ex_new_index()|RSA_get_ex_new_index()>, L<dh(3)|dh(3)> | 29 | L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, L<dh(3)|dh(3)> |
| 30 | 30 | ||
| 31 | =head1 HISTORY | 31 | =head1 HISTORY |
| 32 | 32 | ||
diff --git a/src/lib/libssl/src/doc/crypto/EVP_DigestInit.pod b/src/lib/libssl/src/doc/crypto/EVP_DigestInit.pod index acd4d0167a..58afd8f0b8 100644 --- a/src/lib/libssl/src/doc/crypto/EVP_DigestInit.pod +++ b/src/lib/libssl/src/doc/crypto/EVP_DigestInit.pod | |||
| @@ -245,7 +245,12 @@ L<SHA1(3)|SHA1(3)> | |||
| 245 | EVP_DigestInit(), EVP_DigestUpdate() and EVP_DigestFinal() are | 245 | EVP_DigestInit(), EVP_DigestUpdate() and EVP_DigestFinal() are |
| 246 | available in all versions of SSLeay and OpenSSL. | 246 | available in all versions of SSLeay and OpenSSL. |
| 247 | 247 | ||
| 248 | EVP_DigestInit_ex(), EVP_DigestFinal_ex() and EVP_MD_CTX_copy_ex() | 248 | EVP_MD_CTX_init(), EVP_MD_CTX_create(), EVP_MD_CTX_copy_ex(), |
| 249 | were added in OpenSSL 0.9.7. | 249 | EVP_MD_CTX_cleanup(), EVP_MD_CTX_destroy(), EVP_DigestInit_ex() |
| 250 | and EVP_DigestFinal_ex() were added in OpenSSL 0.9.7. | ||
| 251 | |||
| 252 | EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), | ||
| 253 | EVP_dss(), EVP_dss1(), EVP_mdc2() and EVP_ripemd160() were | ||
| 254 | changed to return truely const EVP_MD * in OpenSSL 0.9.7. | ||
| 250 | 255 | ||
| 251 | =cut | 256 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/EVP_EncryptInit.pod b/src/lib/libssl/src/doc/crypto/EVP_EncryptInit.pod index 371b6a2287..75cceb1ca2 100644 --- a/src/lib/libssl/src/doc/crypto/EVP_EncryptInit.pod +++ b/src/lib/libssl/src/doc/crypto/EVP_EncryptInit.pod | |||
| @@ -501,4 +501,9 @@ L<evp(3)|evp(3)> | |||
| 501 | 501 | ||
| 502 | =head1 HISTORY | 502 | =head1 HISTORY |
| 503 | 503 | ||
| 504 | EVP_CIPHER_CTX_init(), EVP_EncryptInit_ex(), EVP_EncryptFinal_ex(), | ||
| 505 | EVP_DecryptInit_ex(), EVP_DecryptFinal_ex(), EVP_CipherInit_ex(), | ||
| 506 | EVP_CipherFinal_ex() and EVP_CIPHER_CTX_set_padding() appeared in | ||
| 507 | OpenSSL 0.9.7. | ||
| 508 | |||
| 504 | =cut | 509 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/EVP_SignInit.pod b/src/lib/libssl/src/doc/crypto/EVP_SignInit.pod index b1ac129430..e65e54ce52 100644 --- a/src/lib/libssl/src/doc/crypto/EVP_SignInit.pod +++ b/src/lib/libssl/src/doc/crypto/EVP_SignInit.pod | |||
| @@ -91,6 +91,6 @@ L<SHA1(3)|SHA1(3)>, L<digest(1)|digest(1)> | |||
| 91 | EVP_SignInit(), EVP_SignUpdate() and EVP_SignFinal() are | 91 | EVP_SignInit(), EVP_SignUpdate() and EVP_SignFinal() are |
| 92 | available in all versions of SSLeay and OpenSSL. | 92 | available in all versions of SSLeay and OpenSSL. |
| 93 | 93 | ||
| 94 | EVP_SignInit_ex() was added in OpenSSL 0.9.7 | 94 | EVP_SignInit_ex() was added in OpenSSL 0.9.7. |
| 95 | 95 | ||
| 96 | =cut | 96 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/EVP_VerifyInit.pod b/src/lib/libssl/src/doc/crypto/EVP_VerifyInit.pod index 80c656fde8..b6afaedee5 100644 --- a/src/lib/libssl/src/doc/crypto/EVP_VerifyInit.pod +++ b/src/lib/libssl/src/doc/crypto/EVP_VerifyInit.pod | |||
| @@ -74,7 +74,7 @@ L<EVP_SignInit(3)|EVP_SignInit(3)>, | |||
| 74 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, | 74 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, |
| 75 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, | 75 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, |
| 76 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, | 76 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, |
| 77 | L<sha(3)|sha(3)>, L<digest(1)|digest(1)> | 77 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> |
| 78 | 78 | ||
| 79 | =head1 HISTORY | 79 | =head1 HISTORY |
| 80 | 80 | ||
diff --git a/src/lib/libssl/src/doc/crypto/RSA_check_key.pod b/src/lib/libssl/src/doc/crypto/RSA_check_key.pod index 1db6d736ab..a5198f3db5 100644 --- a/src/lib/libssl/src/doc/crypto/RSA_check_key.pod +++ b/src/lib/libssl/src/doc/crypto/RSA_check_key.pod | |||
| @@ -18,7 +18,9 @@ in fact prime, and that B<n = p*q>. | |||
| 18 | It also checks that B<d*e = 1 mod (p-1*q-1)>, | 18 | It also checks that B<d*e = 1 mod (p-1*q-1)>, |
| 19 | and that B<dmp1>, B<dmq1> and B<iqmp> are set correctly or are B<NULL>. | 19 | and that B<dmp1>, B<dmq1> and B<iqmp> are set correctly or are B<NULL>. |
| 20 | 20 | ||
| 21 | The key's public components may not be B<NULL>. | 21 | As such, this function can not be used with any arbitrary RSA key object, |
| 22 | even if it is otherwise fit for regular RSA operation. See B<NOTES> for more | ||
| 23 | information. | ||
| 22 | 24 | ||
| 23 | =head1 RETURN VALUE | 25 | =head1 RETURN VALUE |
| 24 | 26 | ||
| @@ -28,12 +30,38 @@ RSA_check_key() returns 1 if B<rsa> is a valid RSA key, and 0 otherwise. | |||
| 28 | If the key is invalid or an error occurred, the reason code can be | 30 | If the key is invalid or an error occurred, the reason code can be |
| 29 | obtained using L<ERR_get_error(3)|ERR_get_error(3)>. | 31 | obtained using L<ERR_get_error(3)|ERR_get_error(3)>. |
| 30 | 32 | ||
| 33 | =head1 NOTES | ||
| 34 | |||
| 35 | This function does not work on RSA public keys that have only the modulus | ||
| 36 | and public exponent elements populated. It performs integrity checks on all | ||
| 37 | the RSA key material, so the RSA key structure must contain all the private | ||
| 38 | key data too. | ||
| 39 | |||
| 40 | Unlike most other RSA functions, this function does B<not> work | ||
| 41 | transparently with any underlying ENGINE implementation because it uses the | ||
| 42 | key data in the RSA structure directly. An ENGINE implementation can | ||
| 43 | override the way key data is stored and handled, and can even provide | ||
| 44 | support for HSM keys - in which case the RSA structure may contain B<no> | ||
| 45 | key data at all! If the ENGINE in question is only being used for | ||
| 46 | acceleration or analysis purposes, then in all likelihood the RSA key data | ||
| 47 | is complete and untouched, but this can't be assumed in the general case. | ||
| 48 | |||
| 49 | =head1 BUGS | ||
| 50 | |||
| 51 | A method of verifying the RSA key using opaque RSA API functions might need | ||
| 52 | to be considered. Right now RSA_check_key() simply uses the RSA structure | ||
| 53 | elements directly, bypassing the RSA_METHOD table altogether (and | ||
| 54 | completely violating encapsulation and object-orientation in the process). | ||
| 55 | The best fix will probably be to introduce a "check_key()" handler to the | ||
| 56 | RSA_METHOD function table so that alternative implementations can also | ||
| 57 | provide their own verifiers. | ||
| 58 | |||
| 31 | =head1 SEE ALSO | 59 | =head1 SEE ALSO |
| 32 | 60 | ||
| 33 | L<rsa(3)|rsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)> | 61 | L<rsa(3)|rsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)> |
| 34 | 62 | ||
| 35 | =head1 HISTORY | 63 | =head1 HISTORY |
| 36 | 64 | ||
| 37 | RSA_check() appeared in OpenSSL 0.9.4. | 65 | RSA_check_key() appeared in OpenSSL 0.9.4. |
| 38 | 66 | ||
| 39 | =cut | 67 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/err.pod b/src/lib/libssl/src/doc/crypto/err.pod index 264e30103d..6f729554d2 100644 --- a/src/lib/libssl/src/doc/crypto/err.pod +++ b/src/lib/libssl/src/doc/crypto/err.pod | |||
| @@ -172,7 +172,7 @@ ERR_get_string_table(void) respectively. | |||
| 172 | =head1 SEE ALSO | 172 | =head1 SEE ALSO |
| 173 | 173 | ||
| 174 | L<CRYPTO_set_id_callback(3)|CRYPTO_set_id_callback(3)>, | 174 | L<CRYPTO_set_id_callback(3)|CRYPTO_set_id_callback(3)>, |
| 175 | L<CRYPTO_set_locking_callback(3)|<CRYPTO_set_locking_callback(3)>, | 175 | L<CRYPTO_set_locking_callback(3)|CRYPTO_set_locking_callback(3)>, |
| 176 | L<ERR_get_error(3)|ERR_get_error(3)>, | 176 | L<ERR_get_error(3)|ERR_get_error(3)>, |
| 177 | L<ERR_GET_LIB(3)|ERR_GET_LIB(3)>, | 177 | L<ERR_GET_LIB(3)|ERR_GET_LIB(3)>, |
| 178 | L<ERR_clear_error(3)|ERR_clear_error(3)>, | 178 | L<ERR_clear_error(3)|ERR_clear_error(3)>, |
diff --git a/src/lib/libssl/src/doc/crypto/hmac.pod b/src/lib/libssl/src/doc/crypto/hmac.pod index 3cc29dfc83..b1f5f368ed 100644 --- a/src/lib/libssl/src/doc/crypto/hmac.pod +++ b/src/lib/libssl/src/doc/crypto/hmac.pod | |||
| @@ -96,4 +96,7 @@ L<SHA1(3)|SHA1(3)>, L<EVP_DigestInit(3)|EVP_DigestInit(3)> | |||
| 96 | HMAC(), HMAC_Init(), HMAC_Update(), HMAC_Final() and HMAC_cleanup() | 96 | HMAC(), HMAC_Init(), HMAC_Update(), HMAC_Final() and HMAC_cleanup() |
| 97 | are available since SSLeay 0.9.0. | 97 | are available since SSLeay 0.9.0. |
| 98 | 98 | ||
| 99 | HMAC_CTX_init(), HMAC_Init_ex() and HMAC_CTX_cleanup() are available | ||
| 100 | since OpenSSL 0.9.7. | ||
| 101 | |||
| 99 | =cut | 102 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/lhash.pod b/src/lib/libssl/src/doc/crypto/lhash.pod index 0bac11421e..dcdbb43a8e 100644 --- a/src/lib/libssl/src/doc/crypto/lhash.pod +++ b/src/lib/libssl/src/doc/crypto/lhash.pod | |||
| @@ -286,4 +286,9 @@ lh_error() was added in SSLeay 0.9.1b. | |||
| 286 | 286 | ||
| 287 | This manpage is derived from the SSLeay documentation. | 287 | This manpage is derived from the SSLeay documentation. |
| 288 | 288 | ||
| 289 | In OpenSSL 0.9.7, all lhash functions that were passed function pointers | ||
| 290 | were changed for better type safety, and the function types LHASH_COMP_FN_TYPE, | ||
| 291 | LHASH_HASH_FN_TYPE, LHASH_DOALL_FN_TYPE and LHASH_DOALL_ARG_FN_TYPE | ||
| 292 | became available. | ||
| 293 | |||
| 289 | =cut | 294 | =cut |
diff --git a/src/lib/libssl/src/doc/crypto/rsa.pod b/src/lib/libssl/src/doc/crypto/rsa.pod index 09ad30cab1..2b93a12b65 100644 --- a/src/lib/libssl/src/doc/crypto/rsa.pod +++ b/src/lib/libssl/src/doc/crypto/rsa.pod | |||
| @@ -110,7 +110,7 @@ L<RSA_blinding_on(3)|RSA_blinding_on(3)>, | |||
| 110 | L<RSA_set_method(3)|RSA_set_method(3)>, L<RSA_print(3)|RSA_print(3)>, | 110 | L<RSA_set_method(3)|RSA_set_method(3)>, L<RSA_print(3)|RSA_print(3)>, |
| 111 | L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, | 111 | L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>, |
| 112 | L<RSA_private_encrypt(3)|RSA_private_encrypt(3)>, | 112 | L<RSA_private_encrypt(3)|RSA_private_encrypt(3)>, |
| 113 | L<RSA_sign_ASN_OCTET_STRING(3)|RSA_sign_ASN_OCTET_STRING(3)>, | 113 | L<RSA_sign_ASN1_OCTET_STRING(3)|RSA_sign_ASN1_OCTET_STRING(3)>, |
| 114 | L<RSA_padding_add_PKCS1_type_1(3)|RSA_padding_add_PKCS1_type_1(3)> | 114 | L<RSA_padding_add_PKCS1_type_1(3)|RSA_padding_add_PKCS1_type_1(3)> |
| 115 | 115 | ||
| 116 | =cut | 116 | =cut |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod b/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod index d59a7db636..c8b99f4eef 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_cache_size.pod | |||
| @@ -27,7 +27,7 @@ case is the size 0, which is used for unlimited size. | |||
| 27 | 27 | ||
| 28 | When the maximum number of sessions is reached, no more new sessions are | 28 | When the maximum number of sessions is reached, no more new sessions are |
| 29 | added to the cache. New space may be added by calling | 29 | added to the cache. New space may be added by calling |
| 30 | L<SSL_CTX_flush_sessions(3)|<SSL_CTX_flush_sessions(3)> to remove | 30 | L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)> to remove |
| 31 | expired sessions. | 31 | expired sessions. |
| 32 | 32 | ||
| 33 | If the size of the session cache is reduced and more sessions are already | 33 | If the size of the session cache is reduced and more sessions are already |
| @@ -46,6 +46,6 @@ SSL_CTX_sess_get_cache_size() returns the currently valid size. | |||
| 46 | L<ssl(3)|ssl(3)>, | 46 | L<ssl(3)|ssl(3)>, |
| 47 | L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>, | 47 | L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>, |
| 48 | L<SSL_CTX_sess_number(3)|SSL_CTX_sess_number(3)>, | 48 | L<SSL_CTX_sess_number(3)|SSL_CTX_sess_number(3)>, |
| 49 | L<SSL_CTX_flush_sessions(3)|<SSL_CTX_flush_sessions(3)> | 49 | L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)> |
| 50 | 50 | ||
| 51 | =cut | 51 | =cut |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod b/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod index 6e0ef00632..7c0b2baf6c 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_CTX_sess_set_get_cb.pod | |||
| @@ -79,7 +79,7 @@ L<SSL_SESSION_free(3)|SSL_SESSION_free(3)>. | |||
| 79 | 79 | ||
| 80 | L<ssl(3)|ssl(3)>, L<d2i_SSL_SESSION(3)|d2i_SSL_SESSION(3)>, | 80 | L<ssl(3)|ssl(3)>, L<d2i_SSL_SESSION(3)|d2i_SSL_SESSION(3)>, |
| 81 | L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>, | 81 | L<SSL_CTX_set_session_cache_mode(3)|SSL_CTX_set_session_cache_mode(3)>, |
| 82 | L<SSL_CTX_flush_sessions(3)|<SSL_CTX_flush_sessions(3)>, | 82 | L<SSL_CTX_flush_sessions(3)|SSL_CTX_flush_sessions(3)>, |
| 83 | L<SSL_SESSION_free(3)|SSL_SESSION_free(3)> | 83 | L<SSL_SESSION_free(3)|SSL_SESSION_free(3)> |
| 84 | 84 | ||
| 85 | =cut | 85 | =cut |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod b/src/lib/libssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod index 53e1827713..3465b5c7bb 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_CTX_set_client_cert_cb.pod | |||
| @@ -15,8 +15,10 @@ SSL_CTX_set_client_cert_cb, SSL_CTX_get_client_cert_cb - handle client certifica | |||
| 15 | =head1 DESCRIPTION | 15 | =head1 DESCRIPTION |
| 16 | 16 | ||
| 17 | SSL_CTX_set_client_cert_cb() sets the B<client_cert_cb()> callback, that is | 17 | SSL_CTX_set_client_cert_cb() sets the B<client_cert_cb()> callback, that is |
| 18 | called when a client certificate is requested by a server. | 18 | called when a client certificate is requested by a server and no certificate |
| 19 | When B<client_cert_cb()> is NULL, not callback function is used. | 19 | was yet set for the SSL object. |
| 20 | |||
| 21 | When B<client_cert_cb()> is NULL, no callback function is used. | ||
| 20 | 22 | ||
| 21 | SSL_CTX_get_client_cert_cb() returns a pointer to the currently set callback | 23 | SSL_CTX_get_client_cert_cb() returns a pointer to the currently set callback |
| 22 | function. | 24 | function. |
| @@ -25,9 +27,13 @@ client_cert_cb() is the application defined callback. If it wants to | |||
| 25 | set a certificate, a certificate/private key combination must be set | 27 | set a certificate, a certificate/private key combination must be set |
| 26 | using the B<x509> and B<pkey> arguments and "1" must be returned. The | 28 | using the B<x509> and B<pkey> arguments and "1" must be returned. The |
| 27 | certificate will be installed into B<ssl>, see the NOTES and BUGS sections. | 29 | certificate will be installed into B<ssl>, see the NOTES and BUGS sections. |
| 28 | If no certificate should be set, "0" has to be returned and the default | 30 | If no certificate should be set, "0" has to be returned and no certificate |
| 29 | certificate will be sent. A fatal error can be indicated by returning | 31 | will be sent. A negative return value will suspend the handshake and the |
| 30 | a negative value, in which case the handshake will be canceled. | 32 | handshake function will return immediatly. L<SSL_get_error(3)|SSL_get_error(3)> |
| 33 | will return SSL_ERROR_WANT_X509_LOOKUP to indicate, that the handshake was | ||
| 34 | suspended. The next call to the handshake function will again lead to the call | ||
| 35 | of client_cert_cb(). It is the job of the client_cert_cb() to store information | ||
| 36 | about the state of the last call, if required to continue. | ||
| 31 | 37 | ||
| 32 | =head1 NOTES | 38 | =head1 NOTES |
| 33 | 39 | ||
| @@ -35,26 +41,24 @@ During a handshake (or renegotiation) a server may request a certificate | |||
| 35 | from the client. A client certificate must only be sent, when the server | 41 | from the client. A client certificate must only be sent, when the server |
| 36 | did send the request. | 42 | did send the request. |
| 37 | 43 | ||
| 38 | When no callback function is set, an OpenSSL client will send the certificate | 44 | When a certificate was set using the |
| 39 | that was set using the | 45 | L<SSL_CTX_use_certificate(3)|SSL_CTX_use_certificate(3)> family of functions, |
| 40 | L<SSL_CTX_use_certificate(3)|SSL_CTX_use_certificate(3)> family of functions. | 46 | it will be sent to the server. The TLS standard requires that only a |
| 41 | The TLS standard requires that only a certificate is sent, if it matches | 47 | certificate is sent, if it matches the list of acceptable CAs sent by the |
| 42 | the list of acceptable CAs sent by the server. This constraint is | 48 | server. This constraint is violated by the default behavior of the OpenSSL |
| 43 | violated by the default behavior of the OpenSSL library. Using the | 49 | library. Using the callback function it is possible to implement a proper |
| 44 | callback function it is possible to implement a proper selection routine | 50 | selection routine or to allow a user interaction to choose the certificate to |
| 45 | or to allow a user interaction to choose the certificate to be sent. | 51 | be sent. |
| 46 | The callback function can obtain the list of acceptable CAs using the | 52 | |
| 47 | L<SSL_get_client_CA_list(3)|SSL_get_client_CA_list(3)> function. | 53 | If a callback function is defined and no certificate was yet defined for the |
| 48 | 54 | SSL object, the callback function will be called. | |
| 49 | If a callback function is defined, the callback function will be called. | ||
| 50 | If the callback function returns a certificate, the OpenSSL library | 55 | If the callback function returns a certificate, the OpenSSL library |
| 51 | will try to load the private key and certificate data into the SSL | 56 | will try to load the private key and certificate data into the SSL |
| 52 | object using SSL_use_certificate() and SSL_use_private_key() functions. | 57 | object using the SSL_use_certificate() and SSL_use_private_key() functions. |
| 53 | Thus it will permanently override the certificate and key previously | 58 | Thus it will permanently install the certificate and key for this SSL |
| 54 | installed and will not be reset by calling L<SSL_clear(3)|SSL_clear(3)>. | 59 | object. It will not be reset by calling L<SSL_clear(3)|SSL_clear(3)>. |
| 55 | If the callback returns no certificate, the OpenSSL library will send | 60 | If the callback returns no certificate, the OpenSSL library will not send |
| 56 | the certificate previously installed for the SSL_CTX object or the specific | 61 | a certificate. |
| 57 | certificate of the SSL object, if available. | ||
| 58 | 62 | ||
| 59 | =head1 BUGS | 63 | =head1 BUGS |
| 60 | 64 | ||
diff --git a/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod b/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod index c10055c6e7..f5e2ec3555 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_CTX_set_options.pod | |||
| @@ -35,7 +35,7 @@ operation (|). Options can only be added but can never be reset. | |||
| 35 | SSL_CTX_set_options() and SSL_set_options() affect the (external) | 35 | SSL_CTX_set_options() and SSL_set_options() affect the (external) |
| 36 | protocol behaviour of the SSL library. The (internal) behaviour of | 36 | protocol behaviour of the SSL library. The (internal) behaviour of |
| 37 | the API can be changed by using the similar | 37 | the API can be changed by using the similar |
| 38 | L<SSL_CTX_set_modes(3)|SSL_CTX_set_modes(3)> and SSL_set_modes() functions. | 38 | L<SSL_CTX_set_mode(3)|SSL_CTX_set_mode(3)> and SSL_set_mode() functions. |
| 39 | 39 | ||
| 40 | During a handshake, the option settings of the SSL object are used. When | 40 | During a handshake, the option settings of the SSL object are used. When |
| 41 | a new SSL object is created from a context using SSL_new(), the current | 41 | a new SSL object is created from a context using SSL_new(), the current |
| @@ -100,14 +100,22 @@ doing a re-connect, always takes the first cipher in the cipher list. | |||
| 100 | 100 | ||
| 101 | ... | 101 | ... |
| 102 | 102 | ||
| 103 | =item SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS | ||
| 104 | |||
| 105 | Disables a countermeasure against a SSL 3.0/TLS 1.0 protocol | ||
| 106 | vulnerability affecting CBC ciphers, which cannot be handled by some | ||
| 107 | broken SSL implementations. This option has no effect for connections | ||
| 108 | using other ciphers. | ||
| 109 | |||
| 103 | =item SSL_OP_ALL | 110 | =item SSL_OP_ALL |
| 104 | 111 | ||
| 105 | All of the above bug workarounds. | 112 | All of the above bug workarounds. |
| 106 | 113 | ||
| 107 | =back | 114 | =back |
| 108 | 115 | ||
| 109 | It is safe and recommended to use B<SSL_OP_ALL> to enable the bug workaround | 116 | It is usually safe to use B<SSL_OP_ALL> to enable the bug workaround |
| 110 | options. | 117 | options if compatibility with somewhat broken implementations is |
| 118 | desired. | ||
| 111 | 119 | ||
| 112 | The following B<modifying> options are available: | 120 | The following B<modifying> options are available: |
| 113 | 121 | ||
| @@ -219,4 +227,9 @@ B<SSL_OP_TLS_ROLLBACK_BUG> has been added in OpenSSL 0.9.6 and was automatically | |||
| 219 | enabled with B<SSL_OP_ALL>. As of 0.9.7, it is no longer included in B<SSL_OP_ALL> | 227 | enabled with B<SSL_OP_ALL>. As of 0.9.7, it is no longer included in B<SSL_OP_ALL> |
| 220 | and must be explicitly set. | 228 | and must be explicitly set. |
| 221 | 229 | ||
| 230 | B<SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS> has been added in OpenSSL 0.9.6e. | ||
| 231 | Versions up to OpenSSL 0.9.6c do not include the countermeasure that | ||
| 232 | can be disabled with this option (in OpenSSL 0.9.6d, it was always | ||
| 233 | enabled). | ||
| 234 | |||
| 222 | =cut | 235 | =cut |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_accept.pod b/src/lib/libssl/src/doc/ssl/SSL_accept.pod index ac6caf9baa..a673edba85 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_accept.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_accept.pod | |||
| @@ -69,6 +69,7 @@ to find out the reason. | |||
| 69 | L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_connect(3)|SSL_connect(3)>, | 69 | L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_connect(3)|SSL_connect(3)>, |
| 70 | L<SSL_shutdown(3)|SSL_shutdown(3)>, L<ssl(3)|ssl(3)>, L<bio(3)|bio(3)>, | 70 | L<SSL_shutdown(3)|SSL_shutdown(3)>, L<ssl(3)|ssl(3)>, L<bio(3)|bio(3)>, |
| 71 | L<SSL_set_connect_state(3)|SSL_set_connect_state(3)>, | 71 | L<SSL_set_connect_state(3)|SSL_set_connect_state(3)>, |
| 72 | L<SSL_do_handshake(3)|SSL_do_handshake(3)>, | ||
| 72 | L<SSL_CTX_new(3)|SSL_CTX_new(3)> | 73 | L<SSL_CTX_new(3)|SSL_CTX_new(3)> |
| 73 | 74 | ||
| 74 | =cut | 75 | =cut |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_connect.pod b/src/lib/libssl/src/doc/ssl/SSL_connect.pod index 766f1876aa..8426310c0d 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_connect.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_connect.pod | |||
| @@ -66,6 +66,7 @@ to find out the reason. | |||
| 66 | L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_accept(3)|SSL_accept(3)>, | 66 | L<SSL_get_error(3)|SSL_get_error(3)>, L<SSL_accept(3)|SSL_accept(3)>, |
| 67 | L<SSL_shutdown(3)|SSL_shutdown(3)>, L<ssl(3)|ssl(3)>, L<bio(3)|bio(3)>, | 67 | L<SSL_shutdown(3)|SSL_shutdown(3)>, L<ssl(3)|ssl(3)>, L<bio(3)|bio(3)>, |
| 68 | L<SSL_set_connect_state(3)|SSL_set_connect_state(3)>, | 68 | L<SSL_set_connect_state(3)|SSL_set_connect_state(3)>, |
| 69 | L<SSL_do_handshake(3)|SSL_do_handshake(3)>, | ||
| 69 | L<SSL_CTX_new(3)|SSL_CTX_new(3)> | 70 | L<SSL_CTX_new(3)|SSL_CTX_new(3)> |
| 70 | 71 | ||
| 71 | =cut | 72 | =cut |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_get_error.pod b/src/lib/libssl/src/doc/ssl/SSL_get_error.pod index f700bf0ace..fe28dd942a 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_get_error.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_get_error.pod | |||
| @@ -13,7 +13,7 @@ SSL_get_error - obtain result code for TLS/SSL I/O operation | |||
| 13 | =head1 DESCRIPTION | 13 | =head1 DESCRIPTION |
| 14 | 14 | ||
| 15 | SSL_get_error() returns a result code (suitable for the C "switch" | 15 | SSL_get_error() returns a result code (suitable for the C "switch" |
| 16 | statement) for a preceding call to SSL_connect(), SSL_accept(), | 16 | statement) for a preceding call to SSL_connect(), SSL_accept(), SSL_do_handshake(), |
| 17 | SSL_read(), SSL_peek(), or SSL_write() on B<ssl>. The value returned by | 17 | SSL_read(), SSL_peek(), or SSL_write() on B<ssl>. The value returned by |
| 18 | that TLS/SSL I/O function must be passed to SSL_get_error() in parameter | 18 | that TLS/SSL I/O function must be passed to SSL_get_error() in parameter |
| 19 | B<ret>. | 19 | B<ret>. |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_set_connect_state.pod b/src/lib/libssl/src/doc/ssl/SSL_set_connect_state.pod index 7adf8adfed..d88a057def 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_set_connect_state.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_set_connect_state.pod | |||
| @@ -49,6 +49,7 @@ information. | |||
| 49 | L<ssl(3)|ssl(3)>, L<SSL_new(3)|SSL_new(3)>, L<SSL_CTX_new(3)|SSL_CTX_new(3)>, | 49 | L<ssl(3)|ssl(3)>, L<SSL_new(3)|SSL_new(3)>, L<SSL_CTX_new(3)|SSL_CTX_new(3)>, |
| 50 | L<SSL_connect(3)|SSL_connect(3)>, L<SSL_accept(3)|SSL_accept(3)>, | 50 | L<SSL_connect(3)|SSL_connect(3)>, L<SSL_accept(3)|SSL_accept(3)>, |
| 51 | L<SSL_write(3)|SSL_write(3)>, L<SSL_read(3)|SSL_read(3)>, | 51 | L<SSL_write(3)|SSL_write(3)>, L<SSL_read(3)|SSL_read(3)>, |
| 52 | L<SSL_do_handshake(3)|SSL_do_handshake(3)>, | ||
| 52 | L<SSL_CTX_set_ssl_version(3)|SSL_CTX_set_ssl_version(3)> | 53 | L<SSL_CTX_set_ssl_version(3)|SSL_CTX_set_ssl_version(3)> |
| 53 | 54 | ||
| 54 | =cut | 55 | =cut |
diff --git a/src/lib/libssl/src/doc/ssl/SSL_write.pod b/src/lib/libssl/src/doc/ssl/SSL_write.pod index dfa42e9aee..e013c12d52 100644 --- a/src/lib/libssl/src/doc/ssl/SSL_write.pod +++ b/src/lib/libssl/src/doc/ssl/SSL_write.pod | |||
| @@ -65,6 +65,9 @@ When an SSL_write() operation has to be repeated because of | |||
| 65 | B<SSL_ERROR_WANT_READ> or B<SSL_ERROR_WANT_WRITE>, it must be repeated | 65 | B<SSL_ERROR_WANT_READ> or B<SSL_ERROR_WANT_WRITE>, it must be repeated |
| 66 | with the same arguments. | 66 | with the same arguments. |
| 67 | 67 | ||
| 68 | When calling SSL_write() with num=0 bytes to be sent the behaviour is | ||
| 69 | undefined. | ||
| 70 | |||
| 68 | =head1 RETURN VALUES | 71 | =head1 RETURN VALUES |
| 69 | 72 | ||
| 70 | The following return values can occur: | 73 | The following return values can occur: |
diff --git a/src/lib/libssl/src/doc/ssl/ssl.pod b/src/lib/libssl/src/doc/ssl/ssl.pod index ce41b3e17d..ac4b573a7a 100644 --- a/src/lib/libssl/src/doc/ssl/ssl.pod +++ b/src/lib/libssl/src/doc/ssl/ssl.pod | |||
| @@ -693,6 +693,7 @@ L<SSL_CTX_set_tmp_dh_callback(3)|SSL_CTX_set_tmp_dh_callback(3)>, | |||
| 693 | L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>, | 693 | L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>, |
| 694 | L<SSL_CTX_use_certificate(3)|SSL_CTX_use_certificate(3)>, | 694 | L<SSL_CTX_use_certificate(3)|SSL_CTX_use_certificate(3)>, |
| 695 | L<SSL_alert_type_string(3)|SSL_alert_type_string(3)>, | 695 | L<SSL_alert_type_string(3)|SSL_alert_type_string(3)>, |
| 696 | L<SSL_do_handshake(3)|SSL_do_handshake(3)>, | ||
| 696 | L<SSL_get_SSL_CTX(3)|SSL_get_SSL_CTX(3)>, | 697 | L<SSL_get_SSL_CTX(3)|SSL_get_SSL_CTX(3)>, |
| 697 | L<SSL_get_ciphers(3)|SSL_get_ciphers(3)>, | 698 | L<SSL_get_ciphers(3)|SSL_get_ciphers(3)>, |
| 698 | L<SSL_get_client_CA_list(3)|SSL_get_client_CA_list(3)>, | 699 | L<SSL_get_client_CA_list(3)|SSL_get_client_CA_list(3)>, |
diff --git a/src/lib/libssl/src/e_os.h b/src/lib/libssl/src/e_os.h index f216936e18..00edebe6d4 100644 --- a/src/lib/libssl/src/e_os.h +++ b/src/lib/libssl/src/e_os.h | |||
| @@ -191,6 +191,14 @@ extern "C" { | |||
| 191 | 191 | ||
| 192 | #if (defined(WINDOWS) || defined(MSDOS)) | 192 | #if (defined(WINDOWS) || defined(MSDOS)) |
| 193 | 193 | ||
| 194 | # ifdef __DJGPP__ | ||
| 195 | # include <unistd.h> | ||
| 196 | # include <sys/stat.h> | ||
| 197 | # define _setmode setmode | ||
| 198 | # define _O_TEXT O_TEXT | ||
| 199 | # define _O_BINARY O_BINARY | ||
| 200 | # endif /* __DJGPP__ */ | ||
| 201 | |||
| 194 | # ifndef S_IFDIR | 202 | # ifndef S_IFDIR |
| 195 | # define S_IFDIR _S_IFDIR | 203 | # define S_IFDIR _S_IFDIR |
| 196 | # endif | 204 | # endif |
| @@ -336,7 +344,7 @@ extern "C" { | |||
| 336 | /*************/ | 344 | /*************/ |
| 337 | 345 | ||
| 338 | #ifdef USE_SOCKETS | 346 | #ifdef USE_SOCKETS |
| 339 | # if defined(WINDOWS) || defined(MSDOS) | 347 | # if (defined(WINDOWS) || defined(MSDOS)) && !defined(__DJGPP__) |
| 340 | /* windows world */ | 348 | /* windows world */ |
| 341 | 349 | ||
| 342 | # ifdef OPENSSL_NO_SOCK | 350 | # ifdef OPENSSL_NO_SOCK |
| @@ -423,7 +431,9 @@ extern HINSTANCE _hInstance; | |||
| 423 | # define SSLeay_Write(a,b,c) write((a),(b),(c)) | 431 | # define SSLeay_Write(a,b,c) write((a),(b),(c)) |
| 424 | # define SHUTDOWN(fd) { shutdown((fd),0); closesocket((fd)); } | 432 | # define SHUTDOWN(fd) { shutdown((fd),0); closesocket((fd)); } |
| 425 | # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket((fd)); } | 433 | # define SHUTDOWN2(fd) { shutdown((fd),2); closesocket((fd)); } |
| 434 | # ifndef INVALID_SOCKET | ||
| 426 | # define INVALID_SOCKET (-1) | 435 | # define INVALID_SOCKET (-1) |
| 436 | # endif /* INVALID_SOCKET */ | ||
| 427 | # endif | 437 | # endif |
| 428 | #endif | 438 | #endif |
| 429 | 439 | ||
diff --git a/src/lib/libssl/src/e_os2.h b/src/lib/libssl/src/e_os2.h index 9c4a541728..ff68d5b94a 100644 --- a/src/lib/libssl/src/e_os2.h +++ b/src/lib/libssl/src/e_os2.h | |||
| @@ -90,17 +90,22 @@ extern "C" { | |||
| 90 | 90 | ||
| 91 | /* For 32 bit environment, there seems to be the CygWin environment and then | 91 | /* For 32 bit environment, there seems to be the CygWin environment and then |
| 92 | all the others that try to do the same thing Microsoft does... */ | 92 | all the others that try to do the same thing Microsoft does... */ |
| 93 | #if defined(__CYGWIN32__) || defined(OPENSSL_SYSNAME_CYGWIN32) | 93 | #if defined(OPENSSL_SYSNAME_UWIN) |
| 94 | # undef OPENSSL_SYS_UNIX | 94 | # undef OPENSSL_SYS_UNIX |
| 95 | # define OPENSSL_SYS_WIN32_CYGWIN | 95 | # define OPENSSL_SYS_WIN32_UWIN |
| 96 | #else | 96 | #else |
| 97 | # if defined(_WIN32) || defined(OPENSSL_SYSNAME_WIN32) | 97 | # if defined(__CYGWIN32__) || defined(OPENSSL_SYSNAME_CYGWIN32) |
| 98 | # undef OPENSSL_SYS_UNIX | 98 | # undef OPENSSL_SYS_UNIX |
| 99 | # define OPENSSL_SYS_WIN32 | 99 | # define OPENSSL_SYS_WIN32_CYGWIN |
| 100 | # endif | 100 | # else |
| 101 | # if defined(OPENSSL_SYSNAME_WINNT) | 101 | # if defined(_WIN32) || defined(OPENSSL_SYSNAME_WIN32) |
| 102 | # undef OPENSSL_SYS_UNIX | 102 | # undef OPENSSL_SYS_UNIX |
| 103 | # define OPENSSL_SYS_WINNT | 103 | # define OPENSSL_SYS_WIN32 |
| 104 | # endif | ||
| 105 | # if defined(OPENSSL_SYSNAME_WINNT) | ||
| 106 | # undef OPENSSL_SYS_UNIX | ||
| 107 | # define OPENSSL_SYS_WINNT | ||
| 108 | # endif | ||
| 104 | # endif | 109 | # endif |
| 105 | #endif | 110 | #endif |
| 106 | 111 | ||
diff --git a/src/lib/libssl/src/install.com b/src/lib/libssl/src/install.com index 86fae7e872..4e4fe80dfe 100644 --- a/src/lib/libssl/src/install.com +++ b/src/lib/libssl/src/install.com | |||
| @@ -52,7 +52,7 @@ $ IF F$PARSE("WRK_SSLPRIVATE:") .EQS. "" THEN - | |||
| 52 | $ IF F$PARSE("WRK_SSLROOT:[VMS]") .EQS. "" THEN - | 52 | $ IF F$PARSE("WRK_SSLROOT:[VMS]") .EQS. "" THEN - |
| 53 | CREATE/DIR/LOG WRK_SSLROOT:[VMS] | 53 | CREATE/DIR/LOG WRK_SSLROOT:[VMS] |
| 54 | $ | 54 | $ |
| 55 | $ SDIRS := CRYPTO,SSL,RSAREF,APPS,VMS!,TEST,TOOLS | 55 | $ SDIRS := CRYPTO,SSL,APPS,VMS!,RSAREF,TEST,TOOLS |
| 56 | $ EXHEADER := e_os2.h | 56 | $ EXHEADER := e_os2.h |
| 57 | $ | 57 | $ |
| 58 | $ COPY 'EXHEADER' WRK_SSLINCLUDE: /LOG | 58 | $ COPY 'EXHEADER' WRK_SSLINCLUDE: /LOG |
diff --git a/src/lib/libssl/src/ms/do_masm.bat b/src/lib/libssl/src/ms/do_masm.bat index 5b64fecdb0..f4c958c561 100644 --- a/src/lib/libssl/src/ms/do_masm.bat +++ b/src/lib/libssl/src/ms/do_masm.bat | |||
| @@ -3,54 +3,54 @@ echo Generating x86 for MASM assember | |||
| 3 | 3 | ||
| 4 | echo Bignum | 4 | echo Bignum |
| 5 | cd crypto\bn\asm | 5 | cd crypto\bn\asm |
| 6 | perl x86.pl win32 > bn-win32.asm | 6 | perl x86.pl win32 > bn_win32.asm |
| 7 | cd ..\..\.. | 7 | cd ..\..\.. |
| 8 | 8 | ||
| 9 | echo DES | 9 | echo DES |
| 10 | cd crypto\des\asm | 10 | cd crypto\des\asm |
| 11 | perl des-586.pl win32 > d-win32.asm | 11 | perl des-586.pl win32 > d_win32.asm |
| 12 | cd ..\..\.. | 12 | cd ..\..\.. |
| 13 | 13 | ||
| 14 | echo "crypt(3)" | 14 | echo "crypt(3)" |
| 15 | 15 | ||
| 16 | cd crypto\des\asm | 16 | cd crypto\des\asm |
| 17 | perl crypt586.pl win32 > y-win32.asm | 17 | perl crypt586.pl win32 > y_win32.asm |
| 18 | cd ..\..\.. | 18 | cd ..\..\.. |
| 19 | 19 | ||
| 20 | echo Blowfish | 20 | echo Blowfish |
| 21 | 21 | ||
| 22 | cd crypto\bf\asm | 22 | cd crypto\bf\asm |
| 23 | perl bf-586.pl win32 > b-win32.asm | 23 | perl bf-586.pl win32 > b_win32.asm |
| 24 | cd ..\..\.. | 24 | cd ..\..\.. |
| 25 | 25 | ||
| 26 | echo CAST5 | 26 | echo CAST5 |
| 27 | cd crypto\cast\asm | 27 | cd crypto\cast\asm |
| 28 | perl cast-586.pl win32 > c-win32.asm | 28 | perl cast-586.pl win32 > c_win32.asm |
| 29 | cd ..\..\.. | 29 | cd ..\..\.. |
| 30 | 30 | ||
| 31 | echo RC4 | 31 | echo RC4 |
| 32 | cd crypto\rc4\asm | 32 | cd crypto\rc4\asm |
| 33 | perl rc4-586.pl win32 > r4-win32.asm | 33 | perl rc4-586.pl win32 > r4_win32.asm |
| 34 | cd ..\..\.. | 34 | cd ..\..\.. |
| 35 | 35 | ||
| 36 | echo MD5 | 36 | echo MD5 |
| 37 | cd crypto\md5\asm | 37 | cd crypto\md5\asm |
| 38 | perl md5-586.pl win32 > m5-win32.asm | 38 | perl md5-586.pl win32 > m5_win32.asm |
| 39 | cd ..\..\.. | 39 | cd ..\..\.. |
| 40 | 40 | ||
| 41 | echo SHA1 | 41 | echo SHA1 |
| 42 | cd crypto\sha\asm | 42 | cd crypto\sha\asm |
| 43 | perl sha1-586.pl win32 > s1-win32.asm | 43 | perl sha1-586.pl win32 > s1_win32.asm |
| 44 | cd ..\..\.. | 44 | cd ..\..\.. |
| 45 | 45 | ||
| 46 | echo RIPEMD160 | 46 | echo RIPEMD160 |
| 47 | cd crypto\ripemd\asm | 47 | cd crypto\ripemd\asm |
| 48 | perl rmd-586.pl win32 > rm-win32.asm | 48 | perl rmd-586.pl win32 > rm_win32.asm |
| 49 | cd ..\..\.. | 49 | cd ..\..\.. |
| 50 | 50 | ||
| 51 | echo RC5\32 | 51 | echo RC5\32 |
| 52 | cd crypto\rc5\asm | 52 | cd crypto\rc5\asm |
| 53 | perl rc5-586.pl win32 > r5-win32.asm | 53 | perl rc5-586.pl win32 > r5_win32.asm |
| 54 | cd ..\..\.. | 54 | cd ..\..\.. |
| 55 | 55 | ||
| 56 | echo on | 56 | echo on |
diff --git a/src/lib/libssl/src/ms/do_nasm.bat b/src/lib/libssl/src/ms/do_nasm.bat index 8859c15457..557f8a66d7 100644 --- a/src/lib/libssl/src/ms/do_nasm.bat +++ b/src/lib/libssl/src/ms/do_nasm.bat | |||
| @@ -4,54 +4,54 @@ echo Generating x86 for NASM assember | |||
| 4 | 4 | ||
| 5 | echo Bignum | 5 | echo Bignum |
| 6 | cd crypto\bn\asm | 6 | cd crypto\bn\asm |
| 7 | perl x86.pl win32n > bn-win32.asm | 7 | perl x86.pl win32n > bn_win32.asm |
| 8 | cd ..\..\.. | 8 | cd ..\..\.. |
| 9 | 9 | ||
| 10 | echo DES | 10 | echo DES |
| 11 | cd crypto\des\asm | 11 | cd crypto\des\asm |
| 12 | perl des-586.pl win32n > d-win32.asm | 12 | perl des-586.pl win32n > d_win32.asm |
| 13 | cd ..\..\.. | 13 | cd ..\..\.. |
| 14 | 14 | ||
| 15 | echo "crypt(3)" | 15 | echo "crypt(3)" |
| 16 | 16 | ||
| 17 | cd crypto\des\asm | 17 | cd crypto\des\asm |
| 18 | perl crypt586.pl win32n > y-win32.asm | 18 | perl crypt586.pl win32n > y_win32.asm |
| 19 | cd ..\..\.. | 19 | cd ..\..\.. |
| 20 | 20 | ||
| 21 | echo Blowfish | 21 | echo Blowfish |
| 22 | 22 | ||
| 23 | cd crypto\bf\asm | 23 | cd crypto\bf\asm |
| 24 | perl bf-586.pl win32n > b-win32.asm | 24 | perl bf-586.pl win32n > b_win32.asm |
| 25 | cd ..\..\.. | 25 | cd ..\..\.. |
| 26 | 26 | ||
| 27 | echo CAST5 | 27 | echo CAST5 |
| 28 | cd crypto\cast\asm | 28 | cd crypto\cast\asm |
| 29 | perl cast-586.pl win32n > c-win32.asm | 29 | perl cast-586.pl win32n > c_win32.asm |
| 30 | cd ..\..\.. | 30 | cd ..\..\.. |
| 31 | 31 | ||
| 32 | echo RC4 | 32 | echo RC4 |
| 33 | cd crypto\rc4\asm | 33 | cd crypto\rc4\asm |
| 34 | perl rc4-586.pl win32n > r4-win32.asm | 34 | perl rc4-586.pl win32n > r4_win32.asm |
| 35 | cd ..\..\.. | 35 | cd ..\..\.. |
| 36 | 36 | ||
| 37 | echo MD5 | 37 | echo MD5 |
| 38 | cd crypto\md5\asm | 38 | cd crypto\md5\asm |
| 39 | perl md5-586.pl win32n > m5-win32.asm | 39 | perl md5-586.pl win32n > m5_win32.asm |
| 40 | cd ..\..\.. | 40 | cd ..\..\.. |
| 41 | 41 | ||
| 42 | echo SHA1 | 42 | echo SHA1 |
| 43 | cd crypto\sha\asm | 43 | cd crypto\sha\asm |
| 44 | perl sha1-586.pl win32n > s1-win32.asm | 44 | perl sha1-586.pl win32n > s1_win32.asm |
| 45 | cd ..\..\.. | 45 | cd ..\..\.. |
| 46 | 46 | ||
| 47 | echo RIPEMD160 | 47 | echo RIPEMD160 |
| 48 | cd crypto\ripemd\asm | 48 | cd crypto\ripemd\asm |
| 49 | perl rmd-586.pl win32n > rm-win32.asm | 49 | perl rmd-586.pl win32n > rm_win32.asm |
| 50 | cd ..\..\.. | 50 | cd ..\..\.. |
| 51 | 51 | ||
| 52 | echo RC5\32 | 52 | echo RC5\32 |
| 53 | cd crypto\rc5\asm | 53 | cd crypto\rc5\asm |
| 54 | perl rc5-586.pl win32n > r5-win32.asm | 54 | perl rc5-586.pl win32n > r5_win32.asm |
| 55 | cd ..\..\.. | 55 | cd ..\..\.. |
| 56 | 56 | ||
| 57 | echo on | 57 | echo on |
| @@ -62,6 +62,7 @@ rem perl util\mk1mf.pl VC-W31-32 >ms\w31.mak | |||
| 62 | perl util\mk1mf.pl dll VC-W31-32 >ms\w31dll.mak | 62 | perl util\mk1mf.pl dll VC-W31-32 >ms\w31dll.mak |
| 63 | perl util\mk1mf.pl nasm VC-WIN32 >ms\nt.mak | 63 | perl util\mk1mf.pl nasm VC-WIN32 >ms\nt.mak |
| 64 | perl util\mk1mf.pl dll nasm VC-WIN32 >ms\ntdll.mak | 64 | perl util\mk1mf.pl dll nasm VC-WIN32 >ms\ntdll.mak |
| 65 | perl util\mk1mf.pl nasm BC-NT >ms\bcb.mak | ||
| 65 | 66 | ||
| 66 | perl util\mkdef.pl 16 libeay > ms\libeay16.def | 67 | perl util\mkdef.pl 16 libeay > ms\libeay16.def |
| 67 | perl util\mkdef.pl 32 libeay > ms\libeay32.def | 68 | perl util\mkdef.pl 32 libeay > ms\libeay32.def |
diff --git a/src/lib/libssl/src/os2/OS2-EMX.cmd b/src/lib/libssl/src/os2/OS2-EMX.cmd index 8b2a092c68..acab99ac39 100644 --- a/src/lib/libssl/src/os2/OS2-EMX.cmd +++ b/src/lib/libssl/src/os2/OS2-EMX.cmd | |||
| @@ -5,6 +5,11 @@ perl util\mkfiles.pl > MINFO | |||
| 5 | 5 | ||
| 6 | @rem create make file | 6 | @rem create make file |
| 7 | perl util\mk1mf.pl OS2-EMX > OS2-EMX.mak | 7 | perl util\mk1mf.pl OS2-EMX > OS2-EMX.mak |
| 8 | perl util\mk1mf.pl dll OS2-EMX > OS2-EMX-DLL.mak | ||
| 9 | |||
| 10 | echo Generating export definition files | ||
| 11 | perl util\mkdef.pl crypto OS2 > os2\crypto.def | ||
| 12 | perl util\mkdef.pl ssl OS2 > os2\ssl.def | ||
| 8 | 13 | ||
| 9 | echo Generating x86 for GNU assember | 14 | echo Generating x86 for GNU assember |
| 10 | 15 | ||
diff --git a/src/lib/libssl/src/ssl/Makefile.ssl b/src/lib/libssl/src/ssl/Makefile.ssl index 74bf2c4931..3f6288696c 100644 --- a/src/lib/libssl/src/ssl/Makefile.ssl +++ b/src/lib/libssl/src/ssl/Makefile.ssl | |||
| @@ -93,7 +93,7 @@ lint: | |||
| 93 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 93 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 94 | 94 | ||
| 95 | depend: | 95 | depend: |
| 96 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) | 96 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(LIBSRC) |
| 97 | 97 | ||
| 98 | dclean: | 98 | dclean: |
| 99 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 99 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -104,633 +104,919 @@ clean: | |||
| 104 | 104 | ||
| 105 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 105 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 106 | 106 | ||
| 107 | bio_ssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 107 | bio_ssl.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 108 | bio_ssl.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 108 | bio_ssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 109 | bio_ssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 109 | bio_ssl.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 110 | bio_ssl.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 110 | bio_ssl.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 111 | bio_ssl.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 111 | bio_ssl.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 112 | bio_ssl.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 112 | bio_ssl.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 113 | bio_ssl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 113 | bio_ssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 114 | bio_ssl.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 115 | bio_ssl.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 116 | bio_ssl.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 117 | bio_ssl.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 118 | bio_ssl.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 114 | bio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 119 | bio_ssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 115 | bio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 120 | bio_ssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 116 | bio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 121 | bio_ssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 117 | bio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 122 | bio_ssl.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 123 | bio_ssl.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 124 | bio_ssl.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 118 | bio_ssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 125 | bio_ssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 119 | bio_ssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 126 | bio_ssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 120 | bio_ssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 127 | bio_ssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 121 | bio_ssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 128 | bio_ssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 122 | bio_ssl.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 129 | bio_ssl.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 130 | bio_ssl.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 123 | bio_ssl.o: ../include/openssl/x509_vfy.h bio_ssl.c | 131 | bio_ssl.o: ../include/openssl/x509_vfy.h bio_ssl.c |
| 124 | kssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 132 | kssl.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 133 | kssl.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 125 | kssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 134 | kssl.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 126 | kssl.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 135 | kssl.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 127 | kssl.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 136 | kssl.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 128 | kssl.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 137 | kssl.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 138 | kssl.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 139 | kssl.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 129 | kssl.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h | 140 | kssl.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h |
| 130 | kssl.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 141 | kssl.o: ../include/openssl/lhash.h ../include/openssl/md2.h |
| 142 | kssl.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 143 | kssl.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 131 | kssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 144 | kssl.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 132 | kssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 145 | kssl.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 133 | kssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 146 | kssl.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 134 | kssl.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 147 | kssl.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 148 | kssl.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 149 | kssl.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 135 | kssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 150 | kssl.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 136 | kssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 151 | kssl.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 137 | kssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 152 | kssl.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 138 | kssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 153 | kssl.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 139 | kssl.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 154 | kssl.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 155 | kssl.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 140 | kssl.o: ../include/openssl/x509_vfy.h kssl.c | 156 | kssl.o: ../include/openssl/x509_vfy.h kssl.c |
| 141 | s23_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 157 | s23_clnt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 158 | s23_clnt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 142 | s23_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 159 | s23_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 143 | s23_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 160 | s23_clnt.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 144 | s23_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 161 | s23_clnt.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 145 | s23_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 162 | s23_clnt.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 146 | s23_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 163 | s23_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 147 | s23_clnt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 164 | s23_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 165 | s23_clnt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 166 | s23_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 167 | s23_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 168 | s23_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 148 | s23_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 169 | s23_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 149 | s23_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 170 | s23_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 150 | s23_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 171 | s23_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 151 | s23_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 172 | s23_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 173 | s23_clnt.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 174 | s23_clnt.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 152 | s23_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 175 | s23_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 153 | s23_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 176 | s23_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 154 | s23_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 177 | s23_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 155 | s23_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 178 | s23_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 156 | s23_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 179 | s23_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 180 | s23_clnt.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 157 | s23_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_clnt.c | 181 | s23_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_clnt.c |
| 158 | s23_clnt.o: ssl_locl.h | 182 | s23_clnt.o: ssl_locl.h |
| 159 | s23_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 183 | s23_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 184 | s23_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 160 | s23_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 185 | s23_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 161 | s23_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 186 | s23_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 162 | s23_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 187 | s23_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 163 | s23_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 188 | s23_lib.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 164 | s23_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 189 | s23_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 165 | s23_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 190 | s23_lib.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 191 | s23_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 192 | s23_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 193 | s23_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 194 | s23_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 166 | s23_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 195 | s23_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 167 | s23_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 196 | s23_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 168 | s23_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 197 | s23_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 169 | s23_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 198 | s23_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 199 | s23_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 200 | s23_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 170 | s23_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 201 | s23_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 171 | s23_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 202 | s23_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 172 | s23_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 203 | s23_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 173 | s23_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 204 | s23_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 174 | s23_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 205 | s23_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 206 | s23_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 175 | s23_lib.o: ../include/openssl/x509_vfy.h s23_lib.c ssl_locl.h | 207 | s23_lib.o: ../include/openssl/x509_vfy.h s23_lib.c ssl_locl.h |
| 176 | s23_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 208 | s23_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 209 | s23_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 177 | s23_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 210 | s23_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 178 | s23_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 211 | s23_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 179 | s23_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 212 | s23_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 180 | s23_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 213 | s23_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 181 | s23_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 214 | s23_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 182 | s23_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 215 | s23_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 216 | s23_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 217 | s23_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 218 | s23_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 219 | s23_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 183 | s23_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 220 | s23_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 184 | s23_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 221 | s23_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 185 | s23_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 222 | s23_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 186 | s23_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 223 | s23_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 224 | s23_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 225 | s23_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 187 | s23_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 226 | s23_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 188 | s23_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 227 | s23_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 189 | s23_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 228 | s23_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 190 | s23_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 229 | s23_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 191 | s23_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 230 | s23_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 231 | s23_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 192 | s23_meth.o: ../include/openssl/x509_vfy.h s23_meth.c ssl_locl.h | 232 | s23_meth.o: ../include/openssl/x509_vfy.h s23_meth.c ssl_locl.h |
| 193 | s23_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 233 | s23_pkt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 234 | s23_pkt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 194 | s23_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 235 | s23_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 195 | s23_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 236 | s23_pkt.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 196 | s23_pkt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 237 | s23_pkt.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 197 | s23_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 238 | s23_pkt.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 198 | s23_pkt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 239 | s23_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 199 | s23_pkt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 240 | s23_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 241 | s23_pkt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 242 | s23_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 243 | s23_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 244 | s23_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 200 | s23_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 245 | s23_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 201 | s23_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 246 | s23_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 202 | s23_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 247 | s23_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 203 | s23_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 248 | s23_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 249 | s23_pkt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 250 | s23_pkt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 204 | s23_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 251 | s23_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 205 | s23_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 252 | s23_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 206 | s23_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 253 | s23_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 207 | s23_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 254 | s23_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 208 | s23_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 255 | s23_pkt.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 256 | s23_pkt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 209 | s23_pkt.o: ../include/openssl/x509_vfy.h s23_pkt.c ssl_locl.h | 257 | s23_pkt.o: ../include/openssl/x509_vfy.h s23_pkt.c ssl_locl.h |
| 210 | s23_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 258 | s23_srvr.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 259 | s23_srvr.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 211 | s23_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 260 | s23_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 212 | s23_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 261 | s23_srvr.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 213 | s23_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 262 | s23_srvr.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 214 | s23_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 263 | s23_srvr.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 215 | s23_srvr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 264 | s23_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 216 | s23_srvr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 265 | s23_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 266 | s23_srvr.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 267 | s23_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 268 | s23_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 269 | s23_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 217 | s23_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 270 | s23_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 218 | s23_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 271 | s23_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 219 | s23_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 272 | s23_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 220 | s23_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 273 | s23_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 274 | s23_srvr.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 275 | s23_srvr.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 221 | s23_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 276 | s23_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 222 | s23_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 277 | s23_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 223 | s23_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 278 | s23_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 224 | s23_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 279 | s23_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 225 | s23_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 280 | s23_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 281 | s23_srvr.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 226 | s23_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_srvr.c | 282 | s23_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s23_srvr.c |
| 227 | s23_srvr.o: ssl_locl.h | 283 | s23_srvr.o: ssl_locl.h |
| 228 | s2_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 284 | s2_clnt.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h |
| 229 | s2_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 285 | s2_clnt.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
| 286 | s2_clnt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
| 287 | s2_clnt.o: ../include/openssl/buffer.h ../include/openssl/cast.h | ||
| 230 | s2_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 288 | s2_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
| 289 | s2_clnt.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 231 | s2_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 290 | s2_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 232 | s2_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 291 | s2_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 233 | s2_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 292 | s2_clnt.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 234 | s2_clnt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 293 | s2_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 235 | s2_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 294 | s2_clnt.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 236 | s2_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 295 | s2_clnt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 237 | s2_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 296 | s2_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 238 | s2_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 297 | s2_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 239 | s2_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 298 | s2_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 240 | s2_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 299 | s2_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 241 | s2_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 300 | s2_clnt.o: ../include/openssl/rand.h ../include/openssl/rc2.h |
| 242 | s2_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 301 | s2_clnt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 243 | s2_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 302 | s2_clnt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 244 | s2_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_clnt.c | 303 | s2_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 245 | s2_clnt.o: ssl_locl.h | 304 | s2_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 246 | s2_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 305 | s2_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 306 | s2_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 307 | s2_clnt.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 308 | s2_clnt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 309 | s2_clnt.o: ../include/openssl/x509_vfy.h s2_clnt.c ssl_locl.h | ||
| 310 | s2_enc.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 311 | s2_enc.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 247 | s2_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 312 | s2_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 248 | s2_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 313 | s2_enc.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 249 | s2_enc.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 314 | s2_enc.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 250 | s2_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 315 | s2_enc.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 251 | s2_enc.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 316 | s2_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 252 | s2_enc.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 317 | s2_enc.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 318 | s2_enc.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 319 | s2_enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 320 | s2_enc.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 321 | s2_enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 253 | s2_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 322 | s2_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 254 | s2_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 323 | s2_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 255 | s2_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 324 | s2_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 256 | s2_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 325 | s2_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 326 | s2_enc.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 327 | s2_enc.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 257 | s2_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 328 | s2_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 258 | s2_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 329 | s2_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 259 | s2_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 330 | s2_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 260 | s2_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 331 | s2_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 261 | s2_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 332 | s2_enc.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 333 | s2_enc.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 262 | s2_enc.o: ../include/openssl/x509_vfy.h s2_enc.c ssl_locl.h | 334 | s2_enc.o: ../include/openssl/x509_vfy.h s2_enc.c ssl_locl.h |
| 263 | s2_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 335 | s2_lib.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h |
| 264 | s2_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 336 | s2_lib.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
| 337 | s2_lib.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
| 338 | s2_lib.o: ../include/openssl/buffer.h ../include/openssl/cast.h | ||
| 265 | s2_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 339 | s2_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
| 340 | s2_lib.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 266 | s2_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 341 | s2_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 267 | s2_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 342 | s2_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 268 | s2_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 343 | s2_lib.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 269 | s2_lib.o: ../include/openssl/lhash.h ../include/openssl/md5.h | 344 | s2_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 345 | s2_lib.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 346 | s2_lib.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 270 | s2_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 347 | s2_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 271 | s2_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 348 | s2_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 272 | s2_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 349 | s2_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 273 | s2_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 350 | s2_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 351 | s2_lib.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 352 | s2_lib.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 274 | s2_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 353 | s2_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 275 | s2_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 354 | s2_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 276 | s2_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 355 | s2_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 277 | s2_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 356 | s2_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 278 | s2_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 357 | s2_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 358 | s2_lib.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 279 | s2_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_lib.c | 359 | s2_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_lib.c |
| 280 | s2_lib.o: ssl_locl.h | 360 | s2_lib.o: ssl_locl.h |
| 281 | s2_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 361 | s2_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 362 | s2_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 282 | s2_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 363 | s2_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 283 | s2_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 364 | s2_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 284 | s2_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 365 | s2_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 285 | s2_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 366 | s2_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 286 | s2_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 367 | s2_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 287 | s2_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 368 | s2_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 369 | s2_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 370 | s2_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 371 | s2_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 372 | s2_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 288 | s2_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 373 | s2_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 289 | s2_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 374 | s2_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 290 | s2_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 375 | s2_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 291 | s2_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 376 | s2_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 377 | s2_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 378 | s2_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 292 | s2_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 379 | s2_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 293 | s2_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 380 | s2_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 294 | s2_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 381 | s2_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 295 | s2_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 382 | s2_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 296 | s2_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 383 | s2_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 384 | s2_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 297 | s2_meth.o: ../include/openssl/x509_vfy.h s2_meth.c ssl_locl.h | 385 | s2_meth.o: ../include/openssl/x509_vfy.h s2_meth.c ssl_locl.h |
| 298 | s2_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 386 | s2_pkt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 387 | s2_pkt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 299 | s2_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 388 | s2_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 300 | s2_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 389 | s2_pkt.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 301 | s2_pkt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 390 | s2_pkt.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 302 | s2_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 391 | s2_pkt.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 303 | s2_pkt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 392 | s2_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 304 | s2_pkt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 393 | s2_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 394 | s2_pkt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 395 | s2_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 396 | s2_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 397 | s2_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 305 | s2_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 398 | s2_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 306 | s2_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 399 | s2_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 307 | s2_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 400 | s2_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 308 | s2_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 401 | s2_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 402 | s2_pkt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 403 | s2_pkt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 309 | s2_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 404 | s2_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 310 | s2_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 405 | s2_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 311 | s2_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 406 | s2_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 312 | s2_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 407 | s2_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 313 | s2_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 408 | s2_pkt.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 409 | s2_pkt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 314 | s2_pkt.o: ../include/openssl/x509_vfy.h s2_pkt.c ssl_locl.h | 410 | s2_pkt.o: ../include/openssl/x509_vfy.h s2_pkt.c ssl_locl.h |
| 315 | s2_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 411 | s2_srvr.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h |
| 316 | s2_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 412 | s2_srvr.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
| 413 | s2_srvr.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
| 414 | s2_srvr.o: ../include/openssl/buffer.h ../include/openssl/cast.h | ||
| 317 | s2_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 415 | s2_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
| 416 | s2_srvr.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 318 | s2_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 417 | s2_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 319 | s2_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 418 | s2_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 320 | s2_srvr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 419 | s2_srvr.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 321 | s2_srvr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 420 | s2_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 322 | s2_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 421 | s2_srvr.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 323 | s2_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 422 | s2_srvr.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 324 | s2_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 423 | s2_srvr.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 325 | s2_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 424 | s2_srvr.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 326 | s2_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 425 | s2_srvr.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 327 | s2_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 426 | s2_srvr.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 328 | s2_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 427 | s2_srvr.o: ../include/openssl/rand.h ../include/openssl/rc2.h |
| 329 | s2_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 428 | s2_srvr.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 330 | s2_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 429 | s2_srvr.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 331 | s2_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s2_srvr.c | 430 | s2_srvr.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 332 | s2_srvr.o: ssl_locl.h | 431 | s2_srvr.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 333 | s3_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 432 | s2_srvr.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 433 | s2_srvr.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 434 | s2_srvr.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 435 | s2_srvr.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 436 | s2_srvr.o: ../include/openssl/x509_vfy.h s2_srvr.c ssl_locl.h | ||
| 437 | s3_both.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 438 | s3_both.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 334 | s3_both.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 439 | s3_both.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 335 | s3_both.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 440 | s3_both.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 336 | s3_both.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 441 | s3_both.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 337 | s3_both.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 442 | s3_both.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 338 | s3_both.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 443 | s3_both.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 339 | s3_both.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 444 | s3_both.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 445 | s3_both.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 446 | s3_both.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 447 | s3_both.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 448 | s3_both.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 340 | s3_both.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 449 | s3_both.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 341 | s3_both.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 450 | s3_both.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 342 | s3_both.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 451 | s3_both.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 343 | s3_both.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 452 | s3_both.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 453 | s3_both.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 454 | s3_both.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 344 | s3_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 455 | s3_both.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 345 | s3_both.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 456 | s3_both.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 346 | s3_both.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 457 | s3_both.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 347 | s3_both.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 458 | s3_both.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 348 | s3_both.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 459 | s3_both.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 460 | s3_both.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 349 | s3_both.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_both.c | 461 | s3_both.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_both.c |
| 350 | s3_both.o: ssl_locl.h | 462 | s3_both.o: ssl_locl.h |
| 351 | s3_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 463 | s3_clnt.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h |
| 352 | s3_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 464 | s3_clnt.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
| 465 | s3_clnt.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
| 466 | s3_clnt.o: ../include/openssl/buffer.h ../include/openssl/cast.h | ||
| 353 | s3_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 467 | s3_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
| 468 | s3_clnt.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 354 | s3_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 469 | s3_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 355 | s3_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 470 | s3_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 356 | s3_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 471 | s3_clnt.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 357 | s3_clnt.o: ../include/openssl/lhash.h ../include/openssl/md5.h | 472 | s3_clnt.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 473 | s3_clnt.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 474 | s3_clnt.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 358 | s3_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 475 | s3_clnt.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 359 | s3_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 476 | s3_clnt.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 360 | s3_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 477 | s3_clnt.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 361 | s3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 478 | s3_clnt.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 362 | s3_clnt.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 479 | s3_clnt.o: ../include/openssl/rand.h ../include/openssl/rc2.h |
| 480 | s3_clnt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 481 | s3_clnt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 363 | s3_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 482 | s3_clnt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 364 | s3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 483 | s3_clnt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 365 | s3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 484 | s3_clnt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 366 | s3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 485 | s3_clnt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 367 | s3_clnt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 486 | s3_clnt.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 487 | s3_clnt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 368 | s3_clnt.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_clnt.c ssl_locl.h | 488 | s3_clnt.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_clnt.c ssl_locl.h |
| 369 | s3_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 489 | s3_enc.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 490 | s3_enc.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 370 | s3_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 491 | s3_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 371 | s3_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 492 | s3_enc.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 372 | s3_enc.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 493 | s3_enc.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 373 | s3_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 494 | s3_enc.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 374 | s3_enc.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 495 | s3_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 375 | s3_enc.o: ../include/openssl/lhash.h ../include/openssl/md5.h | 496 | s3_enc.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 376 | s3_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 497 | s3_enc.o: ../include/openssl/idea.h ../include/openssl/kssl.h |
| 377 | s3_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 498 | s3_enc.o: ../include/openssl/lhash.h ../include/openssl/md2.h |
| 378 | s3_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 499 | s3_enc.o: ../include/openssl/md4.h ../include/openssl/md5.h |
| 379 | s3_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 500 | s3_enc.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h |
| 380 | s3_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 501 | s3_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 381 | s3_enc.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 502 | s3_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 382 | s3_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 503 | s3_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 383 | s3_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 504 | s3_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 384 | s3_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 505 | s3_enc.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 385 | s3_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h s3_enc.c | 506 | s3_enc.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 386 | s3_enc.o: ssl_locl.h | 507 | s3_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 387 | s3_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 508 | s3_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 509 | s3_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 510 | s3_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 511 | s3_enc.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 512 | s3_enc.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 513 | s3_enc.o: ../include/openssl/x509_vfy.h s3_enc.c ssl_locl.h | ||
| 514 | s3_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 515 | s3_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 388 | s3_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 516 | s3_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 389 | s3_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 517 | s3_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 390 | s3_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 518 | s3_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 391 | s3_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 519 | s3_lib.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 392 | s3_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 520 | s3_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 393 | s3_lib.o: ../include/openssl/lhash.h ../include/openssl/md5.h | 521 | s3_lib.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 394 | s3_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 522 | s3_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h |
| 395 | s3_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 523 | s3_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h |
| 396 | s3_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 524 | s3_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h |
| 397 | s3_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 525 | s3_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h |
| 398 | s3_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 526 | s3_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 399 | s3_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 527 | s3_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 400 | s3_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 528 | s3_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 401 | s3_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 529 | s3_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 402 | s3_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 530 | s3_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 403 | s3_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h | 531 | s3_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 404 | s3_lib.o: s3_lib.c ssl_locl.h | 532 | s3_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 405 | s3_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 533 | s3_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 534 | s3_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | ||
| 535 | s3_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 536 | s3_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 537 | s3_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 538 | s3_lib.o: ../include/openssl/x509_vfy.h kssl_lcl.h s3_lib.c ssl_locl.h | ||
| 539 | s3_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 540 | s3_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 406 | s3_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 541 | s3_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 407 | s3_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 542 | s3_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 408 | s3_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 543 | s3_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 409 | s3_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 544 | s3_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 410 | s3_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 545 | s3_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 411 | s3_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 546 | s3_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 547 | s3_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 548 | s3_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 549 | s3_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 550 | s3_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 412 | s3_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 551 | s3_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 413 | s3_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 552 | s3_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 414 | s3_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 553 | s3_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 415 | s3_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 554 | s3_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 555 | s3_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 556 | s3_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 416 | s3_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 557 | s3_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 417 | s3_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 558 | s3_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 418 | s3_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 559 | s3_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 419 | s3_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 560 | s3_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 420 | s3_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 561 | s3_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 562 | s3_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 421 | s3_meth.o: ../include/openssl/x509_vfy.h s3_meth.c ssl_locl.h | 563 | s3_meth.o: ../include/openssl/x509_vfy.h s3_meth.c ssl_locl.h |
| 422 | s3_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 564 | s3_pkt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 565 | s3_pkt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 423 | s3_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 566 | s3_pkt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 424 | s3_pkt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 567 | s3_pkt.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 425 | s3_pkt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 568 | s3_pkt.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 426 | s3_pkt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 569 | s3_pkt.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 427 | s3_pkt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 570 | s3_pkt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 428 | s3_pkt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 571 | s3_pkt.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 572 | s3_pkt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 573 | s3_pkt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 574 | s3_pkt.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 575 | s3_pkt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 429 | s3_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 576 | s3_pkt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 430 | s3_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 577 | s3_pkt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 431 | s3_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 578 | s3_pkt.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 432 | s3_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 579 | s3_pkt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 580 | s3_pkt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 581 | s3_pkt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 433 | s3_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 582 | s3_pkt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 434 | s3_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 583 | s3_pkt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 435 | s3_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 584 | s3_pkt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 436 | s3_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 585 | s3_pkt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 437 | s3_pkt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 586 | s3_pkt.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 587 | s3_pkt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 438 | s3_pkt.o: ../include/openssl/x509_vfy.h s3_pkt.c ssl_locl.h | 588 | s3_pkt.o: ../include/openssl/x509_vfy.h s3_pkt.c ssl_locl.h |
| 439 | s3_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 589 | s3_srvr.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h |
| 440 | s3_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 590 | s3_srvr.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
| 591 | s3_srvr.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
| 592 | s3_srvr.o: ../include/openssl/buffer.h ../include/openssl/cast.h | ||
| 441 | s3_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 593 | s3_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
| 594 | s3_srvr.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 442 | s3_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 595 | s3_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 443 | s3_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 596 | s3_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 444 | s3_srvr.o: ../include/openssl/evp.h ../include/openssl/krb5_asn.h | 597 | s3_srvr.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 445 | s3_srvr.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 598 | s3_srvr.o: ../include/openssl/krb5_asn.h ../include/openssl/kssl.h |
| 446 | s3_srvr.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | 599 | s3_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h |
| 600 | s3_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 601 | s3_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 447 | s3_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 602 | s3_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 448 | s3_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 603 | s3_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 449 | s3_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 604 | s3_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 450 | s3_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 605 | s3_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 606 | s3_srvr.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 607 | s3_srvr.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 451 | s3_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 608 | s3_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 452 | s3_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 609 | s3_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 453 | s3_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 610 | s3_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 454 | s3_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 611 | s3_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 455 | s3_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 612 | s3_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 613 | s3_srvr.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 456 | s3_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h | 614 | s3_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h kssl_lcl.h |
| 457 | s3_srvr.o: s3_srvr.c ssl_locl.h | 615 | s3_srvr.o: s3_srvr.c ssl_locl.h |
| 458 | ssl_algs.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 616 | ssl_algs.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 617 | ssl_algs.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 459 | ssl_algs.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 618 | ssl_algs.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 460 | ssl_algs.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 619 | ssl_algs.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 461 | ssl_algs.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 620 | ssl_algs.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 462 | ssl_algs.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 621 | ssl_algs.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 463 | ssl_algs.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 622 | ssl_algs.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 464 | ssl_algs.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 623 | ssl_algs.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 624 | ssl_algs.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 625 | ssl_algs.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 626 | ssl_algs.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 627 | ssl_algs.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 465 | ssl_algs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 628 | ssl_algs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 466 | ssl_algs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 629 | ssl_algs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 467 | ssl_algs.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 630 | ssl_algs.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 468 | ssl_algs.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 631 | ssl_algs.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 632 | ssl_algs.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 633 | ssl_algs.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 469 | ssl_algs.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 634 | ssl_algs.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 470 | ssl_algs.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 635 | ssl_algs.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 471 | ssl_algs.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 636 | ssl_algs.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 472 | ssl_algs.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 637 | ssl_algs.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 473 | ssl_algs.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 638 | ssl_algs.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 639 | ssl_algs.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 474 | ssl_algs.o: ../include/openssl/x509_vfy.h ssl_algs.c ssl_locl.h | 640 | ssl_algs.o: ../include/openssl/x509_vfy.h ssl_algs.c ssl_locl.h |
| 475 | ssl_asn1.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/asn1_mac.h | 641 | ssl_asn1.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h |
| 476 | ssl_asn1.o: ../include/openssl/bio.h ../include/openssl/bn.h | 642 | ssl_asn1.o: ../include/openssl/asn1.h ../include/openssl/asn1_mac.h |
| 477 | ssl_asn1.o: ../include/openssl/buffer.h ../include/openssl/comp.h | 643 | ssl_asn1.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 478 | ssl_asn1.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 644 | ssl_asn1.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 645 | ssl_asn1.o: ../include/openssl/cast.h ../include/openssl/comp.h | ||
| 646 | ssl_asn1.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 647 | ssl_asn1.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 479 | ssl_asn1.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 648 | ssl_asn1.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 480 | ssl_asn1.o: ../include/openssl/err.h ../include/openssl/evp.h | 649 | ssl_asn1.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 481 | ssl_asn1.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 650 | ssl_asn1.o: ../include/openssl/idea.h ../include/openssl/kssl.h |
| 482 | ssl_asn1.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 651 | ssl_asn1.o: ../include/openssl/lhash.h ../include/openssl/md2.h |
| 483 | ssl_asn1.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 652 | ssl_asn1.o: ../include/openssl/md4.h ../include/openssl/md5.h |
| 484 | ssl_asn1.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 653 | ssl_asn1.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h |
| 485 | ssl_asn1.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 654 | ssl_asn1.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 486 | ssl_asn1.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 655 | ssl_asn1.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 487 | ssl_asn1.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 656 | ssl_asn1.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 488 | ssl_asn1.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 657 | ssl_asn1.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 489 | ssl_asn1.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 658 | ssl_asn1.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 490 | ssl_asn1.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 659 | ssl_asn1.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 491 | ssl_asn1.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_asn1.c | 660 | ssl_asn1.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 492 | ssl_asn1.o: ssl_locl.h | 661 | ssl_asn1.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 493 | ssl_cert.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 662 | ssl_asn1.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 663 | ssl_asn1.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 664 | ssl_asn1.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 665 | ssl_asn1.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 666 | ssl_asn1.o: ../include/openssl/x509_vfy.h ssl_asn1.c ssl_locl.h | ||
| 667 | ssl_cert.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 668 | ssl_cert.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 494 | ssl_cert.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 669 | ssl_cert.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 495 | ssl_cert.o: ../include/openssl/comp.h ../include/openssl/conf.h | 670 | ssl_cert.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 496 | ssl_cert.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 671 | ssl_cert.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
| 497 | ssl_cert.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 672 | ssl_cert.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| 498 | ssl_cert.o: ../include/openssl/err.h ../include/openssl/evp.h | 673 | ssl_cert.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 674 | ssl_cert.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 675 | ssl_cert.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 499 | ssl_cert.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 676 | ssl_cert.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 677 | ssl_cert.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 678 | ssl_cert.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 500 | ssl_cert.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 679 | ssl_cert.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 501 | ssl_cert.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 680 | ssl_cert.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 502 | ssl_cert.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 681 | ssl_cert.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 503 | ssl_cert.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 682 | ssl_cert.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 683 | ssl_cert.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 684 | ssl_cert.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 504 | ssl_cert.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 685 | ssl_cert.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 505 | ssl_cert.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 686 | ssl_cert.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 506 | ssl_cert.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 687 | ssl_cert.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 507 | ssl_cert.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 688 | ssl_cert.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 508 | ssl_cert.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 689 | ssl_cert.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 690 | ssl_cert.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 509 | ssl_cert.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | 691 | ssl_cert.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
| 510 | ssl_cert.o: ../include/openssl/x509v3.h ssl_cert.c ssl_locl.h | 692 | ssl_cert.o: ../include/openssl/x509v3.h ssl_cert.c ssl_locl.h |
| 511 | ssl_ciph.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 693 | ssl_ciph.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 694 | ssl_ciph.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 512 | ssl_ciph.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 695 | ssl_ciph.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 513 | ssl_ciph.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 696 | ssl_ciph.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 514 | ssl_ciph.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 697 | ssl_ciph.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 515 | ssl_ciph.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 698 | ssl_ciph.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 516 | ssl_ciph.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 699 | ssl_ciph.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 517 | ssl_ciph.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 700 | ssl_ciph.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 701 | ssl_ciph.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 702 | ssl_ciph.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 703 | ssl_ciph.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 704 | ssl_ciph.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 518 | ssl_ciph.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 705 | ssl_ciph.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 519 | ssl_ciph.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 706 | ssl_ciph.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 520 | ssl_ciph.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 707 | ssl_ciph.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 521 | ssl_ciph.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 708 | ssl_ciph.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 709 | ssl_ciph.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 710 | ssl_ciph.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 522 | ssl_ciph.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 711 | ssl_ciph.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 523 | ssl_ciph.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 712 | ssl_ciph.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 524 | ssl_ciph.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 713 | ssl_ciph.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 525 | ssl_ciph.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 714 | ssl_ciph.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 526 | ssl_ciph.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 715 | ssl_ciph.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 716 | ssl_ciph.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 527 | ssl_ciph.o: ../include/openssl/x509_vfy.h ssl_ciph.c ssl_locl.h | 717 | ssl_ciph.o: ../include/openssl/x509_vfy.h ssl_ciph.c ssl_locl.h |
| 528 | ssl_err.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 718 | ssl_err.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 719 | ssl_err.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 529 | ssl_err.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 720 | ssl_err.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 530 | ssl_err.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 721 | ssl_err.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 531 | ssl_err.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 722 | ssl_err.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 532 | ssl_err.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 723 | ssl_err.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 533 | ssl_err.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 724 | ssl_err.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 534 | ssl_err.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 725 | ssl_err.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 726 | ssl_err.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 727 | ssl_err.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 728 | ssl_err.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 729 | ssl_err.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 535 | ssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 730 | ssl_err.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 536 | ssl_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 731 | ssl_err.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 537 | ssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 732 | ssl_err.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 538 | ssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 733 | ssl_err.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 734 | ssl_err.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 735 | ssl_err.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 539 | ssl_err.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 736 | ssl_err.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 540 | ssl_err.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 737 | ssl_err.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 541 | ssl_err.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 738 | ssl_err.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 542 | ssl_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 739 | ssl_err.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 543 | ssl_err.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 740 | ssl_err.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 741 | ssl_err.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 544 | ssl_err.o: ../include/openssl/x509_vfy.h ssl_err.c | 742 | ssl_err.o: ../include/openssl/x509_vfy.h ssl_err.c |
| 545 | ssl_err2.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 743 | ssl_err2.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 744 | ssl_err2.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 546 | ssl_err2.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 745 | ssl_err2.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 547 | ssl_err2.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 746 | ssl_err2.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 548 | ssl_err2.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 747 | ssl_err2.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 549 | ssl_err2.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 748 | ssl_err2.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 550 | ssl_err2.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 749 | ssl_err2.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 551 | ssl_err2.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 750 | ssl_err2.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 751 | ssl_err2.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 752 | ssl_err2.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 753 | ssl_err2.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 754 | ssl_err2.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 552 | ssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 755 | ssl_err2.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 553 | ssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 756 | ssl_err2.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 554 | ssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 757 | ssl_err2.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 555 | ssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 758 | ssl_err2.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 759 | ssl_err2.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 760 | ssl_err2.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 556 | ssl_err2.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 761 | ssl_err2.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 557 | ssl_err2.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 762 | ssl_err2.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 558 | ssl_err2.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 763 | ssl_err2.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 559 | ssl_err2.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 764 | ssl_err2.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 560 | ssl_err2.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 765 | ssl_err2.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 766 | ssl_err2.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 561 | ssl_err2.o: ../include/openssl/x509_vfy.h ssl_err2.c | 767 | ssl_err2.o: ../include/openssl/x509_vfy.h ssl_err2.c |
| 562 | ssl_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 768 | ssl_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 769 | ssl_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 563 | ssl_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 770 | ssl_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 564 | ssl_lib.o: ../include/openssl/comp.h ../include/openssl/conf.h | 771 | ssl_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 565 | ssl_lib.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 772 | ssl_lib.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
| 566 | ssl_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 773 | ssl_lib.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| 567 | ssl_lib.o: ../include/openssl/err.h ../include/openssl/evp.h | 774 | ssl_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 775 | ssl_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 776 | ssl_lib.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 568 | ssl_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 777 | ssl_lib.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 778 | ssl_lib.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 779 | ssl_lib.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 569 | ssl_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 780 | ssl_lib.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 570 | ssl_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 781 | ssl_lib.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 571 | ssl_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 782 | ssl_lib.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 572 | ssl_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 783 | ssl_lib.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 784 | ssl_lib.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 785 | ssl_lib.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 573 | ssl_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 786 | ssl_lib.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 574 | ssl_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 787 | ssl_lib.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 575 | ssl_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 788 | ssl_lib.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 576 | ssl_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 789 | ssl_lib.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 577 | ssl_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 790 | ssl_lib.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 791 | ssl_lib.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 578 | ssl_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | 792 | ssl_lib.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
| 579 | ssl_lib.o: ../include/openssl/x509v3.h kssl_lcl.h ssl_lib.c ssl_locl.h | 793 | ssl_lib.o: ../include/openssl/x509v3.h kssl_lcl.h ssl_lib.c ssl_locl.h |
| 580 | ssl_rsa.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 794 | ssl_rsa.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 795 | ssl_rsa.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 581 | ssl_rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 796 | ssl_rsa.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 582 | ssl_rsa.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 797 | ssl_rsa.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 583 | ssl_rsa.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 798 | ssl_rsa.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 584 | ssl_rsa.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 799 | ssl_rsa.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 585 | ssl_rsa.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 800 | ssl_rsa.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 586 | ssl_rsa.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 801 | ssl_rsa.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 802 | ssl_rsa.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 803 | ssl_rsa.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 804 | ssl_rsa.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 805 | ssl_rsa.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 587 | ssl_rsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 806 | ssl_rsa.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 588 | ssl_rsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 807 | ssl_rsa.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 589 | ssl_rsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 808 | ssl_rsa.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 590 | ssl_rsa.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 809 | ssl_rsa.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 810 | ssl_rsa.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 811 | ssl_rsa.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 591 | ssl_rsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 812 | ssl_rsa.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 592 | ssl_rsa.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 813 | ssl_rsa.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 593 | ssl_rsa.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 814 | ssl_rsa.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 594 | ssl_rsa.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 815 | ssl_rsa.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 595 | ssl_rsa.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 816 | ssl_rsa.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 817 | ssl_rsa.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 596 | ssl_rsa.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_rsa.c | 818 | ssl_rsa.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_rsa.c |
| 597 | ssl_sess.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 819 | ssl_sess.o: ../crypto/cryptlib.h ../e_os.h ../include/openssl/aes.h |
| 598 | ssl_sess.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 820 | ssl_sess.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
| 821 | ssl_sess.o: ../include/openssl/blowfish.h ../include/openssl/bn.h | ||
| 822 | ssl_sess.o: ../include/openssl/buffer.h ../include/openssl/cast.h | ||
| 599 | ssl_sess.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 823 | ssl_sess.o: ../include/openssl/comp.h ../include/openssl/crypto.h |
| 824 | ssl_sess.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 600 | ssl_sess.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 825 | ssl_sess.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 601 | ssl_sess.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 826 | ssl_sess.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 602 | ssl_sess.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 827 | ssl_sess.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 603 | ssl_sess.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 828 | ssl_sess.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 604 | ssl_sess.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 829 | ssl_sess.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 605 | ssl_sess.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 830 | ssl_sess.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 606 | ssl_sess.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 831 | ssl_sess.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 607 | ssl_sess.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 832 | ssl_sess.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 608 | ssl_sess.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 833 | ssl_sess.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 609 | ssl_sess.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 834 | ssl_sess.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 610 | ssl_sess.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 835 | ssl_sess.o: ../include/openssl/rand.h ../include/openssl/rc2.h |
| 611 | ssl_sess.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 836 | ssl_sess.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 612 | ssl_sess.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 837 | ssl_sess.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 613 | ssl_sess.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | 838 | ssl_sess.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 614 | ssl_sess.o: ssl_sess.c | 839 | ssl_sess.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 615 | ssl_stat.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 840 | ssl_sess.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 841 | ssl_sess.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 842 | ssl_sess.o: ../include/openssl/tls1.h ../include/openssl/ui.h | ||
| 843 | ssl_sess.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 844 | ssl_sess.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_sess.c | ||
| 845 | ssl_stat.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 846 | ssl_stat.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 616 | ssl_stat.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 847 | ssl_stat.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 617 | ssl_stat.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 848 | ssl_stat.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 618 | ssl_stat.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 849 | ssl_stat.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 619 | ssl_stat.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 850 | ssl_stat.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 620 | ssl_stat.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 851 | ssl_stat.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 621 | ssl_stat.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 852 | ssl_stat.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 853 | ssl_stat.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 854 | ssl_stat.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 855 | ssl_stat.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 856 | ssl_stat.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 622 | ssl_stat.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 857 | ssl_stat.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 623 | ssl_stat.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 858 | ssl_stat.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 624 | ssl_stat.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 859 | ssl_stat.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 625 | ssl_stat.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 860 | ssl_stat.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 861 | ssl_stat.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 862 | ssl_stat.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 626 | ssl_stat.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 863 | ssl_stat.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 627 | ssl_stat.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 864 | ssl_stat.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 628 | ssl_stat.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 865 | ssl_stat.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 629 | ssl_stat.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 866 | ssl_stat.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 630 | ssl_stat.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 867 | ssl_stat.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 868 | ssl_stat.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 631 | ssl_stat.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_stat.c | 869 | ssl_stat.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_stat.c |
| 632 | ssl_txt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 870 | ssl_txt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 871 | ssl_txt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 633 | ssl_txt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 872 | ssl_txt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 634 | ssl_txt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 873 | ssl_txt.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 635 | ssl_txt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 874 | ssl_txt.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 636 | ssl_txt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 875 | ssl_txt.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 637 | ssl_txt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 876 | ssl_txt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 638 | ssl_txt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 877 | ssl_txt.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 878 | ssl_txt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 879 | ssl_txt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 880 | ssl_txt.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 881 | ssl_txt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 639 | ssl_txt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 882 | ssl_txt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 640 | ssl_txt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 883 | ssl_txt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 641 | ssl_txt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 884 | ssl_txt.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 642 | ssl_txt.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 885 | ssl_txt.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 886 | ssl_txt.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 887 | ssl_txt.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 643 | ssl_txt.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 888 | ssl_txt.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 644 | ssl_txt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 889 | ssl_txt.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 645 | ssl_txt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 890 | ssl_txt.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 646 | ssl_txt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 891 | ssl_txt.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 647 | ssl_txt.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 892 | ssl_txt.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 893 | ssl_txt.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 648 | ssl_txt.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_txt.c | 894 | ssl_txt.o: ../include/openssl/x509_vfy.h ssl_locl.h ssl_txt.c |
| 649 | t1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 895 | t1_clnt.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 896 | t1_clnt.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 650 | t1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 897 | t1_clnt.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 651 | t1_clnt.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 898 | t1_clnt.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 652 | t1_clnt.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 899 | t1_clnt.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 653 | t1_clnt.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 900 | t1_clnt.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 654 | t1_clnt.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 901 | t1_clnt.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 655 | t1_clnt.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 902 | t1_clnt.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 903 | t1_clnt.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 904 | t1_clnt.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 905 | t1_clnt.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 906 | t1_clnt.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 656 | t1_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 907 | t1_clnt.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 657 | t1_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 908 | t1_clnt.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 658 | t1_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 909 | t1_clnt.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 659 | t1_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 910 | t1_clnt.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 911 | t1_clnt.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 912 | t1_clnt.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 660 | t1_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 913 | t1_clnt.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 661 | t1_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 914 | t1_clnt.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 662 | t1_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 915 | t1_clnt.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 663 | t1_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 916 | t1_clnt.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 664 | t1_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 917 | t1_clnt.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 918 | t1_clnt.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 665 | t1_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | 919 | t1_clnt.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h |
| 666 | t1_clnt.o: t1_clnt.c | 920 | t1_clnt.o: t1_clnt.c |
| 667 | t1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 921 | t1_enc.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 922 | t1_enc.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 668 | t1_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 923 | t1_enc.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 669 | t1_enc.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 924 | t1_enc.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 670 | t1_enc.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 925 | t1_enc.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 671 | t1_enc.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 926 | t1_enc.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 672 | t1_enc.o: ../include/openssl/evp.h ../include/openssl/hmac.h | 927 | t1_enc.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 928 | t1_enc.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 929 | t1_enc.o: ../include/openssl/hmac.h ../include/openssl/idea.h | ||
| 673 | t1_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 930 | t1_enc.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 674 | t1_enc.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | 931 | t1_enc.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 675 | t1_enc.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 932 | t1_enc.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 676 | t1_enc.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 933 | t1_enc.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 677 | t1_enc.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 934 | t1_enc.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 678 | t1_enc.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 935 | t1_enc.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 679 | t1_enc.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 936 | t1_enc.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 680 | t1_enc.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 937 | t1_enc.o: ../include/openssl/rc2.h ../include/openssl/rc4.h |
| 681 | t1_enc.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 938 | t1_enc.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h |
| 682 | t1_enc.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 939 | t1_enc.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 683 | t1_enc.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 940 | t1_enc.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 684 | t1_enc.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_enc.c | 941 | t1_enc.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 685 | t1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 942 | t1_enc.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 943 | t1_enc.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | ||
| 944 | t1_enc.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 945 | t1_enc.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | ||
| 946 | t1_enc.o: t1_enc.c | ||
| 947 | t1_lib.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 948 | t1_lib.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 686 | t1_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 949 | t1_lib.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 687 | t1_lib.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 950 | t1_lib.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 688 | t1_lib.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 951 | t1_lib.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 689 | t1_lib.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 952 | t1_lib.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 690 | t1_lib.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 953 | t1_lib.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 691 | t1_lib.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 954 | t1_lib.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 955 | t1_lib.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 956 | t1_lib.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 957 | t1_lib.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 958 | t1_lib.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 692 | t1_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 959 | t1_lib.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 693 | t1_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 960 | t1_lib.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 694 | t1_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 961 | t1_lib.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 695 | t1_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 962 | t1_lib.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 963 | t1_lib.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 964 | t1_lib.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 696 | t1_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 965 | t1_lib.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 697 | t1_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 966 | t1_lib.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 698 | t1_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 967 | t1_lib.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 699 | t1_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 968 | t1_lib.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 700 | t1_lib.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 969 | t1_lib.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 970 | t1_lib.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 701 | t1_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_lib.c | 971 | t1_lib.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_lib.c |
| 702 | t1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 972 | t1_meth.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 973 | t1_meth.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 703 | t1_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 974 | t1_meth.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 704 | t1_meth.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 975 | t1_meth.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 705 | t1_meth.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 976 | t1_meth.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 706 | t1_meth.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 977 | t1_meth.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 707 | t1_meth.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 978 | t1_meth.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 708 | t1_meth.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 979 | t1_meth.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 980 | t1_meth.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 981 | t1_meth.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 982 | t1_meth.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 983 | t1_meth.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 709 | t1_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 984 | t1_meth.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 710 | t1_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 985 | t1_meth.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 711 | t1_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 986 | t1_meth.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 712 | t1_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rsa.h | 987 | t1_meth.o: ../include/openssl/pkcs7.h ../include/openssl/rc2.h |
| 988 | t1_meth.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 989 | t1_meth.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 713 | t1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 990 | t1_meth.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 714 | t1_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 991 | t1_meth.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 715 | t1_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 992 | t1_meth.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 716 | t1_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 993 | t1_meth.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 717 | t1_meth.o: ../include/openssl/tls1.h ../include/openssl/x509.h | 994 | t1_meth.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 995 | t1_meth.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 718 | t1_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_meth.c | 996 | t1_meth.o: ../include/openssl/x509_vfy.h ssl_locl.h t1_meth.c |
| 719 | t1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 997 | t1_srvr.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 998 | t1_srvr.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 720 | t1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 999 | t1_srvr.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 721 | t1_srvr.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 1000 | t1_srvr.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 722 | t1_srvr.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 1001 | t1_srvr.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 723 | t1_srvr.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 1002 | t1_srvr.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 724 | t1_srvr.o: ../include/openssl/evp.h ../include/openssl/kssl.h | 1003 | t1_srvr.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 725 | t1_srvr.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 1004 | t1_srvr.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 1005 | t1_srvr.o: ../include/openssl/idea.h ../include/openssl/kssl.h | ||
| 1006 | t1_srvr.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 1007 | t1_srvr.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 1008 | t1_srvr.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 726 | t1_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 1009 | t1_srvr.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 727 | t1_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 1010 | t1_srvr.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 728 | t1_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 1011 | t1_srvr.o: ../include/openssl/pem.h ../include/openssl/pem2.h |
| 729 | t1_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 1012 | t1_srvr.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 1013 | t1_srvr.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 1014 | t1_srvr.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 730 | t1_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 1015 | t1_srvr.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 731 | t1_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 1016 | t1_srvr.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| 732 | t1_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h | 1017 | t1_srvr.o: ../include/openssl/ssl2.h ../include/openssl/ssl23.h |
| 733 | t1_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | 1018 | t1_srvr.o: ../include/openssl/ssl3.h ../include/openssl/stack.h |
| 734 | t1_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 1019 | t1_srvr.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 1020 | t1_srvr.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 735 | t1_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h | 1021 | t1_srvr.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssl_locl.h |
| 736 | t1_srvr.o: t1_srvr.c | 1022 | t1_srvr.o: t1_srvr.c |
diff --git a/src/lib/libssl/src/ssl/s23_clnt.c b/src/lib/libssl/src/ssl/s23_clnt.c index b2be8340fb..019e9aecee 100644 --- a/src/lib/libssl/src/ssl/s23_clnt.c +++ b/src/lib/libssl/src/ssl/s23_clnt.c | |||
| @@ -57,11 +57,11 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/buffer.h> | 61 | #include <openssl/buffer.h> |
| 61 | #include <openssl/rand.h> | 62 | #include <openssl/rand.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/evp.h> | 64 | #include <openssl/evp.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | static SSL_METHOD *ssl23_get_client_method(int ver); | 66 | static SSL_METHOD *ssl23_get_client_method(int ver); |
| 67 | static int ssl23_client_hello(SSL *s); | 67 | static int ssl23_client_hello(SSL *s); |
diff --git a/src/lib/libssl/src/ssl/s23_pkt.c b/src/lib/libssl/src/ssl/s23_pkt.c index f45e1ce3d8..4ca6a1b258 100644 --- a/src/lib/libssl/src/ssl/s23_pkt.c +++ b/src/lib/libssl/src/ssl/s23_pkt.c | |||
| @@ -59,9 +59,9 @@ | |||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include <errno.h> | 60 | #include <errno.h> |
| 61 | #define USE_SOCKETS | 61 | #define USE_SOCKETS |
| 62 | #include "ssl_locl.h" | ||
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include <openssl/buffer.h> | 64 | #include <openssl/buffer.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | int ssl23_write_bytes(SSL *s) | 66 | int ssl23_write_bytes(SSL *s) |
| 67 | { | 67 | { |
diff --git a/src/lib/libssl/src/ssl/s23_srvr.c b/src/lib/libssl/src/ssl/s23_srvr.c index 9e89cc7f9a..8743b61cbb 100644 --- a/src/lib/libssl/src/ssl/s23_srvr.c +++ b/src/lib/libssl/src/ssl/s23_srvr.c | |||
| @@ -110,11 +110,11 @@ | |||
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include "ssl_locl.h" | ||
| 113 | #include <openssl/buffer.h> | 114 | #include <openssl/buffer.h> |
| 114 | #include <openssl/rand.h> | 115 | #include <openssl/rand.h> |
| 115 | #include <openssl/objects.h> | 116 | #include <openssl/objects.h> |
| 116 | #include <openssl/evp.h> | 117 | #include <openssl/evp.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | 118 | ||
| 119 | static SSL_METHOD *ssl23_get_server_method(int ver); | 119 | static SSL_METHOD *ssl23_get_server_method(int ver); |
| 120 | int ssl23_get_client_hello(SSL *s); | 120 | int ssl23_get_client_hello(SSL *s); |
diff --git a/src/lib/libssl/src/ssl/s2_clnt.c b/src/lib/libssl/src/ssl/s2_clnt.c index 42ad313183..a5beeb732e 100644 --- a/src/lib/libssl/src/ssl/s2_clnt.c +++ b/src/lib/libssl/src/ssl/s2_clnt.c | |||
| @@ -116,7 +116,6 @@ | |||
| 116 | #include <openssl/buffer.h> | 116 | #include <openssl/buffer.h> |
| 117 | #include <openssl/objects.h> | 117 | #include <openssl/objects.h> |
| 118 | #include <openssl/evp.h> | 118 | #include <openssl/evp.h> |
| 119 | #include "ssl_locl.h" | ||
| 120 | 119 | ||
| 121 | static SSL_METHOD *ssl2_get_client_method(int ver); | 120 | static SSL_METHOD *ssl2_get_client_method(int ver); |
| 122 | static int get_server_finished(SSL *s); | 121 | static int get_server_finished(SSL *s); |
diff --git a/src/lib/libssl/src/ssl/s2_lib.c b/src/lib/libssl/src/ssl/s2_lib.c index 83d5730ff3..247f4603a6 100644 --- a/src/lib/libssl/src/ssl/s2_lib.c +++ b/src/lib/libssl/src/ssl/s2_lib.c | |||
| @@ -78,7 +78,8 @@ OPENSSL_GLOBAL SSL_CIPHER ssl2_ciphers[]={ | |||
| 78 | SSL2_TXT_NULL_WITH_MD5, | 78 | SSL2_TXT_NULL_WITH_MD5, |
| 79 | SSL2_CK_NULL_WITH_MD5, | 79 | SSL2_CK_NULL_WITH_MD5, |
| 80 | SSL_kRSA|SSL_aRSA|SSL_eNULL|SSL_MD5|SSL_SSLV2, | 80 | SSL_kRSA|SSL_aRSA|SSL_eNULL|SSL_MD5|SSL_SSLV2, |
| 81 | SSL_EXPORT|SSL_EXP40, | 81 | SSL_EXPORT|SSL_EXP40|SSL_STRONG_NONE, |
| 82 | 0, | ||
| 82 | 0, | 83 | 0, |
| 83 | 0, | 84 | 0, |
| 84 | SSL_ALL_CIPHERS, | 85 | SSL_ALL_CIPHERS, |
| @@ -200,6 +201,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl2_ciphers[]={ | |||
| 200 | SSL2_TXT_NULL, | 201 | SSL2_TXT_NULL, |
| 201 | SSL2_CK_NULL, | 202 | SSL2_CK_NULL, |
| 202 | 0, | 203 | 0, |
| 204 | SSL_STRONG_NONE, | ||
| 203 | 0, | 205 | 0, |
| 204 | 0, | 206 | 0, |
| 205 | 0, | 207 | 0, |
diff --git a/src/lib/libssl/src/ssl/s3_both.c b/src/lib/libssl/src/ssl/s3_both.c index 58a24cd883..8864366f59 100644 --- a/src/lib/libssl/src/ssl/s3_both.c +++ b/src/lib/libssl/src/ssl/s3_both.c | |||
| @@ -112,12 +112,12 @@ | |||
| 112 | #include <limits.h> | 112 | #include <limits.h> |
| 113 | #include <string.h> | 113 | #include <string.h> |
| 114 | #include <stdio.h> | 114 | #include <stdio.h> |
| 115 | #include "ssl_locl.h" | ||
| 115 | #include <openssl/buffer.h> | 116 | #include <openssl/buffer.h> |
| 116 | #include <openssl/rand.h> | 117 | #include <openssl/rand.h> |
| 117 | #include <openssl/objects.h> | 118 | #include <openssl/objects.h> |
| 118 | #include <openssl/evp.h> | 119 | #include <openssl/evp.h> |
| 119 | #include <openssl/x509.h> | 120 | #include <openssl/x509.h> |
| 120 | #include "ssl_locl.h" | ||
| 121 | 121 | ||
| 122 | /* send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC) */ | 122 | /* send s->init_buf in records of type 'type' (SSL3_RT_HANDSHAKE or SSL3_RT_CHANGE_CIPHER_SPEC) */ |
| 123 | int ssl3_do_write(SSL *s, int type) | 123 | int ssl3_do_write(SSL *s, int type) |
diff --git a/src/lib/libssl/src/ssl/s3_clnt.c b/src/lib/libssl/src/ssl/s3_clnt.c index 5d3efac2cd..27df7a5a64 100644 --- a/src/lib/libssl/src/ssl/s3_clnt.c +++ b/src/lib/libssl/src/ssl/s3_clnt.c | |||
| @@ -110,12 +110,12 @@ | |||
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include "ssl_locl.h" | ||
| 114 | #include "kssl_lcl.h" | ||
| 113 | #include <openssl/buffer.h> | 115 | #include <openssl/buffer.h> |
| 114 | #include <openssl/rand.h> | 116 | #include <openssl/rand.h> |
| 115 | #include <openssl/objects.h> | 117 | #include <openssl/objects.h> |
| 116 | #include <openssl/evp.h> | 118 | #include <openssl/evp.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | #include "kssl_lcl.h" | ||
| 119 | #include <openssl/md5.h> | 119 | #include <openssl/md5.h> |
| 120 | 120 | ||
| 121 | static SSL_METHOD *ssl3_get_client_method(int ver); | 121 | static SSL_METHOD *ssl3_get_client_method(int ver); |
diff --git a/src/lib/libssl/src/ssl/s3_enc.c b/src/lib/libssl/src/ssl/s3_enc.c index 6dfef5caaf..888a9a2868 100644 --- a/src/lib/libssl/src/ssl/s3_enc.c +++ b/src/lib/libssl/src/ssl/s3_enc.c | |||
| @@ -110,8 +110,8 @@ | |||
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include <openssl/evp.h> | ||
| 114 | #include "ssl_locl.h" | 113 | #include "ssl_locl.h" |
| 114 | #include <openssl/evp.h> | ||
| 115 | #include <openssl/md5.h> | 115 | #include <openssl/md5.h> |
| 116 | 116 | ||
| 117 | static unsigned char ssl3_pad_1[48]={ | 117 | static unsigned char ssl3_pad_1[48]={ |
| @@ -378,13 +378,24 @@ int ssl3_setup_key_block(SSL *s) | |||
| 378 | 378 | ||
| 379 | ret = ssl3_generate_key_block(s,p,num); | 379 | ret = ssl3_generate_key_block(s,p,num); |
| 380 | 380 | ||
| 381 | /* enable vulnerability countermeasure for CBC ciphers with | 381 | if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)) |
| 382 | * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt) */ | 382 | { |
| 383 | s->s3->need_empty_fragments = 1; | 383 | /* enable vulnerability countermeasure for CBC ciphers with |
| 384 | * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt) | ||
| 385 | */ | ||
| 386 | s->s3->need_empty_fragments = 1; | ||
| 387 | |||
| 388 | if (s->session->cipher != NULL) | ||
| 389 | { | ||
| 390 | if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_eNULL) | ||
| 391 | s->s3->need_empty_fragments = 0; | ||
| 392 | |||
| 384 | #ifndef OPENSSL_NO_RC4 | 393 | #ifndef OPENSSL_NO_RC4 |
| 385 | if ((s->session->cipher != NULL) && ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4)) | 394 | if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4) |
| 386 | s->s3->need_empty_fragments = 0; | 395 | s->s3->need_empty_fragments = 0; |
| 387 | #endif | 396 | #endif |
| 397 | } | ||
| 398 | } | ||
| 388 | 399 | ||
| 389 | return ret; | 400 | return ret; |
| 390 | 401 | ||
diff --git a/src/lib/libssl/src/ssl/s3_lib.c b/src/lib/libssl/src/ssl/s3_lib.c index 838071b16b..cc0aeef511 100644 --- a/src/lib/libssl/src/ssl/s3_lib.c +++ b/src/lib/libssl/src/ssl/s3_lib.c | |||
| @@ -129,7 +129,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 129 | SSL3_TXT_RSA_NULL_MD5, | 129 | SSL3_TXT_RSA_NULL_MD5, |
| 130 | SSL3_CK_RSA_NULL_MD5, | 130 | SSL3_CK_RSA_NULL_MD5, |
| 131 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_MD5|SSL_SSLV3, | 131 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_MD5|SSL_SSLV3, |
| 132 | SSL_NOT_EXP, | 132 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 133 | 0, | 133 | 0, |
| 134 | 0, | 134 | 0, |
| 135 | 0, | 135 | 0, |
| @@ -142,7 +142,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 142 | SSL3_TXT_RSA_NULL_SHA, | 142 | SSL3_TXT_RSA_NULL_SHA, |
| 143 | SSL3_CK_RSA_NULL_SHA, | 143 | SSL3_CK_RSA_NULL_SHA, |
| 144 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_SHA1|SSL_SSLV3, | 144 | SSL_kRSA|SSL_aRSA|SSL_eNULL |SSL_SHA1|SSL_SSLV3, |
| 145 | SSL_NOT_EXP, | 145 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 146 | 0, | 146 | 0, |
| 147 | 0, | 147 | 0, |
| 148 | 0, | 148 | 0, |
| @@ -492,7 +492,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 492 | SSL3_TXT_FZA_DMS_NULL_SHA, | 492 | SSL3_TXT_FZA_DMS_NULL_SHA, |
| 493 | SSL3_CK_FZA_DMS_NULL_SHA, | 493 | SSL3_CK_FZA_DMS_NULL_SHA, |
| 494 | SSL_kFZA|SSL_aFZA |SSL_eNULL |SSL_SHA1|SSL_SSLV3, | 494 | SSL_kFZA|SSL_aFZA |SSL_eNULL |SSL_SHA1|SSL_SSLV3, |
| 495 | SSL_NOT_EXP, | 495 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 496 | 0, | 496 | 0, |
| 497 | 0, | 497 | 0, |
| 498 | 0, | 498 | 0, |
| @@ -506,7 +506,7 @@ OPENSSL_GLOBAL SSL_CIPHER ssl3_ciphers[]={ | |||
| 506 | SSL3_TXT_FZA_DMS_FZA_SHA, | 506 | SSL3_TXT_FZA_DMS_FZA_SHA, |
| 507 | SSL3_CK_FZA_DMS_FZA_SHA, | 507 | SSL3_CK_FZA_DMS_FZA_SHA, |
| 508 | SSL_kFZA|SSL_aFZA |SSL_eFZA |SSL_SHA1|SSL_SSLV3, | 508 | SSL_kFZA|SSL_aFZA |SSL_eFZA |SSL_SHA1|SSL_SSLV3, |
| 509 | SSL_NOT_EXP, | 509 | SSL_NOT_EXP|SSL_STRONG_NONE, |
| 510 | 0, | 510 | 0, |
| 511 | 0, | 511 | 0, |
| 512 | 0, | 512 | 0, |
diff --git a/src/lib/libssl/src/ssl/s3_pkt.c b/src/lib/libssl/src/ssl/s3_pkt.c index 43e8502b66..6ccea9aee5 100644 --- a/src/lib/libssl/src/ssl/s3_pkt.c +++ b/src/lib/libssl/src/ssl/s3_pkt.c | |||
| @@ -112,9 +112,9 @@ | |||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include <errno.h> | 113 | #include <errno.h> |
| 114 | #define USE_SOCKETS | 114 | #define USE_SOCKETS |
| 115 | #include "ssl_locl.h" | ||
| 115 | #include <openssl/evp.h> | 116 | #include <openssl/evp.h> |
| 116 | #include <openssl/buffer.h> | 117 | #include <openssl/buffer.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | 118 | ||
| 119 | static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, | 119 | static int do_ssl3_write(SSL *s, int type, const unsigned char *buf, |
| 120 | unsigned int len, int create_empty_fragment); | 120 | unsigned int len, int create_empty_fragment); |
diff --git a/src/lib/libssl/src/ssl/s3_srvr.c b/src/lib/libssl/src/ssl/s3_srvr.c index cef8d4f81e..dfffed7165 100644 --- a/src/lib/libssl/src/ssl/s3_srvr.c +++ b/src/lib/libssl/src/ssl/s3_srvr.c | |||
| @@ -114,6 +114,8 @@ | |||
| 114 | 114 | ||
| 115 | 115 | ||
| 116 | #include <stdio.h> | 116 | #include <stdio.h> |
| 117 | #include "ssl_locl.h" | ||
| 118 | #include "kssl_lcl.h" | ||
| 117 | #include <openssl/buffer.h> | 119 | #include <openssl/buffer.h> |
| 118 | #include <openssl/rand.h> | 120 | #include <openssl/rand.h> |
| 119 | #include <openssl/objects.h> | 121 | #include <openssl/objects.h> |
| @@ -121,10 +123,8 @@ | |||
| 121 | #include <openssl/x509.h> | 123 | #include <openssl/x509.h> |
| 122 | #ifndef OPENSSL_NO_KRB5 | 124 | #ifndef OPENSSL_NO_KRB5 |
| 123 | #include <openssl/krb5_asn.h> | 125 | #include <openssl/krb5_asn.h> |
| 124 | #include "kssl_lcl.h" | ||
| 125 | #endif | 126 | #endif |
| 126 | #include <openssl/md5.h> | 127 | #include <openssl/md5.h> |
| 127 | #include "ssl_locl.h" | ||
| 128 | 128 | ||
| 129 | static SSL_METHOD *ssl3_get_server_method(int ver); | 129 | static SSL_METHOD *ssl3_get_server_method(int ver); |
| 130 | static int ssl3_get_client_hello(SSL *s); | 130 | static int ssl3_get_client_hello(SSL *s); |
diff --git a/src/lib/libssl/src/ssl/ssl-lib.com b/src/lib/libssl/src/ssl/ssl-lib.com index e706ab8e99..1f1921e162 100644 --- a/src/lib/libssl/src/ssl/ssl-lib.com +++ b/src/lib/libssl/src/ssl/ssl-lib.com | |||
| @@ -314,7 +314,7 @@ $ WRITE SYS$OUTPUT "Creating SSL_TASK OSU HTTP SSL Engine." | |||
| 314 | $! | 314 | $! |
| 315 | $! Compile The File. | 315 | $! Compile The File. |
| 316 | $! | 316 | $! |
| 317 | $ ON ERROR GOTO SSL_TASK_END | 317 | $ ON ERROR THEN GOTO SSL_TASK_END |
| 318 | $ CC5/OBJECT='OBJ_DIR'SSL_TASK.OBJ SYS$DISK:[]SSL_TASK.C | 318 | $ CC5/OBJECT='OBJ_DIR'SSL_TASK.OBJ SYS$DISK:[]SSL_TASK.C |
| 319 | $! | 319 | $! |
| 320 | $! Link The Program, Check To See If We Need To Link With RSAREF Or Not. | 320 | $! Link The Program, Check To See If We Need To Link With RSAREF Or Not. |
diff --git a/src/lib/libssl/src/ssl/ssl.h b/src/lib/libssl/src/ssl/ssl.h index ce6354b2ff..d9949e8eb2 100644 --- a/src/lib/libssl/src/ssl/ssl.h +++ b/src/lib/libssl/src/ssl/ssl.h | |||
| @@ -253,7 +253,7 @@ extern "C" { | |||
| 253 | #define SSL_TXT_RC4 "RC4" | 253 | #define SSL_TXT_RC4 "RC4" |
| 254 | #define SSL_TXT_RC2 "RC2" | 254 | #define SSL_TXT_RC2 "RC2" |
| 255 | #define SSL_TXT_IDEA "IDEA" | 255 | #define SSL_TXT_IDEA "IDEA" |
| 256 | #define SSL_TXT_AES "AESdraft" /* AES ciphersuites are not yet official (thus excluded from 'ALL') */ | 256 | #define SSL_TXT_AES "AES" |
| 257 | #define SSL_TXT_MD5 "MD5" | 257 | #define SSL_TXT_MD5 "MD5" |
| 258 | #define SSL_TXT_SHA1 "SHA1" | 258 | #define SSL_TXT_SHA1 "SHA1" |
| 259 | #define SSL_TXT_SHA "SHA" | 259 | #define SSL_TXT_SHA "SHA" |
| @@ -266,6 +266,23 @@ extern "C" { | |||
| 266 | #define SSL_TXT_TLSV1 "TLSv1" | 266 | #define SSL_TXT_TLSV1 "TLSv1" |
| 267 | #define SSL_TXT_ALL "ALL" | 267 | #define SSL_TXT_ALL "ALL" |
| 268 | 268 | ||
| 269 | /* | ||
| 270 | * COMPLEMENTOF* definitions. These identifiers are used to (de-select) | ||
| 271 | * ciphers normally not being used. | ||
| 272 | * Example: "RC4" will activate all ciphers using RC4 including ciphers | ||
| 273 | * without authentication, which would normally disabled by DEFAULT (due | ||
| 274 | * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT" | ||
| 275 | * will make sure that it is also disabled in the specific selection. | ||
| 276 | * COMPLEMENTOF* identifiers are portable between version, as adjustments | ||
| 277 | * to the default cipher setup will also be included here. | ||
| 278 | * | ||
| 279 | * COMPLEMENTOFDEFAULT does not experience the same special treatment that | ||
| 280 | * DEFAULT gets, as only selection is being done and no sorting as needed | ||
| 281 | * for DEFAULT. | ||
| 282 | */ | ||
| 283 | #define SSL_TXT_CMPALL "COMPLEMENTOFALL" | ||
| 284 | #define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT" | ||
| 285 | |||
| 269 | /* The following cipher list is used by default. | 286 | /* The following cipher list is used by default. |
| 270 | * It also is substituted when an application-defined cipher list string | 287 | * It also is substituted when an application-defined cipher list string |
| 271 | * starts with 'DEFAULT'. */ | 288 | * starts with 'DEFAULT'. */ |
| @@ -429,6 +446,7 @@ typedef struct ssl_session_st | |||
| 429 | struct ssl_session_st *prev,*next; | 446 | struct ssl_session_st *prev,*next; |
| 430 | } SSL_SESSION; | 447 | } SSL_SESSION; |
| 431 | 448 | ||
| 449 | |||
| 432 | #define SSL_OP_MICROSOFT_SESS_ID_BUG 0x00000001L | 450 | #define SSL_OP_MICROSOFT_SESS_ID_BUG 0x00000001L |
| 433 | #define SSL_OP_NETSCAPE_CHALLENGE_BUG 0x00000002L | 451 | #define SSL_OP_NETSCAPE_CHALLENGE_BUG 0x00000002L |
| 434 | #define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0x00000008L | 452 | #define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0x00000008L |
| @@ -439,6 +457,19 @@ typedef struct ssl_session_st | |||
| 439 | #define SSL_OP_TLS_D5_BUG 0x00000100L | 457 | #define SSL_OP_TLS_D5_BUG 0x00000100L |
| 440 | #define SSL_OP_TLS_BLOCK_PADDING_BUG 0x00000200L | 458 | #define SSL_OP_TLS_BLOCK_PADDING_BUG 0x00000200L |
| 441 | 459 | ||
| 460 | /* Disable SSL 3.0/TLS 1.0 CBC vulnerability workaround that was added | ||
| 461 | * in OpenSSL 0.9.6d. Usually (depending on the application protocol) | ||
| 462 | * the workaround is not needed. Unfortunately some broken SSL/TLS | ||
| 463 | * implementations cannot handle it at all, which is why we include | ||
| 464 | * it in SSL_OP_ALL. */ | ||
| 465 | #define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS 0x00000800L /* added in 0.9.6e */ | ||
| 466 | |||
| 467 | /* SSL_OP_ALL: various bug workarounds that should be rather harmless. | ||
| 468 | * This used to be 0x000FFFFFL before 0.9.7. */ | ||
| 469 | #define SSL_OP_ALL 0x00000FFFL | ||
| 470 | |||
| 471 | /* As server, disallow session resumption on renegotiation */ | ||
| 472 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x00010000L | ||
| 442 | /* If set, always create a new key when using tmp_dh parameters */ | 473 | /* If set, always create a new key when using tmp_dh parameters */ |
| 443 | #define SSL_OP_SINGLE_DH_USE 0x00100000L | 474 | #define SSL_OP_SINGLE_DH_USE 0x00100000L |
| 444 | /* Set to always use the tmp_rsa key when doing RSA operations, | 475 | /* Set to always use the tmp_rsa key when doing RSA operations, |
| @@ -452,8 +483,10 @@ typedef struct ssl_session_st | |||
| 452 | * (version 3.1) was announced in the client hello. Normally this is | 483 | * (version 3.1) was announced in the client hello. Normally this is |
| 453 | * forbidden to prevent version rollback attacks. */ | 484 | * forbidden to prevent version rollback attacks. */ |
| 454 | #define SSL_OP_TLS_ROLLBACK_BUG 0x00800000L | 485 | #define SSL_OP_TLS_ROLLBACK_BUG 0x00800000L |
| 455 | /* As server, disallow session resumption on renegotiation */ | 486 | |
| 456 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x01000000L | 487 | #define SSL_OP_NO_SSLv2 0x01000000L |
| 488 | #define SSL_OP_NO_SSLv3 0x02000000L | ||
| 489 | #define SSL_OP_NO_TLSv1 0x04000000L | ||
| 457 | 490 | ||
| 458 | /* The next flag deliberately changes the ciphertest, this is a check | 491 | /* The next flag deliberately changes the ciphertest, this is a check |
| 459 | * for the PKCS#1 attack */ | 492 | * for the PKCS#1 attack */ |
| @@ -461,11 +494,7 @@ typedef struct ssl_session_st | |||
| 461 | #define SSL_OP_PKCS1_CHECK_2 0x10000000L | 494 | #define SSL_OP_PKCS1_CHECK_2 0x10000000L |
| 462 | #define SSL_OP_NETSCAPE_CA_DN_BUG 0x20000000L | 495 | #define SSL_OP_NETSCAPE_CA_DN_BUG 0x20000000L |
| 463 | #define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0x40000000L | 496 | #define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0x40000000L |
| 464 | #define SSL_OP_ALL 0x000FFFFFL | ||
| 465 | 497 | ||
| 466 | #define SSL_OP_NO_SSLv2 0x01000000L | ||
| 467 | #define SSL_OP_NO_SSLv3 0x02000000L | ||
| 468 | #define SSL_OP_NO_TLSv1 0x04000000L | ||
| 469 | 498 | ||
| 470 | /* Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success | 499 | /* Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success |
| 471 | * when just a single record has been written): */ | 500 | * when just a single record has been written): */ |
| @@ -479,6 +508,7 @@ typedef struct ssl_session_st | |||
| 479 | * is blocking: */ | 508 | * is blocking: */ |
| 480 | #define SSL_MODE_AUTO_RETRY 0x00000004L | 509 | #define SSL_MODE_AUTO_RETRY 0x00000004L |
| 481 | 510 | ||
| 511 | |||
| 482 | /* Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, | 512 | /* Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, |
| 483 | * they cannot be used to clear bits. */ | 513 | * they cannot be used to clear bits. */ |
| 484 | 514 | ||
diff --git a/src/lib/libssl/src/ssl/ssl_asn1.c b/src/lib/libssl/src/ssl/ssl_asn1.c index 39ffa46cee..c550747947 100644 --- a/src/lib/libssl/src/ssl/ssl_asn1.c +++ b/src/lib/libssl/src/ssl/ssl_asn1.c | |||
| @@ -57,11 +57,11 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <stdlib.h> | 61 | #include <stdlib.h> |
| 61 | #include <openssl/asn1_mac.h> | 62 | #include <openssl/asn1_mac.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/x509.h> | 64 | #include <openssl/x509.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | typedef struct ssl_session_asn1_st | 66 | typedef struct ssl_session_asn1_st |
| 67 | { | 67 | { |
diff --git a/src/lib/libssl/src/ssl/ssl_ciph.c b/src/lib/libssl/src/ssl/ssl_ciph.c index 57bbde5f27..df48245b2c 100644 --- a/src/lib/libssl/src/ssl/ssl_ciph.c +++ b/src/lib/libssl/src/ssl/ssl_ciph.c | |||
| @@ -100,9 +100,10 @@ typedef struct cipher_order_st | |||
| 100 | } CIPHER_ORDER; | 100 | } CIPHER_ORDER; |
| 101 | 101 | ||
| 102 | static const SSL_CIPHER cipher_aliases[]={ | 102 | static const SSL_CIPHER cipher_aliases[]={ |
| 103 | /* Don't include eNULL unless specifically enabled. | 103 | /* Don't include eNULL unless specifically enabled. */ |
| 104 | * Similarly, don't include AES in ALL because these ciphers are not yet official. */ | 104 | {0,SSL_TXT_ALL, 0,SSL_ALL & ~SSL_eNULL, SSL_ALL ,0,0,0,SSL_ALL,SSL_ALL}, /* must be first */ |
| 105 | {0,SSL_TXT_ALL, 0,SSL_ALL & ~SSL_eNULL & ~SSL_AES, SSL_ALL ,0,0,0,SSL_ALL,SSL_ALL}, /* must be first */ | 105 | {0,SSL_TXT_CMPALL,0,SSL_eNULL,0,0,0,0,SSL_ENC_MASK,0}, /* COMPLEMENT OF ALL */ |
| 106 | {0,SSL_TXT_CMPDEF,0,SSL_ADH, 0,0,0,0,SSL_AUTH_MASK,0}, | ||
| 106 | {0,SSL_TXT_kKRB5,0,SSL_kKRB5,0,0,0,0,SSL_MKEY_MASK,0}, /* VRS Kerberos5 */ | 107 | {0,SSL_TXT_kKRB5,0,SSL_kKRB5,0,0,0,0,SSL_MKEY_MASK,0}, /* VRS Kerberos5 */ |
| 107 | {0,SSL_TXT_kRSA,0,SSL_kRSA, 0,0,0,0,SSL_MKEY_MASK,0}, | 108 | {0,SSL_TXT_kRSA,0,SSL_kRSA, 0,0,0,0,SSL_MKEY_MASK,0}, |
| 108 | {0,SSL_TXT_kDHr,0,SSL_kDHr, 0,0,0,0,SSL_MKEY_MASK,0}, | 109 | {0,SSL_TXT_kDHr,0,SSL_kDHr, 0,0,0,0,SSL_MKEY_MASK,0}, |
| @@ -1005,10 +1006,10 @@ char *SSL_CIPHER_description(SSL_CIPHER *cipher, char *buf, int len) | |||
| 1005 | case SSL_AES: | 1006 | case SSL_AES: |
| 1006 | switch(cipher->strength_bits) | 1007 | switch(cipher->strength_bits) |
| 1007 | { | 1008 | { |
| 1008 | case 128: enc="AESdraft(128)"; break; | 1009 | case 128: enc="AES(128)"; break; |
| 1009 | case 192: enc="AESdraft(192)"; break; | 1010 | case 192: enc="AES(192)"; break; |
| 1010 | case 256: enc="AESdraft(256)"; break; | 1011 | case 256: enc="AES(256)"; break; |
| 1011 | default: enc="AESdraft(?""?""?)"; break; | 1012 | default: enc="AES(?""?""?)"; break; |
| 1012 | } | 1013 | } |
| 1013 | break; | 1014 | break; |
| 1014 | default: | 1015 | default: |
diff --git a/src/lib/libssl/src/ssl/ssl_lib.c b/src/lib/libssl/src/ssl/ssl_lib.c index e516382b6c..4a87a146e3 100644 --- a/src/lib/libssl/src/ssl/ssl_lib.c +++ b/src/lib/libssl/src/ssl/ssl_lib.c | |||
| @@ -116,11 +116,11 @@ | |||
| 116 | # include <assert.h> | 116 | # include <assert.h> |
| 117 | #endif | 117 | #endif |
| 118 | #include <stdio.h> | 118 | #include <stdio.h> |
| 119 | #include "ssl_locl.h" | ||
| 120 | #include "kssl_lcl.h" | ||
| 119 | #include <openssl/objects.h> | 121 | #include <openssl/objects.h> |
| 120 | #include <openssl/lhash.h> | 122 | #include <openssl/lhash.h> |
| 121 | #include <openssl/x509v3.h> | 123 | #include <openssl/x509v3.h> |
| 122 | #include "ssl_locl.h" | ||
| 123 | #include "kssl_lcl.h" | ||
| 124 | 124 | ||
| 125 | const char *SSL_version_str=OPENSSL_VERSION_TEXT; | 125 | const char *SSL_version_str=OPENSSL_VERSION_TEXT; |
| 126 | 126 | ||
diff --git a/src/lib/libssl/src/ssl/ssl_locl.h b/src/lib/libssl/src/ssl/ssl_locl.h index 6afb0f4cdf..4c77e27acc 100644 --- a/src/lib/libssl/src/ssl/ssl_locl.h +++ b/src/lib/libssl/src/ssl/ssl_locl.h | |||
| @@ -293,16 +293,17 @@ | |||
| 293 | #define SSL_NOT_EXP 0x00000001L | 293 | #define SSL_NOT_EXP 0x00000001L |
| 294 | #define SSL_EXPORT 0x00000002L | 294 | #define SSL_EXPORT 0x00000002L |
| 295 | 295 | ||
| 296 | #define SSL_STRONG_MASK 0x0000007cL | 296 | #define SSL_STRONG_MASK 0x000000fcL |
| 297 | #define SSL_EXP40 0x00000004L | 297 | #define SSL_STRONG_NONE 0x00000004L |
| 298 | #define SSL_EXP40 0x00000008L | ||
| 298 | #define SSL_MICRO (SSL_EXP40) | 299 | #define SSL_MICRO (SSL_EXP40) |
| 299 | #define SSL_EXP56 0x00000008L | 300 | #define SSL_EXP56 0x00000010L |
| 300 | #define SSL_MINI (SSL_EXP56) | 301 | #define SSL_MINI (SSL_EXP56) |
| 301 | #define SSL_LOW 0x00000010L | 302 | #define SSL_LOW 0x00000020L |
| 302 | #define SSL_MEDIUM 0x00000020L | 303 | #define SSL_MEDIUM 0x00000040L |
| 303 | #define SSL_HIGH 0x00000040L | 304 | #define SSL_HIGH 0x00000080L |
| 304 | 305 | ||
| 305 | /* we have used 0000007f - 25 bits left to go */ | 306 | /* we have used 000000ff - 24 bits left to go */ |
| 306 | 307 | ||
| 307 | /* | 308 | /* |
| 308 | * Macros to check the export status and cipher strength for export ciphers. | 309 | * Macros to check the export status and cipher strength for export ciphers. |
diff --git a/src/lib/libssl/src/ssl/ssl_rsa.c b/src/lib/libssl/src/ssl/ssl_rsa.c index 1cf8e20934..03828b6632 100644 --- a/src/lib/libssl/src/ssl/ssl_rsa.c +++ b/src/lib/libssl/src/ssl/ssl_rsa.c | |||
| @@ -57,12 +57,12 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/bio.h> | 61 | #include <openssl/bio.h> |
| 61 | #include <openssl/objects.h> | 62 | #include <openssl/objects.h> |
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include <openssl/x509.h> | 64 | #include <openssl/x509.h> |
| 64 | #include <openssl/pem.h> | 65 | #include <openssl/pem.h> |
| 65 | #include "ssl_locl.h" | ||
| 66 | 66 | ||
| 67 | static int ssl_set_cert(CERT *c, X509 *x509); | 67 | static int ssl_set_cert(CERT *c, X509 *x509); |
| 68 | static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey); | 68 | static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey); |
diff --git a/src/lib/libssl/src/ssl/t1_clnt.c b/src/lib/libssl/src/ssl/t1_clnt.c index 9745630a00..9ad518f9f4 100644 --- a/src/lib/libssl/src/ssl/t1_clnt.c +++ b/src/lib/libssl/src/ssl/t1_clnt.c | |||
| @@ -57,11 +57,11 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/buffer.h> | 61 | #include <openssl/buffer.h> |
| 61 | #include <openssl/rand.h> | 62 | #include <openssl/rand.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/evp.h> | 64 | #include <openssl/evp.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | static SSL_METHOD *tls1_get_client_method(int ver); | 66 | static SSL_METHOD *tls1_get_client_method(int ver); |
| 67 | static SSL_METHOD *tls1_get_client_method(int ver) | 67 | static SSL_METHOD *tls1_get_client_method(int ver) |
diff --git a/src/lib/libssl/src/ssl/t1_enc.c b/src/lib/libssl/src/ssl/t1_enc.c index b80525f3ba..5290bf6665 100644 --- a/src/lib/libssl/src/ssl/t1_enc.c +++ b/src/lib/libssl/src/ssl/t1_enc.c | |||
| @@ -110,10 +110,10 @@ | |||
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include "ssl_locl.h" | ||
| 113 | #include <openssl/comp.h> | 114 | #include <openssl/comp.h> |
| 114 | #include <openssl/evp.h> | 115 | #include <openssl/evp.h> |
| 115 | #include <openssl/hmac.h> | 116 | #include <openssl/hmac.h> |
| 116 | #include "ssl_locl.h" | ||
| 117 | #include <openssl/md5.h> | 117 | #include <openssl/md5.h> |
| 118 | 118 | ||
| 119 | static void tls1_P_hash(const EVP_MD *md, const unsigned char *sec, | 119 | static void tls1_P_hash(const EVP_MD *md, const unsigned char *sec, |
| @@ -483,14 +483,25 @@ printf("\nkey block\n"); | |||
| 483 | { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); } | 483 | { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); } |
| 484 | #endif | 484 | #endif |
| 485 | 485 | ||
| 486 | /* enable vulnerability countermeasure for CBC ciphers with | 486 | if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)) |
| 487 | * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt) */ | 487 | { |
| 488 | s->s3->need_empty_fragments = 1; | 488 | /* enable vulnerability countermeasure for CBC ciphers with |
| 489 | #ifndef NO_RC4 | 489 | * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt) |
| 490 | if ((s->session->cipher != NULL) && ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4)) | 490 | */ |
| 491 | s->s3->need_empty_fragments = 0; | 491 | s->s3->need_empty_fragments = 1; |
| 492 | |||
| 493 | if (s->session->cipher != NULL) | ||
| 494 | { | ||
| 495 | if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_eNULL) | ||
| 496 | s->s3->need_empty_fragments = 0; | ||
| 497 | |||
| 498 | #ifndef OPENSSL_NO_RC4 | ||
| 499 | if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4) | ||
| 500 | s->s3->need_empty_fragments = 0; | ||
| 492 | #endif | 501 | #endif |
| 493 | 502 | } | |
| 503 | } | ||
| 504 | |||
| 494 | return(1); | 505 | return(1); |
| 495 | err: | 506 | err: |
| 496 | SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,ERR_R_MALLOC_FAILURE); | 507 | SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,ERR_R_MALLOC_FAILURE); |
diff --git a/src/lib/libssl/src/ssl/t1_srvr.c b/src/lib/libssl/src/ssl/t1_srvr.c index 996b7ca8e2..6e765e587f 100644 --- a/src/lib/libssl/src/ssl/t1_srvr.c +++ b/src/lib/libssl/src/ssl/t1_srvr.c | |||
| @@ -57,12 +57,12 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/buffer.h> | 61 | #include <openssl/buffer.h> |
| 61 | #include <openssl/rand.h> | 62 | #include <openssl/rand.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/evp.h> | 64 | #include <openssl/evp.h> |
| 64 | #include <openssl/x509.h> | 65 | #include <openssl/x509.h> |
| 65 | #include "ssl_locl.h" | ||
| 66 | 66 | ||
| 67 | static SSL_METHOD *tls1_get_server_method(int ver); | 67 | static SSL_METHOD *tls1_get_server_method(int ver); |
| 68 | static SSL_METHOD *tls1_get_server_method(int ver) | 68 | static SSL_METHOD *tls1_get_server_method(int ver) |
diff --git a/src/lib/libssl/src/ssl/tls1.h b/src/lib/libssl/src/ssl/tls1.h index 88ec5fb527..38838ea9a5 100644 --- a/src/lib/libssl/src/ssl/tls1.h +++ b/src/lib/libssl/src/ssl/tls1.h | |||
| @@ -96,7 +96,7 @@ extern "C" { | |||
| 96 | #define TLS1_CK_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA 0x03000065 | 96 | #define TLS1_CK_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA 0x03000065 |
| 97 | #define TLS1_CK_DHE_DSS_WITH_RC4_128_SHA 0x03000066 | 97 | #define TLS1_CK_DHE_DSS_WITH_RC4_128_SHA 0x03000066 |
| 98 | 98 | ||
| 99 | /* AES ciphersuites from draft ietf-tls-ciphersuite-03.txt */ | 99 | /* AES ciphersuites from RFC3268 */ |
| 100 | 100 | ||
| 101 | #define TLS1_CK_RSA_WITH_AES_128_SHA 0x0300002F | 101 | #define TLS1_CK_RSA_WITH_AES_128_SHA 0x0300002F |
| 102 | #define TLS1_CK_DH_DSS_WITH_AES_128_SHA 0x03000030 | 102 | #define TLS1_CK_DH_DSS_WITH_AES_128_SHA 0x03000030 |
| @@ -126,20 +126,21 @@ extern "C" { | |||
| 126 | #define TLS1_TXT_RSA_EXPORT1024_WITH_RC4_56_SHA "EXP1024-RC4-SHA" | 126 | #define TLS1_TXT_RSA_EXPORT1024_WITH_RC4_56_SHA "EXP1024-RC4-SHA" |
| 127 | #define TLS1_TXT_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA "EXP1024-DHE-DSS-RC4-SHA" | 127 | #define TLS1_TXT_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA "EXP1024-DHE-DSS-RC4-SHA" |
| 128 | #define TLS1_TXT_DHE_DSS_WITH_RC4_128_SHA "DHE-DSS-RC4-SHA" | 128 | #define TLS1_TXT_DHE_DSS_WITH_RC4_128_SHA "DHE-DSS-RC4-SHA" |
| 129 | /* AES ciphersuites from draft-ietf-tls-ciphersuite-06.txt */ | 129 | |
| 130 | #define TLS1_TXT_RSA_WITH_AES_128_SHA "AESdraft128-SHA" | 130 | /* AES ciphersuites from RFC3268 */ |
| 131 | #define TLS1_TXT_DH_DSS_WITH_AES_128_SHA "DH-DSS-AESdraft128-SHA" | 131 | #define TLS1_TXT_RSA_WITH_AES_128_SHA "AES128-SHA" |
| 132 | #define TLS1_TXT_DH_RSA_WITH_AES_128_SHA "DH-RSA-AESdraft128-SHA" | 132 | #define TLS1_TXT_DH_DSS_WITH_AES_128_SHA "DH-DSS-AES128-SHA" |
| 133 | #define TLS1_TXT_DHE_DSS_WITH_AES_128_SHA "DHE-DSS-AESdraft128-SHA" | 133 | #define TLS1_TXT_DH_RSA_WITH_AES_128_SHA "DH-RSA-AES128-SHA" |
| 134 | #define TLS1_TXT_DHE_RSA_WITH_AES_128_SHA "DHE-RSA-AESdraft128-SHA" | 134 | #define TLS1_TXT_DHE_DSS_WITH_AES_128_SHA "DHE-DSS-AES128-SHA" |
| 135 | #define TLS1_TXT_ADH_WITH_AES_128_SHA "ADH-AESdraft128-SHA" | 135 | #define TLS1_TXT_DHE_RSA_WITH_AES_128_SHA "DHE-RSA-AES128-SHA" |
| 136 | 136 | #define TLS1_TXT_ADH_WITH_AES_128_SHA "ADH-AES128-SHA" | |
| 137 | #define TLS1_TXT_RSA_WITH_AES_256_SHA "AESdraft256-SHA" | 137 | |
| 138 | #define TLS1_TXT_DH_DSS_WITH_AES_256_SHA "DH-DSS-AESdraft256-SHA" | 138 | #define TLS1_TXT_RSA_WITH_AES_256_SHA "AES256-SHA" |
| 139 | #define TLS1_TXT_DH_RSA_WITH_AES_256_SHA "DH-RSA-AESdraft256-SHA" | 139 | #define TLS1_TXT_DH_DSS_WITH_AES_256_SHA "DH-DSS-AES256-SHA" |
| 140 | #define TLS1_TXT_DHE_DSS_WITH_AES_256_SHA "DHE-DSS-AESdraft256-SHA" | 140 | #define TLS1_TXT_DH_RSA_WITH_AES_256_SHA "DH-RSA-AES256-SHA" |
| 141 | #define TLS1_TXT_DHE_RSA_WITH_AES_256_SHA "DHE-RSA-AESdraft256-SHA" | 141 | #define TLS1_TXT_DHE_DSS_WITH_AES_256_SHA "DHE-DSS-AES256-SHA" |
| 142 | #define TLS1_TXT_ADH_WITH_AES_256_SHA "ADH-AESdraft256-SHA" | 142 | #define TLS1_TXT_DHE_RSA_WITH_AES_256_SHA "DHE-RSA-AES256-SHA" |
| 143 | #define TLS1_TXT_ADH_WITH_AES_256_SHA "ADH-AES256-SHA" | ||
| 143 | 144 | ||
| 144 | 145 | ||
| 145 | #define TLS_CT_RSA_SIGN 1 | 146 | #define TLS_CT_RSA_SIGN 1 |
diff --git a/src/lib/libssl/src/test/Makefile.ssl b/src/lib/libssl/src/test/Makefile.ssl index 49f2cc9a23..c1408021ba 100644 --- a/src/lib/libssl/src/test/Makefile.ssl +++ b/src/lib/libssl/src/test/Makefile.ssl | |||
| @@ -94,7 +94,7 @@ top: | |||
| 94 | 94 | ||
| 95 | all: exe | 95 | all: exe |
| 96 | 96 | ||
| 97 | exe: $(EXE) | 97 | exe: $(EXE) dummytest |
| 98 | 98 | ||
| 99 | files: | 99 | files: |
| 100 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 100 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| @@ -102,6 +102,10 @@ files: | |||
| 102 | links: | 102 | links: |
| 103 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | 103 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile |
| 104 | 104 | ||
| 105 | generate: $(SRC) | ||
| 106 | $(SRC): | ||
| 107 | @sh $(TOP)/util/point.sh dummytest.c $@ | ||
| 108 | |||
| 105 | errors: | 109 | errors: |
| 106 | 110 | ||
| 107 | install: | 111 | install: |
| @@ -112,11 +116,11 @@ tags: | |||
| 112 | tests: exe apps $(TESTS) | 116 | tests: exe apps $(TESTS) |
| 113 | 117 | ||
| 114 | apps: | 118 | apps: |
| 115 | @(cd ../apps; $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' all) | 119 | @(cd ../apps; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}' all) |
| 116 | 120 | ||
| 117 | alltests: | 121 | alltests: |
| 118 | (LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH=$$LIBPATH; SHLIB_PATH=$$LIBPATH; \ | 122 | (LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH=$$LIBPATH; DYLD_LIBRARY_PATH=$$LIBPATH; SHLIB_PATH=$$LIBPATH; \ |
| 119 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | 123 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ |
| 120 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' alltests.chooser) | 124 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' alltests.chooser) |
| 121 | alltests.chooser: \ | 125 | alltests.chooser: \ |
| 122 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | 126 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ |
| @@ -263,7 +267,7 @@ lint: | |||
| 263 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 267 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 264 | 268 | ||
| 265 | depend: | 269 | depend: |
| 266 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) | 270 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) |
| 267 | 271 | ||
| 268 | dclean: | 272 | dclean: |
| 269 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 273 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -273,10 +277,10 @@ clean: | |||
| 273 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log | 277 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log |
| 274 | 278 | ||
| 275 | $(DLIBSSL): | 279 | $(DLIBSSL): |
| 276 | (cd ../ssl; $(MAKE)) | 280 | (cd ../ssl; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}') |
| 277 | 281 | ||
| 278 | $(DLIBCRYPTO): | 282 | $(DLIBCRYPTO): |
| 279 | (cd ../crypto; $(MAKE)) | 283 | (cd ../crypto; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}') |
| 280 | 284 | ||
| 281 | $(RSATEST): $(RSATEST).o $(DLIBCRYPTO) | 285 | $(RSATEST): $(RSATEST).o $(DLIBCRYPTO) |
| 282 | $(CC) -o $(RSATEST) $(CFLAGS) $(RSATEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 286 | $(CC) -o $(RSATEST) $(CFLAGS) $(RSATEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| @@ -362,22 +366,33 @@ $(EVPTEST): $(EVPTEST).o $(DLIBCRYPTO) | |||
| 362 | #$(RDTEST): $(RDTEST).o $(DLIBCRYPTO) | 366 | #$(RDTEST): $(RDTEST).o $(DLIBCRYPTO) |
| 363 | # $(CC) -o $(RDTEST) $(CFLAGS) $(RDTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 367 | # $(CC) -o $(RDTEST) $(CFLAGS) $(RDTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 364 | 368 | ||
| 369 | dummytest: dummytest.o $(DLIBCRYPTO) | ||
| 370 | $(CC) -o dummytest $(CFLAGS) dummytest.o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 371 | |||
| 365 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 372 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 366 | 373 | ||
| 367 | bftest.o: ../include/openssl/blowfish.h ../include/openssl/e_os2.h | 374 | bftest.o: ../include/openssl/blowfish.h ../include/openssl/e_os2.h |
| 368 | bftest.o: ../include/openssl/opensslconf.h bftest.c | 375 | bftest.o: ../include/openssl/opensslconf.h bftest.c |
| 369 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 376 | bntest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 377 | bntest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 370 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 378 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 371 | bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 379 | bntest.o: ../include/openssl/cast.h ../include/openssl/crypto.h |
| 372 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 380 | bntest.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| 373 | bntest.o: ../include/openssl/err.h ../include/openssl/evp.h | 381 | bntest.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 374 | bntest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 382 | bntest.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 383 | bntest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 384 | bntest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 385 | bntest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 386 | bntest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 375 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 387 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 376 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 388 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 377 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 389 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 390 | bntest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 391 | bntest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 378 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 392 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 379 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 393 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h |
| 380 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | 394 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h |
| 395 | bntest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 381 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | 396 | bntest.o: ../include/openssl/x509_vfy.h bntest.c |
| 382 | casttest.o: ../include/openssl/cast.h casttest.c | 397 | casttest.o: ../include/openssl/cast.h casttest.c |
| 383 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 398 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| @@ -424,18 +439,26 @@ enginetest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | |||
| 424 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 439 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 425 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 440 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h |
| 426 | enginetest.o: enginetest.c | 441 | enginetest.o: enginetest.c |
| 427 | evp_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 442 | evp_test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 428 | evp_test.o: ../include/openssl/bn.h ../include/openssl/conf.h | 443 | evp_test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 429 | evp_test.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 444 | evp_test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 430 | evp_test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 445 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
| 431 | evp_test.o: ../include/openssl/engine.h ../include/openssl/err.h | 446 | evp_test.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| 432 | evp_test.o: ../include/openssl/evp.h ../include/openssl/lhash.h | 447 | evp_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 448 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 449 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 450 | evp_test.o: ../include/openssl/idea.h ../include/openssl/lhash.h | ||
| 451 | evp_test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 452 | evp_test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 433 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 453 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 434 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 454 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 435 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 455 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
| 456 | evp_test.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 457 | evp_test.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 436 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 458 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 437 | evp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 459 | evp_test.o: ../include/openssl/sha.h ../include/openssl/stack.h |
| 438 | evp_test.o: ../include/openssl/ui.h evp_test.c | 460 | evp_test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h |
| 461 | evp_test.o: ../include/openssl/ui_compat.h evp_test.c | ||
| 439 | exptest.o: ../include/openssl/bio.h ../include/openssl/bn.h | 462 | exptest.o: ../include/openssl/bio.h ../include/openssl/bn.h |
| 440 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 463 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 441 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | 464 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h |
| @@ -443,62 +466,116 @@ exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
| 443 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 466 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
| 444 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 467 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 445 | exptest.o: ../include/openssl/symhacks.h exptest.c | 468 | exptest.o: ../include/openssl/symhacks.h exptest.c |
| 446 | hmactest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 469 | hmactest.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 447 | hmactest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 470 | hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 448 | hmactest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 471 | hmactest.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 449 | hmactest.o: ../include/openssl/hmac.h ../include/openssl/md5.h | 472 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 450 | hmactest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 473 | hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 451 | hmactest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 474 | hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 452 | hmactest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 475 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
| 453 | hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h hmactest.c | 476 | hmactest.o: ../include/openssl/idea.h ../include/openssl/md2.h |
| 477 | hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 478 | hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 479 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 480 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 481 | hmactest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 482 | hmactest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 483 | hmactest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 484 | hmactest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 485 | hmactest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 486 | hmactest.o: ../include/openssl/ui_compat.h hmactest.c | ||
| 454 | ideatest.o: ../include/openssl/idea.h ../include/openssl/opensslconf.h | 487 | ideatest.o: ../include/openssl/idea.h ../include/openssl/opensslconf.h |
| 455 | ideatest.o: ideatest.c | 488 | ideatest.o: ideatest.c |
| 456 | md2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 489 | md2test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 457 | md2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 490 | md2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 458 | md2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 491 | md2test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 459 | md2test.o: ../include/openssl/md2.h ../include/openssl/obj_mac.h | 492 | md2test.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 460 | md2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 493 | md2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 461 | md2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 494 | md2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 462 | md2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 495 | md2test.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 463 | md2test.o: ../include/openssl/symhacks.h md2test.c | 496 | md2test.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 464 | md4test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 497 | md2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 465 | md4test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 498 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 466 | md4test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 499 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 467 | md4test.o: ../include/openssl/md4.h ../include/openssl/obj_mac.h | 500 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 468 | md4test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 501 | md2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 469 | md4test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 502 | md2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 470 | md4test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 503 | md2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 471 | md4test.o: ../include/openssl/symhacks.h md4test.c | 504 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 472 | md5test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 505 | md2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md2test.c |
| 473 | md5test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 506 | md4test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 474 | md5test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 507 | md4test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 475 | md5test.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | 508 | md4test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 476 | md5test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 509 | md4test.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 477 | md5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 510 | md4test.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 478 | md5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 511 | md4test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 479 | md5test.o: ../include/openssl/symhacks.h md5test.c | 512 | md4test.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 480 | mdc2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 513 | md4test.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 481 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 514 | md4test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 482 | mdc2test.o: ../include/openssl/des.h ../include/openssl/des_old.h | 515 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 483 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 516 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 484 | mdc2test.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 517 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 485 | mdc2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 518 | md4test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 486 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 519 | md4test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 487 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 520 | md4test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 488 | mdc2test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 521 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 489 | mdc2test.o: ../include/openssl/ui_compat.h mdc2test.c | 522 | md4test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md4test.c |
| 523 | md5test.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 524 | md5test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 525 | md5test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 526 | md5test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 527 | md5test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 528 | md5test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 529 | md5test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 530 | md5test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 531 | md5test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 532 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 533 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 534 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 535 | md5test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 536 | md5test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 537 | md5test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 538 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 539 | md5test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md5test.c | ||
| 540 | mdc2test.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 541 | mdc2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 542 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 543 | mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 544 | mdc2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 545 | mdc2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 546 | mdc2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 547 | mdc2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 548 | mdc2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 549 | mdc2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 550 | mdc2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 551 | mdc2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 552 | mdc2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 553 | mdc2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 554 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 555 | mdc2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 556 | mdc2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h mdc2test.c | ||
| 557 | randtest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | ||
| 490 | randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h randtest.c | 558 | randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h randtest.c |
| 491 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c | 559 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c |
| 492 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c | 560 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c |
| 493 | rc5test.o: ../include/openssl/rc5.h rc5test.c | 561 | rc5test.o: ../include/openssl/rc5.h rc5test.c |
| 494 | rmdtest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 562 | rmdtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 495 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 563 | rmdtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 496 | rmdtest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 564 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 565 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 566 | rmdtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 567 | rmdtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 568 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 569 | rmdtest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 570 | rmdtest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 497 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 571 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 498 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 572 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 499 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/ripemd.h | 573 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 500 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 574 | rmdtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 501 | rmdtest.o: ../include/openssl/symhacks.h rmdtest.c | 575 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 576 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 577 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 578 | rmdtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h rmdtest.c | ||
| 502 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 579 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 503 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 580 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
| 504 | rsa_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 581 | rsa_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| @@ -509,37 +586,63 @@ rsa_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | |||
| 509 | rsa_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 586 | rsa_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 510 | rsa_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 587 | rsa_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 511 | rsa_test.o: ../include/openssl/ui.h rsa_test.c | 588 | rsa_test.o: ../include/openssl/ui.h rsa_test.c |
| 512 | sha1test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 589 | sha1test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 513 | sha1test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 590 | sha1test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 514 | sha1test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 591 | sha1test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 592 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 593 | sha1test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 594 | sha1test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 595 | sha1test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 596 | sha1test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 597 | sha1test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 515 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 598 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 516 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 599 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 517 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 600 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 518 | sha1test.o: ../include/openssl/sha.h ../include/openssl/stack.h | 601 | sha1test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 519 | sha1test.o: ../include/openssl/symhacks.h sha1test.c | 602 | sha1test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 520 | shatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 603 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 521 | shatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 604 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 522 | shatest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 605 | sha1test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h sha1test.c |
| 606 | shatest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 607 | shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 608 | shatest.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 609 | shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 610 | shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 611 | shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 612 | shatest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 613 | shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 614 | shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 523 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 615 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 524 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 616 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 525 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 617 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 526 | shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 618 | shatest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 527 | shatest.o: ../include/openssl/symhacks.h shatest.c | 619 | shatest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 528 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 620 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 621 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 622 | shatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h shatest.c | ||
| 623 | ssltest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 624 | ssltest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 529 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 625 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 530 | ssltest.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 626 | ssltest.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 531 | ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 627 | ssltest.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 532 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 628 | ssltest.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 533 | ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h | 629 | ssltest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 630 | ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 631 | ssltest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 534 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 632 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 633 | ssltest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 634 | ssltest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 535 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 635 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 536 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 636 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 537 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 637 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 538 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 638 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 539 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 639 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rc2.h |
| 640 | ssltest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 641 | ssltest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 540 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 642 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 541 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 643 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 542 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 644 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 543 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 645 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 544 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 646 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 545 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssltest.c | 647 | ssltest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h |
| 648 | ssltest.o: ../include/openssl/x509_vfy.h ssltest.c | ||
diff --git a/src/lib/libssl/src/test/maketests.com b/src/lib/libssl/src/test/maketests.com index f7ff8fe407..b3bf8bb837 100644 --- a/src/lib/libssl/src/test/maketests.com +++ b/src/lib/libssl/src/test/maketests.com | |||
| @@ -910,7 +910,8 @@ $ ENDIF | |||
| 910 | $! | 910 | $! |
| 911 | $! Time to check the contents, and to make sure we get the correct library. | 911 | $! Time to check the contents, and to make sure we get the correct library. |
| 912 | $! | 912 | $! |
| 913 | $ IF P4.EQS."SOCKETSHR" .OR. P4.EQS."MULTINET" .OR. P4.EQS."UCX" | 913 | $ IF P4.EQS."SOCKETSHR" .OR. P4.EQS."MULTINET" .OR. P4.EQS."UCX" - |
| 914 | .OR. P4.EQS."TCPIP" .OR. P4.EQS."NONE" | ||
| 914 | $ THEN | 915 | $ THEN |
| 915 | $! | 916 | $! |
| 916 | $! Check to see if SOCKETSHR was chosen | 917 | $! Check to see if SOCKETSHR was chosen |
| @@ -959,6 +960,32 @@ $! Done with UCX | |||
| 959 | $! | 960 | $! |
| 960 | $ ENDIF | 961 | $ ENDIF |
| 961 | $! | 962 | $! |
| 963 | $! Check to see if TCPIP was chosen | ||
| 964 | $! | ||
| 965 | $ IF P4.EQS."TCPIP" | ||
| 966 | $ THEN | ||
| 967 | $! | ||
| 968 | $! Set the library to use TCPIP (post UCX). | ||
| 969 | $! | ||
| 970 | $ TCPIP_LIB = "SYS$DISK:[-.VMS]TCPIP_SHR_DECC.OPT/OPT" | ||
| 971 | $! | ||
| 972 | $! Done with TCPIP | ||
| 973 | $! | ||
| 974 | $ ENDIF | ||
| 975 | $! | ||
| 976 | $! Check to see if NONE was chosen | ||
| 977 | $! | ||
| 978 | $ IF P4.EQS."NONE" | ||
| 979 | $ THEN | ||
| 980 | $! | ||
| 981 | $! Do not use a TCPIP library. | ||
| 982 | $! | ||
| 983 | $ TCPIP_LIB = "" | ||
| 984 | $! | ||
| 985 | $! Done with NONE | ||
| 986 | $! | ||
| 987 | $ ENDIF | ||
| 988 | $! | ||
| 962 | $! Print info | 989 | $! Print info |
| 963 | $! | 990 | $! |
| 964 | $ WRITE SYS$OUTPUT "TCP/IP library spec: ", TCPIP_LIB | 991 | $ WRITE SYS$OUTPUT "TCP/IP library spec: ", TCPIP_LIB |
| @@ -974,6 +1001,7 @@ $ WRITE SYS$OUTPUT "The Option ",P4," Is Invalid. The Valid Options Are:" | |||
| 974 | $ WRITE SYS$OUTPUT "" | 1001 | $ WRITE SYS$OUTPUT "" |
| 975 | $ WRITE SYS$OUTPUT " SOCKETSHR : To link with SOCKETSHR TCP/IP library." | 1002 | $ WRITE SYS$OUTPUT " SOCKETSHR : To link with SOCKETSHR TCP/IP library." |
| 976 | $ WRITE SYS$OUTPUT " UCX : To link with UCX TCP/IP library." | 1003 | $ WRITE SYS$OUTPUT " UCX : To link with UCX TCP/IP library." |
| 1004 | $ WRITE SYS$OUTPUT " TCPIP : To link with TCPIP (post UCX) TCP/IP library." | ||
| 977 | $ WRITE SYS$OUTPUT "" | 1005 | $ WRITE SYS$OUTPUT "" |
| 978 | $! | 1006 | $! |
| 979 | $! Time To EXIT. | 1007 | $! Time To EXIT. |
diff --git a/src/lib/libssl/src/test/tcrl b/src/lib/libssl/src/test/tcrl index acaf8f3c47..f71ef7a863 100644 --- a/src/lib/libssl/src/test/tcrl +++ b/src/lib/libssl/src/test/tcrl | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl crl' | 10 | cmd='../apps/openssl crl' |
diff --git a/src/lib/libssl/src/test/testca b/src/lib/libssl/src/test/testca index 88c186b6ab..8215ebb5d1 100644 --- a/src/lib/libssl/src/test/testca +++ b/src/lib/libssl/src/test/testca | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | SH="/bin/sh" | 3 | SH="/bin/sh" |
| 4 | PATH=../apps:$PATH | 4 | if test "$OSTYPE" = msdosdjgpp; then |
| 5 | PATH=./apps\;../apps\;$PATH | ||
| 6 | else | ||
| 7 | PATH=../apps:$PATH | ||
| 8 | fi | ||
| 5 | export SH PATH | 9 | export SH PATH |
| 6 | 10 | ||
| 7 | SSLEAY_CONFIG="-config CAss.cnf" | 11 | SSLEAY_CONFIG="-config CAss.cnf" |
diff --git a/src/lib/libssl/src/test/testgen b/src/lib/libssl/src/test/testgen index 6a4b6b9221..55c496f4bc 100644 --- a/src/lib/libssl/src/test/testgen +++ b/src/lib/libssl/src/test/testgen | |||
| @@ -6,7 +6,11 @@ CA=../certs/testca.pem | |||
| 6 | 6 | ||
| 7 | /bin/rm -f $T.1 $T.2 $T.key | 7 | /bin/rm -f $T.1 $T.2 $T.key |
| 8 | 8 | ||
| 9 | PATH=../apps:$PATH; | 9 | if test "$OSTYPE" = msdosdjgpp; then |
| 10 | PATH=../apps\;$PATH; | ||
| 11 | else | ||
| 12 | PATH=../apps:$PATH; | ||
| 13 | fi | ||
| 10 | export PATH | 14 | export PATH |
| 11 | 15 | ||
| 12 | echo "generating certificate request" | 16 | echo "generating certificate request" |
diff --git a/src/lib/libssl/src/test/tpkcs7 b/src/lib/libssl/src/test/tpkcs7 index 15bbba42c0..cf3bd9fadb 100644 --- a/src/lib/libssl/src/test/tpkcs7 +++ b/src/lib/libssl/src/test/tpkcs7 | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl pkcs7' | 10 | cmd='../apps/openssl pkcs7' |
diff --git a/src/lib/libssl/src/test/tpkcs7d b/src/lib/libssl/src/test/tpkcs7d index 46e5aa2bd6..18f9311b06 100644 --- a/src/lib/libssl/src/test/tpkcs7d +++ b/src/lib/libssl/src/test/tpkcs7d | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl pkcs7' | 10 | cmd='../apps/openssl pkcs7' |
diff --git a/src/lib/libssl/src/test/treq b/src/lib/libssl/src/test/treq index 9f5eb7eea5..47a8273cde 100644 --- a/src/lib/libssl/src/test/treq +++ b/src/lib/libssl/src/test/treq | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl req -config ../apps/openssl.cnf' | 10 | cmd='../apps/openssl req -config ../apps/openssl.cnf' |
diff --git a/src/lib/libssl/src/test/trsa b/src/lib/libssl/src/test/trsa index bd6c07650a..413e2ec0a0 100644 --- a/src/lib/libssl/src/test/trsa +++ b/src/lib/libssl/src/test/trsa | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | if ../apps/openssl no-rsa; then | 10 | if ../apps/openssl no-rsa; then |
diff --git a/src/lib/libssl/src/test/tsid b/src/lib/libssl/src/test/tsid index 9e0854516c..40a1dfa97c 100644 --- a/src/lib/libssl/src/test/tsid +++ b/src/lib/libssl/src/test/tsid | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl sess_id' | 10 | cmd='../apps/openssl sess_id' |
diff --git a/src/lib/libssl/src/test/tx509 b/src/lib/libssl/src/test/tx509 index 35169f3a43..d380963abc 100644 --- a/src/lib/libssl/src/test/tx509 +++ b/src/lib/libssl/src/test/tx509 | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl x509' | 10 | cmd='../apps/openssl x509' |
diff --git a/src/lib/libssl/src/tools/c_rehash.in b/src/lib/libssl/src/tools/c_rehash.in index 69da98ff2c..5b053406c2 100644 --- a/src/lib/libssl/src/tools/c_rehash.in +++ b/src/lib/libssl/src/tools/c_rehash.in | |||
| @@ -17,10 +17,10 @@ if(defined $ENV{OPENSSL}) { | |||
| 17 | 17 | ||
| 18 | $ENV{PATH} .= ":$dir/bin"; | 18 | $ENV{PATH} .= ":$dir/bin"; |
| 19 | 19 | ||
| 20 | if(! -f $openssl) { | 20 | if(! -x $openssl) { |
| 21 | my $found = 0; | 21 | my $found = 0; |
| 22 | foreach (split /:/, $ENV{PATH}) { | 22 | foreach (split /:/, $ENV{PATH}) { |
| 23 | if(-f "$_/$openssl") { | 23 | if(-x "$_/$openssl") { |
| 24 | $found = 1; | 24 | $found = 1; |
| 25 | last; | 25 | last; |
| 26 | } | 26 | } |
diff --git a/src/lib/libssl/src/util/domd b/src/lib/libssl/src/util/domd index aa99cb0523..8cbe383c16 100644 --- a/src/lib/libssl/src/util/domd +++ b/src/lib/libssl/src/util/domd | |||
| @@ -18,11 +18,11 @@ if [ "$MAKEDEPEND" = "gcc" ]; then | |||
| 18 | sed -e '/^# DO NOT DELETE.*/,$d' < Makefile.ssl > Makefile.tmp | 18 | sed -e '/^# DO NOT DELETE.*/,$d' < Makefile.ssl > Makefile.tmp |
| 19 | echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp | 19 | echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp |
| 20 | gcc -D OPENSSL_DOING_MAKEDEPEND -M $@ >> Makefile.tmp | 20 | gcc -D OPENSSL_DOING_MAKEDEPEND -M $@ >> Makefile.tmp |
| 21 | perl $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new | 21 | ${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new |
| 22 | rm -f Makefile.tmp | 22 | rm -f Makefile.tmp |
| 23 | else | 23 | else |
| 24 | ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -f Makefile.ssl $@ | 24 | ${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND -f Makefile.ssl $@ |
| 25 | perl $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new | 25 | ${PERL} $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new |
| 26 | fi | 26 | fi |
| 27 | mv Makefile.new Makefile.ssl | 27 | mv Makefile.new Makefile.ssl |
| 28 | # unfake the presence of Kerberos | 28 | # unfake the presence of Kerberos |
diff --git a/src/lib/libssl/src/util/libeay.num b/src/lib/libssl/src/util/libeay.num index 4845158158..512185e257 100644 --- a/src/lib/libssl/src/util/libeay.num +++ b/src/lib/libssl/src/util/libeay.num | |||
| @@ -701,7 +701,7 @@ bn_mul_words 707 EXIST::FUNCTION: | |||
| 701 | BN_uadd 708 EXIST::FUNCTION: | 701 | BN_uadd 708 EXIST::FUNCTION: |
| 702 | BN_usub 709 EXIST::FUNCTION: | 702 | BN_usub 709 EXIST::FUNCTION: |
| 703 | bn_sqr_words 710 EXIST::FUNCTION: | 703 | bn_sqr_words 710 EXIST::FUNCTION: |
| 704 | _ossl_old_crypt 711 EXIST:!NeXT,!PERL5,!__FreeBSD__:FUNCTION:DES | 704 | _ossl_old_crypt 711 EXIST:!NeXT,!PERL5:FUNCTION:DES |
| 705 | d2i_ASN1_BIT_STRING 712 EXIST::FUNCTION: | 705 | d2i_ASN1_BIT_STRING 712 EXIST::FUNCTION: |
| 706 | d2i_ASN1_BOOLEAN 713 EXIST::FUNCTION: | 706 | d2i_ASN1_BOOLEAN 713 EXIST::FUNCTION: |
| 707 | d2i_ASN1_HEADER 714 EXIST::FUNCTION: | 707 | d2i_ASN1_HEADER 714 EXIST::FUNCTION: |
| @@ -984,8 +984,8 @@ BIO_ghbn_ctrl 1003 EXIST::FUNCTION: | |||
| 984 | CRYPTO_free_ex_data 1004 EXIST::FUNCTION: | 984 | CRYPTO_free_ex_data 1004 EXIST::FUNCTION: |
| 985 | CRYPTO_get_ex_data 1005 EXIST::FUNCTION: | 985 | CRYPTO_get_ex_data 1005 EXIST::FUNCTION: |
| 986 | CRYPTO_set_ex_data 1007 EXIST::FUNCTION: | 986 | CRYPTO_set_ex_data 1007 EXIST::FUNCTION: |
| 987 | ERR_load_CRYPTO_strings 1009 EXIST:!VMS,!WIN16:FUNCTION: | 987 | ERR_load_CRYPTO_strings 1009 EXIST:!OS2,!VMS,!WIN16:FUNCTION: |
| 988 | ERR_load_CRYPTOlib_strings 1009 EXIST:VMS,WIN16:FUNCTION: | 988 | ERR_load_CRYPTOlib_strings 1009 EXIST:OS2,VMS,WIN16:FUNCTION: |
| 989 | EVP_PKEY_bits 1010 EXIST::FUNCTION: | 989 | EVP_PKEY_bits 1010 EXIST::FUNCTION: |
| 990 | MD5_Transform 1011 EXIST::FUNCTION:MD5 | 990 | MD5_Transform 1011 EXIST::FUNCTION:MD5 |
| 991 | SHA1_Transform 1012 EXIST::FUNCTION:SHA,SHA1 | 991 | SHA1_Transform 1012 EXIST::FUNCTION:SHA,SHA1 |
| @@ -1216,7 +1216,7 @@ name_cmp 1239 EXIST::FUNCTION: | |||
| 1216 | str_dup 1240 NOEXIST::FUNCTION: | 1216 | str_dup 1240 NOEXIST::FUNCTION: |
| 1217 | i2s_ASN1_ENUMERATED 1241 EXIST::FUNCTION: | 1217 | i2s_ASN1_ENUMERATED 1241 EXIST::FUNCTION: |
| 1218 | i2s_ASN1_ENUMERATED_TABLE 1242 EXIST::FUNCTION: | 1218 | i2s_ASN1_ENUMERATED_TABLE 1242 EXIST::FUNCTION: |
| 1219 | BIO_s_log 1243 EXIST:!WIN16,!WIN32,!macintosh:FUNCTION: | 1219 | BIO_s_log 1243 EXIST:!OS2,!WIN16,!WIN32,!macintosh:FUNCTION: |
| 1220 | BIO_f_reliable 1244 EXIST::FUNCTION:BIO | 1220 | BIO_f_reliable 1244 EXIST::FUNCTION:BIO |
| 1221 | PKCS7_dataFinal 1245 EXIST::FUNCTION: | 1221 | PKCS7_dataFinal 1245 EXIST::FUNCTION: |
| 1222 | PKCS7_dataDecode 1246 EXIST::FUNCTION: | 1222 | PKCS7_dataDecode 1246 EXIST::FUNCTION: |
| @@ -2732,8 +2732,8 @@ EC_POINT_point2oct 3178 EXIST::FUNCTION:EC | |||
| 2732 | KRB5_APREQ_free 3179 EXIST::FUNCTION: | 2732 | KRB5_APREQ_free 3179 EXIST::FUNCTION: |
| 2733 | ASN1_OBJECT_it 3180 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: | 2733 | ASN1_OBJECT_it 3180 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: |
| 2734 | ASN1_OBJECT_it 3180 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: | 2734 | ASN1_OBJECT_it 3180 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: |
| 2735 | OCSP_crlID_new 3181 EXIST:!VMS,!WIN16:FUNCTION: | 2735 | OCSP_crlID_new 3181 EXIST:!OS2,!VMS,!WIN16:FUNCTION: |
| 2736 | OCSP_crlID2_new 3181 EXIST:VMS,WIN16:FUNCTION: | 2736 | OCSP_crlID2_new 3181 EXIST:OS2,VMS,WIN16:FUNCTION: |
| 2737 | CONF_modules_load_file 3182 EXIST::FUNCTION: | 2737 | CONF_modules_load_file 3182 EXIST::FUNCTION: |
| 2738 | CONF_imodule_set_usr_data 3183 EXIST::FUNCTION: | 2738 | CONF_imodule_set_usr_data 3183 EXIST::FUNCTION: |
| 2739 | ENGINE_set_default_string 3184 EXIST::FUNCTION: | 2739 | ENGINE_set_default_string 3184 EXIST::FUNCTION: |
| @@ -2780,3 +2780,15 @@ EVP_aes_128_cfb 3222 EXIST::FUNCTION:AES | |||
| 2780 | EVP_aes_256_cfb 3223 EXIST::FUNCTION:AES | 2780 | EVP_aes_256_cfb 3223 EXIST::FUNCTION:AES |
| 2781 | EVP_aes_128_ofb 3224 EXIST::FUNCTION:AES | 2781 | EVP_aes_128_ofb 3224 EXIST::FUNCTION:AES |
| 2782 | EVP_aes_192_cfb 3225 EXIST::FUNCTION:AES | 2782 | EVP_aes_192_cfb 3225 EXIST::FUNCTION:AES |
| 2783 | CONF_modules_free 3226 EXIST::FUNCTION: | ||
| 2784 | NCONF_default 3227 EXIST::FUNCTION: | ||
| 2785 | OPENSSL_no_config 3228 EXIST::FUNCTION: | ||
| 2786 | NCONF_WIN32 3229 EXIST::FUNCTION: | ||
| 2787 | ASN1_UNIVERSALSTRING_new 3230 EXIST::FUNCTION: | ||
| 2788 | EVP_des_ede_ecb 3231 EXIST::FUNCTION:DES | ||
| 2789 | i2d_ASN1_UNIVERSALSTRING 3232 EXIST::FUNCTION: | ||
| 2790 | ASN1_UNIVERSALSTRING_free 3233 EXIST::FUNCTION: | ||
| 2791 | ASN1_UNIVERSALSTRING_it 3234 EXIST:!EXPORT_VAR_AS_FUNCTION:VARIABLE: | ||
| 2792 | ASN1_UNIVERSALSTRING_it 3234 EXIST:EXPORT_VAR_AS_FUNCTION:FUNCTION: | ||
| 2793 | d2i_ASN1_UNIVERSALSTRING 3235 EXIST::FUNCTION: | ||
| 2794 | EVP_des_ede3_ecb 3236 EXIST::FUNCTION:DES | ||
diff --git a/src/lib/libssl/src/util/mk1mf.pl b/src/lib/libssl/src/util/mk1mf.pl index 8b6b2e668a..c9271bbffe 100644 --- a/src/lib/libssl/src/util/mk1mf.pl +++ b/src/lib/libssl/src/util/mk1mf.pl | |||
| @@ -100,7 +100,7 @@ $out_def="out"; | |||
| 100 | $inc_def="outinc"; | 100 | $inc_def="outinc"; |
| 101 | $tmp_def="tmp"; | 101 | $tmp_def="tmp"; |
| 102 | 102 | ||
| 103 | $mkdir="mkdir"; | 103 | $mkdir="-mkdir"; |
| 104 | 104 | ||
| 105 | ($ssl,$crypto)=("ssl","crypto"); | 105 | ($ssl,$crypto)=("ssl","crypto"); |
| 106 | $ranlib="echo ranlib"; | 106 | $ranlib="echo ranlib"; |
diff --git a/src/lib/libssl/src/util/mkdef.pl b/src/lib/libssl/src/util/mkdef.pl index ecba93cd94..adfd447dd3 100644 --- a/src/lib/libssl/src/util/mkdef.pl +++ b/src/lib/libssl/src/util/mkdef.pl | |||
| @@ -58,6 +58,7 @@ my $debug=0; | |||
| 58 | 58 | ||
| 59 | my $crypto_num= "util/libeay.num"; | 59 | my $crypto_num= "util/libeay.num"; |
| 60 | my $ssl_num= "util/ssleay.num"; | 60 | my $ssl_num= "util/ssleay.num"; |
| 61 | my $libname; | ||
| 61 | 62 | ||
| 62 | my $do_update = 0; | 63 | my $do_update = 0; |
| 63 | my $do_rewrite = 1; | 64 | my $do_rewrite = 1; |
| @@ -73,12 +74,13 @@ my $VMS=0; | |||
| 73 | my $W32=0; | 74 | my $W32=0; |
| 74 | my $W16=0; | 75 | my $W16=0; |
| 75 | my $NT=0; | 76 | my $NT=0; |
| 77 | my $OS2=0; | ||
| 76 | # Set this to make typesafe STACK definitions appear in DEF | 78 | # Set this to make typesafe STACK definitions appear in DEF |
| 77 | my $safe_stack_def = 0; | 79 | my $safe_stack_def = 0; |
| 78 | 80 | ||
| 79 | my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT", | 81 | my @known_platforms = ( "__FreeBSD__", "PERL5", "NeXT", |
| 80 | "EXPORT_VAR_AS_FUNCTION" ); | 82 | "EXPORT_VAR_AS_FUNCTION" ); |
| 81 | my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT" ); | 83 | my @known_ossl_platforms = ( "VMS", "WIN16", "WIN32", "WINNT", "OS2" ); |
| 82 | my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", | 84 | my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF", |
| 83 | "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", | 85 | "CAST", "MD2", "MD4", "MD5", "SHA", "SHA0", "SHA1", |
| 84 | "RIPEMD", | 86 | "RIPEMD", |
| @@ -126,11 +128,18 @@ foreach (@ARGV, split(/ /, $options)) | |||
| 126 | $VMSAlpha=1; | 128 | $VMSAlpha=1; |
| 127 | } | 129 | } |
| 128 | $VMS=1 if $_ eq "VMS"; | 130 | $VMS=1 if $_ eq "VMS"; |
| 131 | $OS2=1 if $_ eq "OS2"; | ||
| 129 | 132 | ||
| 130 | $do_ssl=1 if $_ eq "ssleay"; | 133 | $do_ssl=1 if $_ eq "ssleay"; |
| 131 | $do_ssl=1 if $_ eq "ssl"; | 134 | if ($_ eq "ssl") { |
| 135 | $do_ssl=1; | ||
| 136 | $libname=$_ | ||
| 137 | } | ||
| 132 | $do_crypto=1 if $_ eq "libeay"; | 138 | $do_crypto=1 if $_ eq "libeay"; |
| 133 | $do_crypto=1 if $_ eq "crypto"; | 139 | if ($_ eq "crypto") { |
| 140 | $do_crypto=1; | ||
| 141 | $libname=$_; | ||
| 142 | } | ||
| 134 | $do_update=1 if $_ eq "update"; | 143 | $do_update=1 if $_ eq "update"; |
| 135 | $do_rewrite=1 if $_ eq "rewrite"; | 144 | $do_rewrite=1 if $_ eq "rewrite"; |
| 136 | $do_ctest=1 if $_ eq "ctest"; | 145 | $do_ctest=1 if $_ eq "ctest"; |
| @@ -170,8 +179,17 @@ foreach (@ARGV, split(/ /, $options)) | |||
| 170 | } | 179 | } |
| 171 | 180 | ||
| 172 | 181 | ||
| 182 | if (!$libname) { | ||
| 183 | if ($do_ssl) { | ||
| 184 | $libname="SSLEAY"; | ||
| 185 | } | ||
| 186 | if ($do_crypto) { | ||
| 187 | $libname="LIBEAY"; | ||
| 188 | } | ||
| 189 | } | ||
| 190 | |||
| 173 | # If no platform is given, assume WIN32 | 191 | # If no platform is given, assume WIN32 |
| 174 | if ($W32 + $W16 + $VMS == 0) { | 192 | if ($W32 + $W16 + $VMS + $OS2 == 0) { |
| 175 | $W32 = 1; | 193 | $W32 = 1; |
| 176 | } | 194 | } |
| 177 | 195 | ||
| @@ -182,7 +200,7 @@ if ($W16) { | |||
| 182 | 200 | ||
| 183 | if (!$do_ssl && !$do_crypto) | 201 | if (!$do_ssl && !$do_crypto) |
| 184 | { | 202 | { |
| 185 | print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT ]\n"; | 203 | print STDERR "usage: $0 ( ssl | crypto ) [ 16 | 32 | NT | OS2 ]\n"; |
| 186 | exit(1); | 204 | exit(1); |
| 187 | } | 205 | } |
| 188 | 206 | ||
| @@ -305,10 +323,10 @@ EOF | |||
| 305 | 323 | ||
| 306 | } else { | 324 | } else { |
| 307 | 325 | ||
| 308 | &print_def_file(*STDOUT,"SSLEAY",*ssl_list,@ssl_symbols) | 326 | &print_def_file(*STDOUT,$libname,*ssl_list,@ssl_symbols) |
| 309 | if $do_ssl == 1; | 327 | if $do_ssl == 1; |
| 310 | 328 | ||
| 311 | &print_def_file(*STDOUT,"LIBEAY",*crypto_list,@crypto_symbols) | 329 | &print_def_file(*STDOUT,$libname,*crypto_list,@crypto_symbols) |
| 312 | if $do_crypto == 1; | 330 | if $do_crypto == 1; |
| 313 | 331 | ||
| 314 | } | 332 | } |
| @@ -995,6 +1013,7 @@ sub is_valid | |||
| 995 | if ($keyword eq "WIN32" && $W32) { return 1; } | 1013 | if ($keyword eq "WIN32" && $W32) { return 1; } |
| 996 | if ($keyword eq "WIN16" && $W16) { return 1; } | 1014 | if ($keyword eq "WIN16" && $W16) { return 1; } |
| 997 | if ($keyword eq "WINNT" && $NT) { return 1; } | 1015 | if ($keyword eq "WINNT" && $NT) { return 1; } |
| 1016 | if ($keyword eq "OS2" && $OS2) { return 1; } | ||
| 998 | # Special platforms: | 1017 | # Special platforms: |
| 999 | # EXPORT_VAR_AS_FUNCTION means that global variables | 1018 | # EXPORT_VAR_AS_FUNCTION means that global variables |
| 1000 | # will be represented as functions. This currently | 1019 | # will be represented as functions. This currently |
| @@ -1092,24 +1111,27 @@ sub print_def_file | |||
| 1092 | { | 1111 | { |
| 1093 | (*OUT,my $name,*nums,my @symbols)=@_; | 1112 | (*OUT,my $name,*nums,my @symbols)=@_; |
| 1094 | my $n = 1; my @e; my @r; my @v; my $prev=""; | 1113 | my $n = 1; my @e; my @r; my @v; my $prev=""; |
| 1114 | my $liboptions=""; | ||
| 1095 | 1115 | ||
| 1096 | if ($W32) | 1116 | if ($W32) |
| 1097 | { $name.="32"; } | 1117 | { $name.="32"; } |
| 1098 | else | 1118 | elsif ($W16) |
| 1099 | { $name.="16"; } | 1119 | { $name.="16"; } |
| 1120 | elsif ($OS2) | ||
| 1121 | { $liboptions = "INITINSTANCE\nDATA NONSHARED"; } | ||
| 1100 | 1122 | ||
| 1101 | print OUT <<"EOF"; | 1123 | print OUT <<"EOF"; |
| 1102 | ; | 1124 | ; |
| 1103 | ; Definition file for the DLL version of the $name library from OpenSSL | 1125 | ; Definition file for the DLL version of the $name library from OpenSSL |
| 1104 | ; | 1126 | ; |
| 1105 | 1127 | ||
| 1106 | LIBRARY $name | 1128 | LIBRARY $name $liboptions |
| 1107 | 1129 | ||
| 1108 | DESCRIPTION 'OpenSSL $name - http://www.openssl.org/' | 1130 | DESCRIPTION 'OpenSSL $name - http://www.openssl.org/' |
| 1109 | 1131 | ||
| 1110 | EOF | 1132 | EOF |
| 1111 | 1133 | ||
| 1112 | if (!$W32) { | 1134 | if ($W16) { |
| 1113 | print <<"EOF"; | 1135 | print <<"EOF"; |
| 1114 | CODE PRELOAD MOVEABLE | 1136 | CODE PRELOAD MOVEABLE |
| 1115 | DATA PRELOAD MOVEABLE SINGLE | 1137 | DATA PRELOAD MOVEABLE SINGLE |
| @@ -1148,10 +1170,10 @@ EOF | |||
| 1148 | print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n"; | 1170 | print STDERR "Warning: Symbol '",$s2,"' redefined. old=",($nums{$prev} =~ /^(.*?)\\/,$1),", new=",($nums{$s2} =~ /^(.*?)\\/,$1),"\n"; |
| 1149 | } | 1171 | } |
| 1150 | $prev = $s2; # To warn about duplicates... | 1172 | $prev = $s2; # To warn about duplicates... |
| 1151 | if($v) { | 1173 | if($v && !$OS2) { |
| 1152 | printf OUT " %s%-39s @%-8d DATA\n",($W32)?"":"_",$s2,$n; | 1174 | printf OUT " %s%-39s @%-8d DATA\n",($W32)?"":"_",$s2,$n; |
| 1153 | } else { | 1175 | } else { |
| 1154 | printf OUT " %s%-39s @%d\n",($W32)?"":"_",$s2,$n; | 1176 | printf OUT " %s%-39s @%d\n",($W32||$OS2)?"":"_",$s2,$n; |
| 1155 | } | 1177 | } |
| 1156 | } | 1178 | } |
| 1157 | } | 1179 | } |
diff --git a/src/lib/libssl/src/util/mklink.pl b/src/lib/libssl/src/util/mklink.pl index 9e9c9a5146..9386da7aa4 100644 --- a/src/lib/libssl/src/util/mklink.pl +++ b/src/lib/libssl/src/util/mklink.pl | |||
| @@ -18,10 +18,10 @@ | |||
| 18 | my $from = shift; | 18 | my $from = shift; |
| 19 | my @files = @ARGV; | 19 | my @files = @ARGV; |
| 20 | 20 | ||
| 21 | my @from_path = split(/\//, $from); | 21 | my @from_path = split(/[\\\/]/, $from); |
| 22 | my $pwd = `pwd`; | 22 | my $pwd = `pwd`; |
| 23 | chop($pwd); | 23 | chop($pwd); |
| 24 | my @pwd_path = split(/\//, $pwd); | 24 | my @pwd_path = split(/[\\\/]/, $pwd); |
| 25 | 25 | ||
| 26 | my @to_path = (); | 26 | my @to_path = (); |
| 27 | 27 | ||
| @@ -54,7 +54,16 @@ foreach $file (@files) { | |||
| 54 | if ($symlink_exists) { | 54 | if ($symlink_exists) { |
| 55 | symlink("$to/$file", "$from/$file") or $err = " [$!]"; | 55 | symlink("$to/$file", "$from/$file") or $err = " [$!]"; |
| 56 | } else { | 56 | } else { |
| 57 | system ("cp", "$file", "$from/$file") and $err = " [$!]"; | 57 | unlink "$from/$file"; |
| 58 | open (OLD, "<$file") or die "Can't open $file: $!"; | ||
| 59 | open (NEW, ">$from/$file") or die "Can't open $from/$file: $!"; | ||
| 60 | binmode(OLD); | ||
| 61 | binmode(NEW); | ||
| 62 | while (<OLD>) { | ||
| 63 | print NEW $_; | ||
| 64 | } | ||
| 65 | close (OLD) or die "Can't close $file: $!"; | ||
| 66 | close (NEW) or die "Can't close $from/$file: $!"; | ||
| 58 | } | 67 | } |
| 59 | print $file . " => $from/$file$err\n"; | 68 | print $file . " => $from/$file$err\n"; |
| 60 | } | 69 | } |
diff --git a/src/lib/libssl/src/util/pl/BC-32.pl b/src/lib/libssl/src/util/pl/BC-32.pl index 78d60616a6..bd7a9d9301 100644 --- a/src/lib/libssl/src/util/pl/BC-32.pl +++ b/src/lib/libssl/src/util/pl/BC-32.pl | |||
| @@ -18,7 +18,7 @@ $out_def="out32"; | |||
| 18 | $tmp_def="tmp32"; | 18 | $tmp_def="tmp32"; |
| 19 | $inc_def="inc32"; | 19 | $inc_def="inc32"; |
| 20 | #enable max error messages, disable most common warnings | 20 | #enable max error messages, disable most common warnings |
| 21 | $cflags="-DWIN32_LEAN_AND_MEAN -q -w-aus -w-par -w-inl -c -tWC -tWM -DOPENSSL_SYSNAME_WIN32 -DL_ENDIAN -DDSO_WIN32 "; | 21 | $cflags="-DWIN32_LEAN_AND_MEAN -q -w-aus -w-par -w-inl -c -tWC -tWM -DOPENSSL_SYSNAME_WIN32 -DL_ENDIAN -DDSO_WIN32 -D_stricmp=stricmp "; |
| 22 | if ($debug) | 22 | if ($debug) |
| 23 | { | 23 | { |
| 24 | $cflags.="-Od -y -v -vi- -D_DEBUG"; | 24 | $cflags.="-Od -y -v -vi- -D_DEBUG"; |
| @@ -51,9 +51,9 @@ $lfile=''; | |||
| 51 | $shlib_ex_obj=""; | 51 | $shlib_ex_obj=""; |
| 52 | $app_ex_obj="c0x32.obj"; | 52 | $app_ex_obj="c0x32.obj"; |
| 53 | 53 | ||
| 54 | $asm='n_o_T_a_s_m'; | 54 | $asm='nasmw'; |
| 55 | $asm.=" /Zi" if $debug; | 55 | $asm.=" /Zi" if $debug; |
| 56 | $afile='/Fo'; | 56 | $afile='-f obj -o'; |
| 57 | 57 | ||
| 58 | $bn_mulw_obj=''; | 58 | $bn_mulw_obj=''; |
| 59 | $bn_mulw_src=''; | 59 | $bn_mulw_src=''; |
| @@ -64,24 +64,24 @@ $bf_enc_src=''; | |||
| 64 | 64 | ||
| 65 | if (!$no_asm) | 65 | if (!$no_asm) |
| 66 | { | 66 | { |
| 67 | $bn_mulw_obj='crypto\bn\asm\bn-win32.obj'; | 67 | $bn_mulw_obj='crypto\bn\asm\bn_win32.obj'; |
| 68 | $bn_mulw_src='crypto\bn\asm\bn-win32.asm'; | 68 | $bn_mulw_src='crypto\bn\asm\bn_win32.asm'; |
| 69 | $des_enc_obj='crypto\des\asm\d-win32.obj crypto\des\asm\y-win32.obj'; | 69 | $des_enc_obj='crypto\des\asm\d_win32.obj crypto\des\asm\y_win32.obj'; |
| 70 | $des_enc_src='crypto\des\asm\d-win32.asm crypto\des\asm\y-win32.asm'; | 70 | $des_enc_src='crypto\des\asm\d_win32.asm crypto\des\asm\y_win32.asm'; |
| 71 | $bf_enc_obj='crypto\bf\asm\b-win32.obj'; | 71 | $bf_enc_obj='crypto\bf\asm\b_win32.obj'; |
| 72 | $bf_enc_src='crypto\bf\asm\b-win32.asm'; | 72 | $bf_enc_src='crypto\bf\asm\b_win32.asm'; |
| 73 | $cast_enc_obj='crypto\cast\asm\c-win32.obj'; | 73 | $cast_enc_obj='crypto\cast\asm\c_win32.obj'; |
| 74 | $cast_enc_src='crypto\cast\asm\c-win32.asm'; | 74 | $cast_enc_src='crypto\cast\asm\c_win32.asm'; |
| 75 | $rc4_enc_obj='crypto\rc4\asm\r4-win32.obj'; | 75 | $rc4_enc_obj='crypto\rc4\asm\r4_win32.obj'; |
| 76 | $rc4_enc_src='crypto\rc4\asm\r4-win32.asm'; | 76 | $rc4_enc_src='crypto\rc4\asm\r4_win32.asm'; |
| 77 | $rc5_enc_obj='crypto\rc5\asm\r5-win32.obj'; | 77 | $rc5_enc_obj='crypto\rc5\asm\r5_win32.obj'; |
| 78 | $rc5_enc_src='crypto\rc5\asm\r5-win32.asm'; | 78 | $rc5_enc_src='crypto\rc5\asm\r5_win32.asm'; |
| 79 | $md5_asm_obj='crypto\md5\asm\m5-win32.obj'; | 79 | $md5_asm_obj='crypto\md5\asm\m5_win32.obj'; |
| 80 | $md5_asm_src='crypto\md5\asm\m5-win32.asm'; | 80 | $md5_asm_src='crypto\md5\asm\m5_win32.asm'; |
| 81 | $sha1_asm_obj='crypto\sha\asm\s1-win32.obj'; | 81 | $sha1_asm_obj='crypto\sha\asm\s1_win32.obj'; |
| 82 | $sha1_asm_src='crypto\sha\asm\s1-win32.asm'; | 82 | $sha1_asm_src='crypto\sha\asm\s1_win32.asm'; |
| 83 | $rmd160_asm_obj='crypto\ripemd\asm\rm-win32.obj'; | 83 | $rmd160_asm_obj='crypto\ripemd\asm\rm_win32.obj'; |
| 84 | $rmd160_asm_src='crypto\ripemd\asm\rm-win32.asm'; | 84 | $rmd160_asm_src='crypto\ripemd\asm\rm_win32.asm'; |
| 85 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; | 85 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; |
| 86 | } | 86 | } |
| 87 | 87 | ||
diff --git a/src/lib/libssl/src/util/pl/OS2-EMX.pl b/src/lib/libssl/src/util/pl/OS2-EMX.pl index 57180556ca..d695dda623 100644 --- a/src/lib/libssl/src/util/pl/OS2-EMX.pl +++ b/src/lib/libssl/src/util/pl/OS2-EMX.pl | |||
| @@ -10,18 +10,20 @@ $rm='rm -f'; | |||
| 10 | # C compiler stuff | 10 | # C compiler stuff |
| 11 | 11 | ||
| 12 | $cc='gcc'; | 12 | $cc='gcc'; |
| 13 | $cflags="-DL_ENDIAN -O3 -fomit-frame-pointer -m486 -Zmt -Wall "; | 13 | $cflags="-DL_ENDIAN -O3 -fomit-frame-pointer -m486 -Zmtd -Wall "; |
| 14 | $cflags.="-Zomf " if $shlib; | ||
| 15 | $shl_cflag="-Zdll"; | ||
| 14 | 16 | ||
| 15 | if ($debug) { | 17 | if ($debug) { |
| 16 | $cflags.="-g "; | 18 | $cflags.="-g "; |
| 17 | } | 19 | } |
| 18 | 20 | ||
| 19 | $obj='.o'; | 21 | $obj=$shlib ? '.obj' : '.o'; |
| 20 | $ofile='-o '; | 22 | $ofile='-o '; |
| 21 | 23 | ||
| 22 | # EXE linking stuff | 24 | # EXE linking stuff |
| 23 | $link='${CC}'; | 25 | $link='${CC}'; |
| 24 | $lflags='${CFLAGS} -Zbsd-signals'; | 26 | $lflags='${CFLAGS} -Zbsd-signals -s'; |
| 25 | $efile='-o '; | 27 | $efile='-o '; |
| 26 | $exep='.exe'; | 28 | $exep='.exe'; |
| 27 | $ex_libs="-lsocket"; | 29 | $ex_libs="-lsocket"; |
| @@ -30,12 +32,12 @@ $ex_libs="-lsocket"; | |||
| 30 | $mklib='ar r'; | 32 | $mklib='ar r'; |
| 31 | $mlflags=''; | 33 | $mlflags=''; |
| 32 | $ranlib="ar s"; | 34 | $ranlib="ar s"; |
| 33 | $plib='lib'; | 35 | $plib=''; |
| 34 | $libp=".a"; | 36 | $libp=$shlib ? ".lib" : ".a"; |
| 35 | $shlibp=".a"; | 37 | $shlibp=$shlib ? ".dll" : ".a"; |
| 36 | $lfile=''; | 38 | $lfile=''; |
| 37 | 39 | ||
| 38 | $asm='as'; | 40 | $asm=$shlib ? 'as -Zomf' : 'as'; |
| 39 | $afile='-o '; | 41 | $afile='-o '; |
| 40 | $bn_asm_obj=""; | 42 | $bn_asm_obj=""; |
| 41 | $bn_asm_src=""; | 43 | $bn_asm_src=""; |
| @@ -46,24 +48,32 @@ $bf_enc_src=""; | |||
| 46 | 48 | ||
| 47 | if (!$no_asm) | 49 | if (!$no_asm) |
| 48 | { | 50 | { |
| 49 | $bn_asm_obj='crypto\bn\asm\bn-os2.o crypto\bn\asm\co-os2.o'; | 51 | $bn_asm_obj="crypto\\bn\\asm\\bn-os2$obj crypto\\bn\\asm\\co-os2$obj"; |
| 50 | $bn_asm_src='crypto\bn\asm\bn-os2.asm crypto\bn\asm\co-os2.asm'; | 52 | $bn_asm_src="crypto\\bn\\asm\\bn-os2.asm crypto\\bn\\asm\\co-os2.asm"; |
| 51 | $des_enc_obj='crypto\des\asm\d-os2.o crypto\des\asm\y-os2.o'; | 53 | $des_enc_obj="crypto\\des\\asm\\d-os2$obj crypto\\des\\asm\\y-os2$obj"; |
| 52 | $des_enc_src='crypto\des\asm\d-os2.asm crypto\des\asm\y-os2.asm'; | 54 | $des_enc_src="crypto\\des\\asm\\d-os2.asm crypto\\des\\asm\\y-os2.asm"; |
| 53 | $bf_enc_obj='crypto\bf\asm\b-os2.o'; | 55 | $bf_enc_obj="crypto\\bf\\asm\\b-os2$obj"; |
| 54 | $bf_enc_src='crypto\bf\asm\b-os2.asm'; | 56 | $bf_enc_src="crypto\\bf\\asm\\b-os2.asm"; |
| 55 | $cast_enc_obj='crypto\cast\asm\c-os2.o'; | 57 | $cast_enc_obj="crypto\\cast\\asm\\c-os2$obj"; |
| 56 | $cast_enc_src='crypto\cast\asm\c-os2.asm'; | 58 | $cast_enc_src="crypto\\cast\\asm\\c-os2.asm"; |
| 57 | $rc4_enc_obj='crypto\rc4\asm\r4-os2.o'; | 59 | $rc4_enc_obj="crypto\\rc4\\asm\\r4-os2$obj"; |
| 58 | $rc4_enc_src='crypto\rc4\asm\r4-os2.asm'; | 60 | $rc4_enc_src="crypto\\rc4\\asm\\r4-os2.asm"; |
| 59 | $rc5_enc_obj='crypto\rc5\asm\r5-os2.o'; | 61 | $rc5_enc_obj="crypto\\rc5\\asm\\r5-os2$obj"; |
| 60 | $rc5_enc_src='crypto\rc5\asm\r5-os2.asm'; | 62 | $rc5_enc_src="crypto\\rc5\\asm\\r5-os2.asm"; |
| 61 | $md5_asm_obj='crypto\md5\asm\m5-os2.o'; | 63 | $md5_asm_obj="crypto\\md5\\asm\\m5-os2$obj"; |
| 62 | $md5_asm_src='crypto\md5\asm\m5-os2.asm'; | 64 | $md5_asm_src="crypto\\md5\\asm\\m5-os2.asm"; |
| 63 | $sha1_asm_obj='crypto\sha\asm\s1-os2.o'; | 65 | $sha1_asm_obj="crypto\\sha\\asm\\s1-os2$obj"; |
| 64 | $sha1_asm_src='crypto\sha\asm\s1-os2.asm'; | 66 | $sha1_asm_src="crypto\\sha\\asm\\s1-os2.asm"; |
| 65 | $rmd160_asm_obj='crypto\ripemd\asm\rm-os2.o'; | 67 | $rmd160_asm_obj="crypto\\ripemd\\asm\\rm-os2$obj"; |
| 66 | $rmd160_asm_src='crypto\ripemd\asm\rm-os2.asm'; | 68 | $rmd160_asm_src="crypto\\ripemd\\asm\\rm-os2.asm"; |
| 69 | } | ||
| 70 | |||
| 71 | if ($shlib) | ||
| 72 | { | ||
| 73 | $mlflags.=" $lflags -Zdll"; | ||
| 74 | $lib_cflag=" -D_DLL"; | ||
| 75 | $out_def="out_dll"; | ||
| 76 | $tmp_def="tmp_dll"; | ||
| 67 | } | 77 | } |
| 68 | 78 | ||
| 69 | sub do_lib_rule | 79 | sub do_lib_rule |
| @@ -76,9 +86,20 @@ sub do_lib_rule | |||
| 76 | ($Name=$name) =~ tr/a-z/A-Z/; | 86 | ($Name=$name) =~ tr/a-z/A-Z/; |
| 77 | 87 | ||
| 78 | $ret.="$target: \$(${Name}OBJ)\n"; | 88 | $ret.="$target: \$(${Name}OBJ)\n"; |
| 79 | $ret.="\t\$(RM) $target\n"; | 89 | if (!$shlib) |
| 80 | $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n"; | 90 | { |
| 81 | $ret.="\t\$(RANLIB) $target\n\n"; | 91 | $ret.="\t\$(RM) $target\n"; |
| 92 | $ret.="\t\$(MKLIB) $target \$(${Name}OBJ)\n"; | ||
| 93 | $ret.="\t\$(RANLIB) $target\n\n"; | ||
| 94 | } | ||
| 95 | else | ||
| 96 | { | ||
| 97 | local($ex)=($target =~ /O_SSL/)?' $(L_CRYPTO)':''; | ||
| 98 | $ex.=' -lsocket'; | ||
| 99 | $ret.="\t\$(LINK) \$(SHLIB_CFLAGS) \$(MLFLAGS) $efile$target \$(SHLIB_EX_OBJ) \$(${Name}OBJ) $ex os2/${Name}.def\n"; | ||
| 100 | $ret.="\temximp -o $out_def/$name.a os2/${Name}.def\n"; | ||
| 101 | $ret.="\temximp -o $out_def/$name.lib os2/${Name}.def\n\n"; | ||
| 102 | } | ||
| 82 | } | 103 | } |
| 83 | 104 | ||
| 84 | sub do_link_rule | 105 | sub do_link_rule |
| @@ -89,7 +110,7 @@ sub do_link_rule | |||
| 89 | $file =~ s/\//$o/g if $o ne '/'; | 110 | $file =~ s/\//$o/g if $o ne '/'; |
| 90 | $n=&bname($target); | 111 | $n=&bname($target); |
| 91 | $ret.="$target: $files $dep_libs\n"; | 112 | $ret.="$target: $files $dep_libs\n"; |
| 92 | $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n"; | 113 | $ret.="\t\$(LINK) ${efile}$target \$(CFLAG) \$(LFLAGS) $files $libs\n\n"; |
| 93 | return($ret); | 114 | return($ret); |
| 94 | } | 115 | } |
| 95 | 116 | ||
diff --git a/src/lib/libssl/src/util/pl/VC-32.pl b/src/lib/libssl/src/util/pl/VC-32.pl index 50bfb34385..d6e3a11530 100644 --- a/src/lib/libssl/src/util/pl/VC-32.pl +++ b/src/lib/libssl/src/util/pl/VC-32.pl | |||
| @@ -66,24 +66,24 @@ $bf_enc_src=''; | |||
| 66 | 66 | ||
| 67 | if (!$no_asm) | 67 | if (!$no_asm) |
| 68 | { | 68 | { |
| 69 | $bn_asm_obj='crypto\bn\asm\bn-win32.obj'; | 69 | $bn_asm_obj='crypto\bn\asm\bn_win32.obj'; |
| 70 | $bn_asm_src='crypto\bn\asm\bn-win32.asm'; | 70 | $bn_asm_src='crypto\bn\asm\bn_win32.asm'; |
| 71 | $des_enc_obj='crypto\des\asm\d-win32.obj crypto\des\asm\y-win32.obj'; | 71 | $des_enc_obj='crypto\des\asm\d_win32.obj crypto\des\asm\y_win32.obj'; |
| 72 | $des_enc_src='crypto\des\asm\d-win32.asm crypto\des\asm\y-win32.asm'; | 72 | $des_enc_src='crypto\des\asm\d_win32.asm crypto\des\asm\y_win32.asm'; |
| 73 | $bf_enc_obj='crypto\bf\asm\b-win32.obj'; | 73 | $bf_enc_obj='crypto\bf\asm\b_win32.obj'; |
| 74 | $bf_enc_src='crypto\bf\asm\b-win32.asm'; | 74 | $bf_enc_src='crypto\bf\asm\b_win32.asm'; |
| 75 | $cast_enc_obj='crypto\cast\asm\c-win32.obj'; | 75 | $cast_enc_obj='crypto\cast\asm\c_win32.obj'; |
| 76 | $cast_enc_src='crypto\cast\asm\c-win32.asm'; | 76 | $cast_enc_src='crypto\cast\asm\c_win32.asm'; |
| 77 | $rc4_enc_obj='crypto\rc4\asm\r4-win32.obj'; | 77 | $rc4_enc_obj='crypto\rc4\asm\r4_win32.obj'; |
| 78 | $rc4_enc_src='crypto\rc4\asm\r4-win32.asm'; | 78 | $rc4_enc_src='crypto\rc4\asm\r4_win32.asm'; |
| 79 | $rc5_enc_obj='crypto\rc5\asm\r5-win32.obj'; | 79 | $rc5_enc_obj='crypto\rc5\asm\r5_win32.obj'; |
| 80 | $rc5_enc_src='crypto\rc5\asm\r5-win32.asm'; | 80 | $rc5_enc_src='crypto\rc5\asm\r5_win32.asm'; |
| 81 | $md5_asm_obj='crypto\md5\asm\m5-win32.obj'; | 81 | $md5_asm_obj='crypto\md5\asm\m5_win32.obj'; |
| 82 | $md5_asm_src='crypto\md5\asm\m5-win32.asm'; | 82 | $md5_asm_src='crypto\md5\asm\m5_win32.asm'; |
| 83 | $sha1_asm_obj='crypto\sha\asm\s1-win32.obj'; | 83 | $sha1_asm_obj='crypto\sha\asm\s1_win32.obj'; |
| 84 | $sha1_asm_src='crypto\sha\asm\s1-win32.asm'; | 84 | $sha1_asm_src='crypto\sha\asm\s1_win32.asm'; |
| 85 | $rmd160_asm_obj='crypto\ripemd\asm\rm-win32.obj'; | 85 | $rmd160_asm_obj='crypto\ripemd\asm\rm_win32.obj'; |
| 86 | $rmd160_asm_src='crypto\ripemd\asm\rm-win32.asm'; | 86 | $rmd160_asm_src='crypto\ripemd\asm\rm_win32.asm'; |
| 87 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; | 87 | $cflags.=" -DBN_ASM -DMD5_ASM -DSHA1_ASM -DRMD160_ASM"; |
| 88 | } | 88 | } |
| 89 | 89 | ||
diff --git a/src/lib/libssl/src/util/point.sh b/src/lib/libssl/src/util/point.sh index 47543c88e2..ce7dcc56df 100644 --- a/src/lib/libssl/src/util/point.sh +++ b/src/lib/libssl/src/util/point.sh | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | rm -f $2 | 3 | rm -f $2 |
| 4 | ln -s $1 $2 | 4 | if test "$OSTYPE" = msdosdjgpp; then |
| 5 | cp $1 $2 | ||
| 6 | else | ||
| 7 | ln -s $1 $2 | ||
| 8 | fi | ||
| 5 | echo "$2 => $1" | 9 | echo "$2 => $1" |
| 6 | 10 | ||
diff --git a/src/lib/libssl/ssl.h b/src/lib/libssl/ssl.h index ce6354b2ff..d9949e8eb2 100644 --- a/src/lib/libssl/ssl.h +++ b/src/lib/libssl/ssl.h | |||
| @@ -253,7 +253,7 @@ extern "C" { | |||
| 253 | #define SSL_TXT_RC4 "RC4" | 253 | #define SSL_TXT_RC4 "RC4" |
| 254 | #define SSL_TXT_RC2 "RC2" | 254 | #define SSL_TXT_RC2 "RC2" |
| 255 | #define SSL_TXT_IDEA "IDEA" | 255 | #define SSL_TXT_IDEA "IDEA" |
| 256 | #define SSL_TXT_AES "AESdraft" /* AES ciphersuites are not yet official (thus excluded from 'ALL') */ | 256 | #define SSL_TXT_AES "AES" |
| 257 | #define SSL_TXT_MD5 "MD5" | 257 | #define SSL_TXT_MD5 "MD5" |
| 258 | #define SSL_TXT_SHA1 "SHA1" | 258 | #define SSL_TXT_SHA1 "SHA1" |
| 259 | #define SSL_TXT_SHA "SHA" | 259 | #define SSL_TXT_SHA "SHA" |
| @@ -266,6 +266,23 @@ extern "C" { | |||
| 266 | #define SSL_TXT_TLSV1 "TLSv1" | 266 | #define SSL_TXT_TLSV1 "TLSv1" |
| 267 | #define SSL_TXT_ALL "ALL" | 267 | #define SSL_TXT_ALL "ALL" |
| 268 | 268 | ||
| 269 | /* | ||
| 270 | * COMPLEMENTOF* definitions. These identifiers are used to (de-select) | ||
| 271 | * ciphers normally not being used. | ||
| 272 | * Example: "RC4" will activate all ciphers using RC4 including ciphers | ||
| 273 | * without authentication, which would normally disabled by DEFAULT (due | ||
| 274 | * the "!ADH" being part of default). Therefore "RC4:!COMPLEMENTOFDEFAULT" | ||
| 275 | * will make sure that it is also disabled in the specific selection. | ||
| 276 | * COMPLEMENTOF* identifiers are portable between version, as adjustments | ||
| 277 | * to the default cipher setup will also be included here. | ||
| 278 | * | ||
| 279 | * COMPLEMENTOFDEFAULT does not experience the same special treatment that | ||
| 280 | * DEFAULT gets, as only selection is being done and no sorting as needed | ||
| 281 | * for DEFAULT. | ||
| 282 | */ | ||
| 283 | #define SSL_TXT_CMPALL "COMPLEMENTOFALL" | ||
| 284 | #define SSL_TXT_CMPDEF "COMPLEMENTOFDEFAULT" | ||
| 285 | |||
| 269 | /* The following cipher list is used by default. | 286 | /* The following cipher list is used by default. |
| 270 | * It also is substituted when an application-defined cipher list string | 287 | * It also is substituted when an application-defined cipher list string |
| 271 | * starts with 'DEFAULT'. */ | 288 | * starts with 'DEFAULT'. */ |
| @@ -429,6 +446,7 @@ typedef struct ssl_session_st | |||
| 429 | struct ssl_session_st *prev,*next; | 446 | struct ssl_session_st *prev,*next; |
| 430 | } SSL_SESSION; | 447 | } SSL_SESSION; |
| 431 | 448 | ||
| 449 | |||
| 432 | #define SSL_OP_MICROSOFT_SESS_ID_BUG 0x00000001L | 450 | #define SSL_OP_MICROSOFT_SESS_ID_BUG 0x00000001L |
| 433 | #define SSL_OP_NETSCAPE_CHALLENGE_BUG 0x00000002L | 451 | #define SSL_OP_NETSCAPE_CHALLENGE_BUG 0x00000002L |
| 434 | #define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0x00000008L | 452 | #define SSL_OP_NETSCAPE_REUSE_CIPHER_CHANGE_BUG 0x00000008L |
| @@ -439,6 +457,19 @@ typedef struct ssl_session_st | |||
| 439 | #define SSL_OP_TLS_D5_BUG 0x00000100L | 457 | #define SSL_OP_TLS_D5_BUG 0x00000100L |
| 440 | #define SSL_OP_TLS_BLOCK_PADDING_BUG 0x00000200L | 458 | #define SSL_OP_TLS_BLOCK_PADDING_BUG 0x00000200L |
| 441 | 459 | ||
| 460 | /* Disable SSL 3.0/TLS 1.0 CBC vulnerability workaround that was added | ||
| 461 | * in OpenSSL 0.9.6d. Usually (depending on the application protocol) | ||
| 462 | * the workaround is not needed. Unfortunately some broken SSL/TLS | ||
| 463 | * implementations cannot handle it at all, which is why we include | ||
| 464 | * it in SSL_OP_ALL. */ | ||
| 465 | #define SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS 0x00000800L /* added in 0.9.6e */ | ||
| 466 | |||
| 467 | /* SSL_OP_ALL: various bug workarounds that should be rather harmless. | ||
| 468 | * This used to be 0x000FFFFFL before 0.9.7. */ | ||
| 469 | #define SSL_OP_ALL 0x00000FFFL | ||
| 470 | |||
| 471 | /* As server, disallow session resumption on renegotiation */ | ||
| 472 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x00010000L | ||
| 442 | /* If set, always create a new key when using tmp_dh parameters */ | 473 | /* If set, always create a new key when using tmp_dh parameters */ |
| 443 | #define SSL_OP_SINGLE_DH_USE 0x00100000L | 474 | #define SSL_OP_SINGLE_DH_USE 0x00100000L |
| 444 | /* Set to always use the tmp_rsa key when doing RSA operations, | 475 | /* Set to always use the tmp_rsa key when doing RSA operations, |
| @@ -452,8 +483,10 @@ typedef struct ssl_session_st | |||
| 452 | * (version 3.1) was announced in the client hello. Normally this is | 483 | * (version 3.1) was announced in the client hello. Normally this is |
| 453 | * forbidden to prevent version rollback attacks. */ | 484 | * forbidden to prevent version rollback attacks. */ |
| 454 | #define SSL_OP_TLS_ROLLBACK_BUG 0x00800000L | 485 | #define SSL_OP_TLS_ROLLBACK_BUG 0x00800000L |
| 455 | /* As server, disallow session resumption on renegotiation */ | 486 | |
| 456 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0x01000000L | 487 | #define SSL_OP_NO_SSLv2 0x01000000L |
| 488 | #define SSL_OP_NO_SSLv3 0x02000000L | ||
| 489 | #define SSL_OP_NO_TLSv1 0x04000000L | ||
| 457 | 490 | ||
| 458 | /* The next flag deliberately changes the ciphertest, this is a check | 491 | /* The next flag deliberately changes the ciphertest, this is a check |
| 459 | * for the PKCS#1 attack */ | 492 | * for the PKCS#1 attack */ |
| @@ -461,11 +494,7 @@ typedef struct ssl_session_st | |||
| 461 | #define SSL_OP_PKCS1_CHECK_2 0x10000000L | 494 | #define SSL_OP_PKCS1_CHECK_2 0x10000000L |
| 462 | #define SSL_OP_NETSCAPE_CA_DN_BUG 0x20000000L | 495 | #define SSL_OP_NETSCAPE_CA_DN_BUG 0x20000000L |
| 463 | #define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0x40000000L | 496 | #define SSL_OP_NETSCAPE_DEMO_CIPHER_CHANGE_BUG 0x40000000L |
| 464 | #define SSL_OP_ALL 0x000FFFFFL | ||
| 465 | 497 | ||
| 466 | #define SSL_OP_NO_SSLv2 0x01000000L | ||
| 467 | #define SSL_OP_NO_SSLv3 0x02000000L | ||
| 468 | #define SSL_OP_NO_TLSv1 0x04000000L | ||
| 469 | 498 | ||
| 470 | /* Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success | 499 | /* Allow SSL_write(..., n) to return r with 0 < r < n (i.e. report success |
| 471 | * when just a single record has been written): */ | 500 | * when just a single record has been written): */ |
| @@ -479,6 +508,7 @@ typedef struct ssl_session_st | |||
| 479 | * is blocking: */ | 508 | * is blocking: */ |
| 480 | #define SSL_MODE_AUTO_RETRY 0x00000004L | 509 | #define SSL_MODE_AUTO_RETRY 0x00000004L |
| 481 | 510 | ||
| 511 | |||
| 482 | /* Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, | 512 | /* Note: SSL[_CTX]_set_{options,mode} use |= op on the previous value, |
| 483 | * they cannot be used to clear bits. */ | 513 | * they cannot be used to clear bits. */ |
| 484 | 514 | ||
diff --git a/src/lib/libssl/ssl_asn1.c b/src/lib/libssl/ssl_asn1.c index 39ffa46cee..c550747947 100644 --- a/src/lib/libssl/ssl_asn1.c +++ b/src/lib/libssl/ssl_asn1.c | |||
| @@ -57,11 +57,11 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <stdlib.h> | 61 | #include <stdlib.h> |
| 61 | #include <openssl/asn1_mac.h> | 62 | #include <openssl/asn1_mac.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/x509.h> | 64 | #include <openssl/x509.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | typedef struct ssl_session_asn1_st | 66 | typedef struct ssl_session_asn1_st |
| 67 | { | 67 | { |
diff --git a/src/lib/libssl/ssl_ciph.c b/src/lib/libssl/ssl_ciph.c index 57bbde5f27..df48245b2c 100644 --- a/src/lib/libssl/ssl_ciph.c +++ b/src/lib/libssl/ssl_ciph.c | |||
| @@ -100,9 +100,10 @@ typedef struct cipher_order_st | |||
| 100 | } CIPHER_ORDER; | 100 | } CIPHER_ORDER; |
| 101 | 101 | ||
| 102 | static const SSL_CIPHER cipher_aliases[]={ | 102 | static const SSL_CIPHER cipher_aliases[]={ |
| 103 | /* Don't include eNULL unless specifically enabled. | 103 | /* Don't include eNULL unless specifically enabled. */ |
| 104 | * Similarly, don't include AES in ALL because these ciphers are not yet official. */ | 104 | {0,SSL_TXT_ALL, 0,SSL_ALL & ~SSL_eNULL, SSL_ALL ,0,0,0,SSL_ALL,SSL_ALL}, /* must be first */ |
| 105 | {0,SSL_TXT_ALL, 0,SSL_ALL & ~SSL_eNULL & ~SSL_AES, SSL_ALL ,0,0,0,SSL_ALL,SSL_ALL}, /* must be first */ | 105 | {0,SSL_TXT_CMPALL,0,SSL_eNULL,0,0,0,0,SSL_ENC_MASK,0}, /* COMPLEMENT OF ALL */ |
| 106 | {0,SSL_TXT_CMPDEF,0,SSL_ADH, 0,0,0,0,SSL_AUTH_MASK,0}, | ||
| 106 | {0,SSL_TXT_kKRB5,0,SSL_kKRB5,0,0,0,0,SSL_MKEY_MASK,0}, /* VRS Kerberos5 */ | 107 | {0,SSL_TXT_kKRB5,0,SSL_kKRB5,0,0,0,0,SSL_MKEY_MASK,0}, /* VRS Kerberos5 */ |
| 107 | {0,SSL_TXT_kRSA,0,SSL_kRSA, 0,0,0,0,SSL_MKEY_MASK,0}, | 108 | {0,SSL_TXT_kRSA,0,SSL_kRSA, 0,0,0,0,SSL_MKEY_MASK,0}, |
| 108 | {0,SSL_TXT_kDHr,0,SSL_kDHr, 0,0,0,0,SSL_MKEY_MASK,0}, | 109 | {0,SSL_TXT_kDHr,0,SSL_kDHr, 0,0,0,0,SSL_MKEY_MASK,0}, |
| @@ -1005,10 +1006,10 @@ char *SSL_CIPHER_description(SSL_CIPHER *cipher, char *buf, int len) | |||
| 1005 | case SSL_AES: | 1006 | case SSL_AES: |
| 1006 | switch(cipher->strength_bits) | 1007 | switch(cipher->strength_bits) |
| 1007 | { | 1008 | { |
| 1008 | case 128: enc="AESdraft(128)"; break; | 1009 | case 128: enc="AES(128)"; break; |
| 1009 | case 192: enc="AESdraft(192)"; break; | 1010 | case 192: enc="AES(192)"; break; |
| 1010 | case 256: enc="AESdraft(256)"; break; | 1011 | case 256: enc="AES(256)"; break; |
| 1011 | default: enc="AESdraft(?""?""?)"; break; | 1012 | default: enc="AES(?""?""?)"; break; |
| 1012 | } | 1013 | } |
| 1013 | break; | 1014 | break; |
| 1014 | default: | 1015 | default: |
diff --git a/src/lib/libssl/ssl_lib.c b/src/lib/libssl/ssl_lib.c index e516382b6c..4a87a146e3 100644 --- a/src/lib/libssl/ssl_lib.c +++ b/src/lib/libssl/ssl_lib.c | |||
| @@ -116,11 +116,11 @@ | |||
| 116 | # include <assert.h> | 116 | # include <assert.h> |
| 117 | #endif | 117 | #endif |
| 118 | #include <stdio.h> | 118 | #include <stdio.h> |
| 119 | #include "ssl_locl.h" | ||
| 120 | #include "kssl_lcl.h" | ||
| 119 | #include <openssl/objects.h> | 121 | #include <openssl/objects.h> |
| 120 | #include <openssl/lhash.h> | 122 | #include <openssl/lhash.h> |
| 121 | #include <openssl/x509v3.h> | 123 | #include <openssl/x509v3.h> |
| 122 | #include "ssl_locl.h" | ||
| 123 | #include "kssl_lcl.h" | ||
| 124 | 124 | ||
| 125 | const char *SSL_version_str=OPENSSL_VERSION_TEXT; | 125 | const char *SSL_version_str=OPENSSL_VERSION_TEXT; |
| 126 | 126 | ||
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index 6afb0f4cdf..4c77e27acc 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h | |||
| @@ -293,16 +293,17 @@ | |||
| 293 | #define SSL_NOT_EXP 0x00000001L | 293 | #define SSL_NOT_EXP 0x00000001L |
| 294 | #define SSL_EXPORT 0x00000002L | 294 | #define SSL_EXPORT 0x00000002L |
| 295 | 295 | ||
| 296 | #define SSL_STRONG_MASK 0x0000007cL | 296 | #define SSL_STRONG_MASK 0x000000fcL |
| 297 | #define SSL_EXP40 0x00000004L | 297 | #define SSL_STRONG_NONE 0x00000004L |
| 298 | #define SSL_EXP40 0x00000008L | ||
| 298 | #define SSL_MICRO (SSL_EXP40) | 299 | #define SSL_MICRO (SSL_EXP40) |
| 299 | #define SSL_EXP56 0x00000008L | 300 | #define SSL_EXP56 0x00000010L |
| 300 | #define SSL_MINI (SSL_EXP56) | 301 | #define SSL_MINI (SSL_EXP56) |
| 301 | #define SSL_LOW 0x00000010L | 302 | #define SSL_LOW 0x00000020L |
| 302 | #define SSL_MEDIUM 0x00000020L | 303 | #define SSL_MEDIUM 0x00000040L |
| 303 | #define SSL_HIGH 0x00000040L | 304 | #define SSL_HIGH 0x00000080L |
| 304 | 305 | ||
| 305 | /* we have used 0000007f - 25 bits left to go */ | 306 | /* we have used 000000ff - 24 bits left to go */ |
| 306 | 307 | ||
| 307 | /* | 308 | /* |
| 308 | * Macros to check the export status and cipher strength for export ciphers. | 309 | * Macros to check the export status and cipher strength for export ciphers. |
diff --git a/src/lib/libssl/ssl_rsa.c b/src/lib/libssl/ssl_rsa.c index 1cf8e20934..03828b6632 100644 --- a/src/lib/libssl/ssl_rsa.c +++ b/src/lib/libssl/ssl_rsa.c | |||
| @@ -57,12 +57,12 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/bio.h> | 61 | #include <openssl/bio.h> |
| 61 | #include <openssl/objects.h> | 62 | #include <openssl/objects.h> |
| 62 | #include <openssl/evp.h> | 63 | #include <openssl/evp.h> |
| 63 | #include <openssl/x509.h> | 64 | #include <openssl/x509.h> |
| 64 | #include <openssl/pem.h> | 65 | #include <openssl/pem.h> |
| 65 | #include "ssl_locl.h" | ||
| 66 | 66 | ||
| 67 | static int ssl_set_cert(CERT *c, X509 *x509); | 67 | static int ssl_set_cert(CERT *c, X509 *x509); |
| 68 | static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey); | 68 | static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey); |
diff --git a/src/lib/libssl/t1_clnt.c b/src/lib/libssl/t1_clnt.c index 9745630a00..9ad518f9f4 100644 --- a/src/lib/libssl/t1_clnt.c +++ b/src/lib/libssl/t1_clnt.c | |||
| @@ -57,11 +57,11 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/buffer.h> | 61 | #include <openssl/buffer.h> |
| 61 | #include <openssl/rand.h> | 62 | #include <openssl/rand.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/evp.h> | 64 | #include <openssl/evp.h> |
| 64 | #include "ssl_locl.h" | ||
| 65 | 65 | ||
| 66 | static SSL_METHOD *tls1_get_client_method(int ver); | 66 | static SSL_METHOD *tls1_get_client_method(int ver); |
| 67 | static SSL_METHOD *tls1_get_client_method(int ver) | 67 | static SSL_METHOD *tls1_get_client_method(int ver) |
diff --git a/src/lib/libssl/t1_enc.c b/src/lib/libssl/t1_enc.c index b80525f3ba..5290bf6665 100644 --- a/src/lib/libssl/t1_enc.c +++ b/src/lib/libssl/t1_enc.c | |||
| @@ -110,10 +110,10 @@ | |||
| 110 | */ | 110 | */ |
| 111 | 111 | ||
| 112 | #include <stdio.h> | 112 | #include <stdio.h> |
| 113 | #include "ssl_locl.h" | ||
| 113 | #include <openssl/comp.h> | 114 | #include <openssl/comp.h> |
| 114 | #include <openssl/evp.h> | 115 | #include <openssl/evp.h> |
| 115 | #include <openssl/hmac.h> | 116 | #include <openssl/hmac.h> |
| 116 | #include "ssl_locl.h" | ||
| 117 | #include <openssl/md5.h> | 117 | #include <openssl/md5.h> |
| 118 | 118 | ||
| 119 | static void tls1_P_hash(const EVP_MD *md, const unsigned char *sec, | 119 | static void tls1_P_hash(const EVP_MD *md, const unsigned char *sec, |
| @@ -483,14 +483,25 @@ printf("\nkey block\n"); | |||
| 483 | { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); } | 483 | { int z; for (z=0; z<num; z++) printf("%02X%c",p1[z],((z+1)%16)?' ':'\n'); } |
| 484 | #endif | 484 | #endif |
| 485 | 485 | ||
| 486 | /* enable vulnerability countermeasure for CBC ciphers with | 486 | if (!(s->options & SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS)) |
| 487 | * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt) */ | 487 | { |
| 488 | s->s3->need_empty_fragments = 1; | 488 | /* enable vulnerability countermeasure for CBC ciphers with |
| 489 | #ifndef NO_RC4 | 489 | * known-IV problem (http://www.openssl.org/~bodo/tls-cbc.txt) |
| 490 | if ((s->session->cipher != NULL) && ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4)) | 490 | */ |
| 491 | s->s3->need_empty_fragments = 0; | 491 | s->s3->need_empty_fragments = 1; |
| 492 | |||
| 493 | if (s->session->cipher != NULL) | ||
| 494 | { | ||
| 495 | if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_eNULL) | ||
| 496 | s->s3->need_empty_fragments = 0; | ||
| 497 | |||
| 498 | #ifndef OPENSSL_NO_RC4 | ||
| 499 | if ((s->session->cipher->algorithms & SSL_ENC_MASK) == SSL_RC4) | ||
| 500 | s->s3->need_empty_fragments = 0; | ||
| 492 | #endif | 501 | #endif |
| 493 | 502 | } | |
| 503 | } | ||
| 504 | |||
| 494 | return(1); | 505 | return(1); |
| 495 | err: | 506 | err: |
| 496 | SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,ERR_R_MALLOC_FAILURE); | 507 | SSLerr(SSL_F_TLS1_SETUP_KEY_BLOCK,ERR_R_MALLOC_FAILURE); |
diff --git a/src/lib/libssl/t1_srvr.c b/src/lib/libssl/t1_srvr.c index 996b7ca8e2..6e765e587f 100644 --- a/src/lib/libssl/t1_srvr.c +++ b/src/lib/libssl/t1_srvr.c | |||
| @@ -57,12 +57,12 @@ | |||
| 57 | */ | 57 | */ |
| 58 | 58 | ||
| 59 | #include <stdio.h> | 59 | #include <stdio.h> |
| 60 | #include "ssl_locl.h" | ||
| 60 | #include <openssl/buffer.h> | 61 | #include <openssl/buffer.h> |
| 61 | #include <openssl/rand.h> | 62 | #include <openssl/rand.h> |
| 62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 63 | #include <openssl/evp.h> | 64 | #include <openssl/evp.h> |
| 64 | #include <openssl/x509.h> | 65 | #include <openssl/x509.h> |
| 65 | #include "ssl_locl.h" | ||
| 66 | 66 | ||
| 67 | static SSL_METHOD *tls1_get_server_method(int ver); | 67 | static SSL_METHOD *tls1_get_server_method(int ver); |
| 68 | static SSL_METHOD *tls1_get_server_method(int ver) | 68 | static SSL_METHOD *tls1_get_server_method(int ver) |
diff --git a/src/lib/libssl/test/Makefile.ssl b/src/lib/libssl/test/Makefile.ssl index 49f2cc9a23..c1408021ba 100644 --- a/src/lib/libssl/test/Makefile.ssl +++ b/src/lib/libssl/test/Makefile.ssl | |||
| @@ -94,7 +94,7 @@ top: | |||
| 94 | 94 | ||
| 95 | all: exe | 95 | all: exe |
| 96 | 96 | ||
| 97 | exe: $(EXE) | 97 | exe: $(EXE) dummytest |
| 98 | 98 | ||
| 99 | files: | 99 | files: |
| 100 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | 100 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO |
| @@ -102,6 +102,10 @@ files: | |||
| 102 | links: | 102 | links: |
| 103 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | 103 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile |
| 104 | 104 | ||
| 105 | generate: $(SRC) | ||
| 106 | $(SRC): | ||
| 107 | @sh $(TOP)/util/point.sh dummytest.c $@ | ||
| 108 | |||
| 105 | errors: | 109 | errors: |
| 106 | 110 | ||
| 107 | install: | 111 | install: |
| @@ -112,11 +116,11 @@ tags: | |||
| 112 | tests: exe apps $(TESTS) | 116 | tests: exe apps $(TESTS) |
| 113 | 117 | ||
| 114 | apps: | 118 | apps: |
| 115 | @(cd ../apps; $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' all) | 119 | @(cd ../apps; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}' all) |
| 116 | 120 | ||
| 117 | alltests: | 121 | alltests: |
| 118 | (LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH=$$LIBPATH; SHLIB_PATH=$$LIBPATH; \ | 122 | (LIBPATH="`cd ..; pwd`"; LD_LIBRARY_PATH=$$LIBPATH; DYLD_LIBRARY_PATH=$$LIBPATH; SHLIB_PATH=$$LIBPATH; \ |
| 119 | export LD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ | 123 | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH; \ |
| 120 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' alltests.chooser) | 124 | $(MAKE) CC='${CC}' CFLAG='${CFLAG}' INSTALLTOP='${INSTALLTOP}' PEX_LIBS='${PEX_LIBS}' EX_LIBS='${EX_LIBS}' alltests.chooser) |
| 121 | alltests.chooser: \ | 125 | alltests.chooser: \ |
| 122 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | 126 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ |
| @@ -263,7 +267,7 @@ lint: | |||
| 263 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 267 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| 264 | 268 | ||
| 265 | depend: | 269 | depend: |
| 266 | $(MAKEDEPEND) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) | 270 | $(MAKEDEPEND) $(CFLAG) $(INCLUDES) $(DEPFLAG) $(PROGS) $(SRC) |
| 267 | 271 | ||
| 268 | dclean: | 272 | dclean: |
| 269 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 273 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| @@ -273,10 +277,10 @@ clean: | |||
| 273 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log | 277 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log |
| 274 | 278 | ||
| 275 | $(DLIBSSL): | 279 | $(DLIBSSL): |
| 276 | (cd ../ssl; $(MAKE)) | 280 | (cd ../ssl; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}') |
| 277 | 281 | ||
| 278 | $(DLIBCRYPTO): | 282 | $(DLIBCRYPTO): |
| 279 | (cd ../crypto; $(MAKE)) | 283 | (cd ../crypto; $(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}' BF_ENC='${BF_ENC}' CAST_ENC='${CAST_ENC}' RC4_ENC='${RC4_ENC}' RC5_ENC='${RC5_ENC}' SHA1_ASM_OBJ='${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}') |
| 280 | 284 | ||
| 281 | $(RSATEST): $(RSATEST).o $(DLIBCRYPTO) | 285 | $(RSATEST): $(RSATEST).o $(DLIBCRYPTO) |
| 282 | $(CC) -o $(RSATEST) $(CFLAGS) $(RSATEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 286 | $(CC) -o $(RSATEST) $(CFLAGS) $(RSATEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| @@ -362,22 +366,33 @@ $(EVPTEST): $(EVPTEST).o $(DLIBCRYPTO) | |||
| 362 | #$(RDTEST): $(RDTEST).o $(DLIBCRYPTO) | 366 | #$(RDTEST): $(RDTEST).o $(DLIBCRYPTO) |
| 363 | # $(CC) -o $(RDTEST) $(CFLAGS) $(RDTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | 367 | # $(CC) -o $(RDTEST) $(CFLAGS) $(RDTEST).o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) |
| 364 | 368 | ||
| 369 | dummytest: dummytest.o $(DLIBCRYPTO) | ||
| 370 | $(CC) -o dummytest $(CFLAGS) dummytest.o $(PEX_LIBS) $(LIBCRYPTO) $(EX_LIBS) | ||
| 371 | |||
| 365 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 372 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 366 | 373 | ||
| 367 | bftest.o: ../include/openssl/blowfish.h ../include/openssl/e_os2.h | 374 | bftest.o: ../include/openssl/blowfish.h ../include/openssl/e_os2.h |
| 368 | bftest.o: ../include/openssl/opensslconf.h bftest.c | 375 | bftest.o: ../include/openssl/opensslconf.h bftest.c |
| 369 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 376 | bntest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h |
| 377 | bntest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 370 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 378 | bntest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 371 | bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 379 | bntest.o: ../include/openssl/cast.h ../include/openssl/crypto.h |
| 372 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 380 | bntest.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| 373 | bntest.o: ../include/openssl/err.h ../include/openssl/evp.h | 381 | bntest.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 374 | bntest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 382 | bntest.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| 383 | bntest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 384 | bntest.o: ../include/openssl/lhash.h ../include/openssl/md2.h | ||
| 385 | bntest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 386 | bntest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 375 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 387 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 376 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 388 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 377 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 389 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 390 | bntest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 391 | bntest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 378 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 392 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 379 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 393 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h |
| 380 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | 394 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h |
| 395 | bntest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h | ||
| 381 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | 396 | bntest.o: ../include/openssl/x509_vfy.h bntest.c |
| 382 | casttest.o: ../include/openssl/cast.h casttest.c | 397 | casttest.o: ../include/openssl/cast.h casttest.c |
| 383 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h | 398 | destest.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| @@ -424,18 +439,26 @@ enginetest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | |||
| 424 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 439 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 425 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 440 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h |
| 426 | enginetest.o: enginetest.c | 441 | enginetest.o: enginetest.c |
| 427 | evp_test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 442 | evp_test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 428 | evp_test.o: ../include/openssl/bn.h ../include/openssl/conf.h | 443 | evp_test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 429 | evp_test.o: ../include/openssl/crypto.h ../include/openssl/dh.h | 444 | evp_test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 430 | evp_test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 445 | evp_test.o: ../include/openssl/conf.h ../include/openssl/crypto.h |
| 431 | evp_test.o: ../include/openssl/engine.h ../include/openssl/err.h | 446 | evp_test.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| 432 | evp_test.o: ../include/openssl/evp.h ../include/openssl/lhash.h | 447 | evp_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| 448 | evp_test.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | ||
| 449 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 450 | evp_test.o: ../include/openssl/idea.h ../include/openssl/lhash.h | ||
| 451 | evp_test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 452 | evp_test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 433 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 453 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 434 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 454 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 435 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 455 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
| 456 | evp_test.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 457 | evp_test.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 436 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 458 | evp_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 437 | evp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 459 | evp_test.o: ../include/openssl/sha.h ../include/openssl/stack.h |
| 438 | evp_test.o: ../include/openssl/ui.h evp_test.c | 460 | evp_test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h |
| 461 | evp_test.o: ../include/openssl/ui_compat.h evp_test.c | ||
| 439 | exptest.o: ../include/openssl/bio.h ../include/openssl/bn.h | 462 | exptest.o: ../include/openssl/bio.h ../include/openssl/bn.h |
| 440 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 463 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 441 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | 464 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h |
| @@ -443,62 +466,116 @@ exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
| 443 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 466 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
| 444 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 467 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 445 | exptest.o: ../include/openssl/symhacks.h exptest.c | 468 | exptest.o: ../include/openssl/symhacks.h exptest.c |
| 446 | hmactest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 469 | hmactest.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 447 | hmactest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 470 | hmactest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 448 | hmactest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 471 | hmactest.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 449 | hmactest.o: ../include/openssl/hmac.h ../include/openssl/md5.h | 472 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 450 | hmactest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 473 | hmactest.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 451 | hmactest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 474 | hmactest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 452 | hmactest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 475 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
| 453 | hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h hmactest.c | 476 | hmactest.o: ../include/openssl/idea.h ../include/openssl/md2.h |
| 477 | hmactest.o: ../include/openssl/md4.h ../include/openssl/md5.h | ||
| 478 | hmactest.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | ||
| 479 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 480 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 481 | hmactest.o: ../include/openssl/rc2.h ../include/openssl/rc4.h | ||
| 482 | hmactest.o: ../include/openssl/rc5.h ../include/openssl/ripemd.h | ||
| 483 | hmactest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 484 | hmactest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 485 | hmactest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 486 | hmactest.o: ../include/openssl/ui_compat.h hmactest.c | ||
| 454 | ideatest.o: ../include/openssl/idea.h ../include/openssl/opensslconf.h | 487 | ideatest.o: ../include/openssl/idea.h ../include/openssl/opensslconf.h |
| 455 | ideatest.o: ideatest.c | 488 | ideatest.o: ideatest.c |
| 456 | md2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 489 | md2test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 457 | md2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 490 | md2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 458 | md2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 491 | md2test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 459 | md2test.o: ../include/openssl/md2.h ../include/openssl/obj_mac.h | 492 | md2test.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 460 | md2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 493 | md2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 461 | md2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 494 | md2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 462 | md2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 495 | md2test.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 463 | md2test.o: ../include/openssl/symhacks.h md2test.c | 496 | md2test.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 464 | md4test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 497 | md2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 465 | md4test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 498 | md2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 466 | md4test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 499 | md2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 467 | md4test.o: ../include/openssl/md4.h ../include/openssl/obj_mac.h | 500 | md2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 468 | md4test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 501 | md2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 469 | md4test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 502 | md2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 470 | md4test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 503 | md2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 471 | md4test.o: ../include/openssl/symhacks.h md4test.c | 504 | md2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 472 | md5test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 505 | md2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md2test.c |
| 473 | md5test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 506 | md4test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 474 | md5test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 507 | md4test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 475 | md5test.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | 508 | md4test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 476 | md5test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 509 | md4test.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 477 | md5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 510 | md4test.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 478 | md5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 511 | md4test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 479 | md5test.o: ../include/openssl/symhacks.h md5test.c | 512 | md4test.o: ../include/openssl/evp.h ../include/openssl/idea.h |
| 480 | mdc2test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 513 | md4test.o: ../include/openssl/md2.h ../include/openssl/md4.h |
| 481 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 514 | md4test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h |
| 482 | mdc2test.o: ../include/openssl/des.h ../include/openssl/des_old.h | 515 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 483 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 516 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 484 | mdc2test.o: ../include/openssl/mdc2.h ../include/openssl/obj_mac.h | 517 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 485 | mdc2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 518 | md4test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 486 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 519 | md4test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 487 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 520 | md4test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 488 | mdc2test.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | 521 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 489 | mdc2test.o: ../include/openssl/ui_compat.h mdc2test.c | 522 | md4test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md4test.c |
| 523 | md5test.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 524 | md5test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 525 | md5test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 526 | md5test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 527 | md5test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 528 | md5test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 529 | md5test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 530 | md5test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 531 | md5test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 532 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 533 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 534 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 535 | md5test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 536 | md5test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 537 | md5test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 538 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 539 | md5test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h md5test.c | ||
| 540 | mdc2test.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 541 | mdc2test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 542 | mdc2test.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 543 | mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 544 | mdc2test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 545 | mdc2test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 546 | mdc2test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 547 | mdc2test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 548 | mdc2test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 549 | mdc2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 550 | mdc2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 551 | mdc2test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h | ||
| 552 | mdc2test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 553 | mdc2test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 554 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 555 | mdc2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 556 | mdc2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h mdc2test.c | ||
| 557 | randtest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | ||
| 490 | randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h randtest.c | 558 | randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h randtest.c |
| 491 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c | 559 | rc2test.o: ../include/openssl/opensslconf.h ../include/openssl/rc2.h rc2test.c |
| 492 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c | 560 | rc4test.o: ../include/openssl/opensslconf.h ../include/openssl/rc4.h rc4test.c |
| 493 | rc5test.o: ../include/openssl/rc5.h rc5test.c | 561 | rc5test.o: ../include/openssl/rc5.h rc5test.c |
| 494 | rmdtest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 562 | rmdtest.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 495 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 563 | rmdtest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 496 | rmdtest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 564 | rmdtest.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 565 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 566 | rmdtest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 567 | rmdtest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 568 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 569 | rmdtest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 570 | rmdtest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 497 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 571 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 498 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 572 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 499 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/ripemd.h | 573 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 500 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 574 | rmdtest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 501 | rmdtest.o: ../include/openssl/symhacks.h rmdtest.c | 575 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 576 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 577 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 578 | rmdtest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h rmdtest.c | ||
| 502 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 579 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 503 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 580 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
| 504 | rsa_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 581 | rsa_test.o: ../include/openssl/dh.h ../include/openssl/dsa.h |
| @@ -509,37 +586,63 @@ rsa_test.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | |||
| 509 | rsa_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 586 | rsa_test.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 510 | rsa_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 587 | rsa_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 511 | rsa_test.o: ../include/openssl/ui.h rsa_test.c | 588 | rsa_test.o: ../include/openssl/ui.h rsa_test.c |
| 512 | sha1test.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 589 | sha1test.o: ../include/openssl/aes.h ../include/openssl/asn1.h |
| 513 | sha1test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 590 | sha1test.o: ../include/openssl/bio.h ../include/openssl/blowfish.h |
| 514 | sha1test.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 591 | sha1test.o: ../include/openssl/bn.h ../include/openssl/cast.h |
| 592 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 593 | sha1test.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 594 | sha1test.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 595 | sha1test.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 596 | sha1test.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 597 | sha1test.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 515 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 598 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 516 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 599 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 517 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 600 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 518 | sha1test.o: ../include/openssl/sha.h ../include/openssl/stack.h | 601 | sha1test.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 519 | sha1test.o: ../include/openssl/symhacks.h sha1test.c | 602 | sha1test.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 520 | shatest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 603 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 521 | shatest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 604 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 522 | shatest.o: ../include/openssl/e_os2.h ../include/openssl/evp.h | 605 | sha1test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h sha1test.c |
| 606 | shatest.o: ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 607 | shatest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 608 | shatest.o: ../include/openssl/bn.h ../include/openssl/cast.h | ||
| 609 | shatest.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 610 | shatest.o: ../include/openssl/des_old.h ../include/openssl/dh.h | ||
| 611 | shatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 612 | shatest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 613 | shatest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 614 | shatest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 523 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 615 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 524 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 616 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 525 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 617 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/rc2.h |
| 526 | shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 618 | shatest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h |
| 527 | shatest.o: ../include/openssl/symhacks.h shatest.c | 619 | shatest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h |
| 528 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 620 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 621 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 622 | shatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h shatest.c | ||
| 623 | ssltest.o: ../e_os.h ../include/openssl/aes.h ../include/openssl/asn1.h | ||
| 624 | ssltest.o: ../include/openssl/bio.h ../include/openssl/blowfish.h | ||
| 529 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 625 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 530 | ssltest.o: ../include/openssl/comp.h ../include/openssl/crypto.h | 626 | ssltest.o: ../include/openssl/cast.h ../include/openssl/comp.h |
| 531 | ssltest.o: ../include/openssl/dh.h ../include/openssl/dsa.h | 627 | ssltest.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 532 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/engine.h | 628 | ssltest.o: ../include/openssl/des_old.h ../include/openssl/dh.h |
| 533 | ssltest.o: ../include/openssl/err.h ../include/openssl/evp.h | 629 | ssltest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 630 | ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h | ||
| 631 | ssltest.o: ../include/openssl/evp.h ../include/openssl/idea.h | ||
| 534 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h | 632 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 633 | ssltest.o: ../include/openssl/md2.h ../include/openssl/md4.h | ||
| 634 | ssltest.o: ../include/openssl/md5.h ../include/openssl/mdc2.h | ||
| 535 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 635 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 536 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 636 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 537 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h | 637 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 538 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h | 638 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 539 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rsa.h | 639 | ssltest.o: ../include/openssl/rand.h ../include/openssl/rc2.h |
| 640 | ssltest.o: ../include/openssl/rc4.h ../include/openssl/rc5.h | ||
| 641 | ssltest.o: ../include/openssl/ripemd.h ../include/openssl/rsa.h | ||
| 540 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 642 | ssltest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 541 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h | 643 | ssltest.o: ../include/openssl/ssl.h ../include/openssl/ssl2.h |
| 542 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h | 644 | ssltest.o: ../include/openssl/ssl23.h ../include/openssl/ssl3.h |
| 543 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 645 | ssltest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 544 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h | 646 | ssltest.o: ../include/openssl/tls1.h ../include/openssl/ui.h |
| 545 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ssltest.c | 647 | ssltest.o: ../include/openssl/ui_compat.h ../include/openssl/x509.h |
| 648 | ssltest.o: ../include/openssl/x509_vfy.h ssltest.c | ||
diff --git a/src/lib/libssl/test/maketests.com b/src/lib/libssl/test/maketests.com index f7ff8fe407..b3bf8bb837 100644 --- a/src/lib/libssl/test/maketests.com +++ b/src/lib/libssl/test/maketests.com | |||
| @@ -910,7 +910,8 @@ $ ENDIF | |||
| 910 | $! | 910 | $! |
| 911 | $! Time to check the contents, and to make sure we get the correct library. | 911 | $! Time to check the contents, and to make sure we get the correct library. |
| 912 | $! | 912 | $! |
| 913 | $ IF P4.EQS."SOCKETSHR" .OR. P4.EQS."MULTINET" .OR. P4.EQS."UCX" | 913 | $ IF P4.EQS."SOCKETSHR" .OR. P4.EQS."MULTINET" .OR. P4.EQS."UCX" - |
| 914 | .OR. P4.EQS."TCPIP" .OR. P4.EQS."NONE" | ||
| 914 | $ THEN | 915 | $ THEN |
| 915 | $! | 916 | $! |
| 916 | $! Check to see if SOCKETSHR was chosen | 917 | $! Check to see if SOCKETSHR was chosen |
| @@ -959,6 +960,32 @@ $! Done with UCX | |||
| 959 | $! | 960 | $! |
| 960 | $ ENDIF | 961 | $ ENDIF |
| 961 | $! | 962 | $! |
| 963 | $! Check to see if TCPIP was chosen | ||
| 964 | $! | ||
| 965 | $ IF P4.EQS."TCPIP" | ||
| 966 | $ THEN | ||
| 967 | $! | ||
| 968 | $! Set the library to use TCPIP (post UCX). | ||
| 969 | $! | ||
| 970 | $ TCPIP_LIB = "SYS$DISK:[-.VMS]TCPIP_SHR_DECC.OPT/OPT" | ||
| 971 | $! | ||
| 972 | $! Done with TCPIP | ||
| 973 | $! | ||
| 974 | $ ENDIF | ||
| 975 | $! | ||
| 976 | $! Check to see if NONE was chosen | ||
| 977 | $! | ||
| 978 | $ IF P4.EQS."NONE" | ||
| 979 | $ THEN | ||
| 980 | $! | ||
| 981 | $! Do not use a TCPIP library. | ||
| 982 | $! | ||
| 983 | $ TCPIP_LIB = "" | ||
| 984 | $! | ||
| 985 | $! Done with NONE | ||
| 986 | $! | ||
| 987 | $ ENDIF | ||
| 988 | $! | ||
| 962 | $! Print info | 989 | $! Print info |
| 963 | $! | 990 | $! |
| 964 | $ WRITE SYS$OUTPUT "TCP/IP library spec: ", TCPIP_LIB | 991 | $ WRITE SYS$OUTPUT "TCP/IP library spec: ", TCPIP_LIB |
| @@ -974,6 +1001,7 @@ $ WRITE SYS$OUTPUT "The Option ",P4," Is Invalid. The Valid Options Are:" | |||
| 974 | $ WRITE SYS$OUTPUT "" | 1001 | $ WRITE SYS$OUTPUT "" |
| 975 | $ WRITE SYS$OUTPUT " SOCKETSHR : To link with SOCKETSHR TCP/IP library." | 1002 | $ WRITE SYS$OUTPUT " SOCKETSHR : To link with SOCKETSHR TCP/IP library." |
| 976 | $ WRITE SYS$OUTPUT " UCX : To link with UCX TCP/IP library." | 1003 | $ WRITE SYS$OUTPUT " UCX : To link with UCX TCP/IP library." |
| 1004 | $ WRITE SYS$OUTPUT " TCPIP : To link with TCPIP (post UCX) TCP/IP library." | ||
| 977 | $ WRITE SYS$OUTPUT "" | 1005 | $ WRITE SYS$OUTPUT "" |
| 978 | $! | 1006 | $! |
| 979 | $! Time To EXIT. | 1007 | $! Time To EXIT. |
diff --git a/src/lib/libssl/test/tcrl b/src/lib/libssl/test/tcrl index acaf8f3c47..f71ef7a863 100644 --- a/src/lib/libssl/test/tcrl +++ b/src/lib/libssl/test/tcrl | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl crl' | 10 | cmd='../apps/openssl crl' |
diff --git a/src/lib/libssl/test/testca b/src/lib/libssl/test/testca index 88c186b6ab..8215ebb5d1 100644 --- a/src/lib/libssl/test/testca +++ b/src/lib/libssl/test/testca | |||
| @@ -1,7 +1,11 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | SH="/bin/sh" | 3 | SH="/bin/sh" |
| 4 | PATH=../apps:$PATH | 4 | if test "$OSTYPE" = msdosdjgpp; then |
| 5 | PATH=./apps\;../apps\;$PATH | ||
| 6 | else | ||
| 7 | PATH=../apps:$PATH | ||
| 8 | fi | ||
| 5 | export SH PATH | 9 | export SH PATH |
| 6 | 10 | ||
| 7 | SSLEAY_CONFIG="-config CAss.cnf" | 11 | SSLEAY_CONFIG="-config CAss.cnf" |
diff --git a/src/lib/libssl/test/testgen b/src/lib/libssl/test/testgen index 6a4b6b9221..55c496f4bc 100644 --- a/src/lib/libssl/test/testgen +++ b/src/lib/libssl/test/testgen | |||
| @@ -6,7 +6,11 @@ CA=../certs/testca.pem | |||
| 6 | 6 | ||
| 7 | /bin/rm -f $T.1 $T.2 $T.key | 7 | /bin/rm -f $T.1 $T.2 $T.key |
| 8 | 8 | ||
| 9 | PATH=../apps:$PATH; | 9 | if test "$OSTYPE" = msdosdjgpp; then |
| 10 | PATH=../apps\;$PATH; | ||
| 11 | else | ||
| 12 | PATH=../apps:$PATH; | ||
| 13 | fi | ||
| 10 | export PATH | 14 | export PATH |
| 11 | 15 | ||
| 12 | echo "generating certificate request" | 16 | echo "generating certificate request" |
diff --git a/src/lib/libssl/test/tpkcs7 b/src/lib/libssl/test/tpkcs7 index 15bbba42c0..cf3bd9fadb 100644 --- a/src/lib/libssl/test/tpkcs7 +++ b/src/lib/libssl/test/tpkcs7 | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl pkcs7' | 10 | cmd='../apps/openssl pkcs7' |
diff --git a/src/lib/libssl/test/tpkcs7d b/src/lib/libssl/test/tpkcs7d index 46e5aa2bd6..18f9311b06 100644 --- a/src/lib/libssl/test/tpkcs7d +++ b/src/lib/libssl/test/tpkcs7d | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl pkcs7' | 10 | cmd='../apps/openssl pkcs7' |
diff --git a/src/lib/libssl/test/treq b/src/lib/libssl/test/treq index 9f5eb7eea5..47a8273cde 100644 --- a/src/lib/libssl/test/treq +++ b/src/lib/libssl/test/treq | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl req -config ../apps/openssl.cnf' | 10 | cmd='../apps/openssl req -config ../apps/openssl.cnf' |
diff --git a/src/lib/libssl/test/trsa b/src/lib/libssl/test/trsa index bd6c07650a..413e2ec0a0 100644 --- a/src/lib/libssl/test/trsa +++ b/src/lib/libssl/test/trsa | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | if ../apps/openssl no-rsa; then | 10 | if ../apps/openssl no-rsa; then |
diff --git a/src/lib/libssl/test/tsid b/src/lib/libssl/test/tsid index 9e0854516c..40a1dfa97c 100644 --- a/src/lib/libssl/test/tsid +++ b/src/lib/libssl/test/tsid | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl sess_id' | 10 | cmd='../apps/openssl sess_id' |
diff --git a/src/lib/libssl/test/tx509 b/src/lib/libssl/test/tx509 index 35169f3a43..d380963abc 100644 --- a/src/lib/libssl/test/tx509 +++ b/src/lib/libssl/test/tx509 | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | #!/bin/sh | 1 | #!/bin/sh |
| 2 | 2 | ||
| 3 | PATH=../apps:$PATH | 3 | if test "$OSTYPE" = msdosdjgpp; then |
| 4 | PATH=../apps\;$PATH | ||
| 5 | else | ||
| 6 | PATH=../apps:$PATH | ||
| 7 | fi | ||
| 4 | export PATH | 8 | export PATH |
| 5 | 9 | ||
| 6 | cmd='../apps/openssl x509' | 10 | cmd='../apps/openssl x509' |
diff --git a/src/lib/libssl/tls1.h b/src/lib/libssl/tls1.h index 88ec5fb527..38838ea9a5 100644 --- a/src/lib/libssl/tls1.h +++ b/src/lib/libssl/tls1.h | |||
| @@ -96,7 +96,7 @@ extern "C" { | |||
| 96 | #define TLS1_CK_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA 0x03000065 | 96 | #define TLS1_CK_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA 0x03000065 |
| 97 | #define TLS1_CK_DHE_DSS_WITH_RC4_128_SHA 0x03000066 | 97 | #define TLS1_CK_DHE_DSS_WITH_RC4_128_SHA 0x03000066 |
| 98 | 98 | ||
| 99 | /* AES ciphersuites from draft ietf-tls-ciphersuite-03.txt */ | 99 | /* AES ciphersuites from RFC3268 */ |
| 100 | 100 | ||
| 101 | #define TLS1_CK_RSA_WITH_AES_128_SHA 0x0300002F | 101 | #define TLS1_CK_RSA_WITH_AES_128_SHA 0x0300002F |
| 102 | #define TLS1_CK_DH_DSS_WITH_AES_128_SHA 0x03000030 | 102 | #define TLS1_CK_DH_DSS_WITH_AES_128_SHA 0x03000030 |
| @@ -126,20 +126,21 @@ extern "C" { | |||
| 126 | #define TLS1_TXT_RSA_EXPORT1024_WITH_RC4_56_SHA "EXP1024-RC4-SHA" | 126 | #define TLS1_TXT_RSA_EXPORT1024_WITH_RC4_56_SHA "EXP1024-RC4-SHA" |
| 127 | #define TLS1_TXT_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA "EXP1024-DHE-DSS-RC4-SHA" | 127 | #define TLS1_TXT_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA "EXP1024-DHE-DSS-RC4-SHA" |
| 128 | #define TLS1_TXT_DHE_DSS_WITH_RC4_128_SHA "DHE-DSS-RC4-SHA" | 128 | #define TLS1_TXT_DHE_DSS_WITH_RC4_128_SHA "DHE-DSS-RC4-SHA" |
| 129 | /* AES ciphersuites from draft-ietf-tls-ciphersuite-06.txt */ | 129 | |
| 130 | #define TLS1_TXT_RSA_WITH_AES_128_SHA "AESdraft128-SHA" | 130 | /* AES ciphersuites from RFC3268 */ |
| 131 | #define TLS1_TXT_DH_DSS_WITH_AES_128_SHA "DH-DSS-AESdraft128-SHA" | 131 | #define TLS1_TXT_RSA_WITH_AES_128_SHA "AES128-SHA" |
| 132 | #define TLS1_TXT_DH_RSA_WITH_AES_128_SHA "DH-RSA-AESdraft128-SHA" | 132 | #define TLS1_TXT_DH_DSS_WITH_AES_128_SHA "DH-DSS-AES128-SHA" |
| 133 | #define TLS1_TXT_DHE_DSS_WITH_AES_128_SHA "DHE-DSS-AESdraft128-SHA" | 133 | #define TLS1_TXT_DH_RSA_WITH_AES_128_SHA "DH-RSA-AES128-SHA" |
| 134 | #define TLS1_TXT_DHE_RSA_WITH_AES_128_SHA "DHE-RSA-AESdraft128-SHA" | 134 | #define TLS1_TXT_DHE_DSS_WITH_AES_128_SHA "DHE-DSS-AES128-SHA" |
| 135 | #define TLS1_TXT_ADH_WITH_AES_128_SHA "ADH-AESdraft128-SHA" | 135 | #define TLS1_TXT_DHE_RSA_WITH_AES_128_SHA "DHE-RSA-AES128-SHA" |
| 136 | 136 | #define TLS1_TXT_ADH_WITH_AES_128_SHA "ADH-AES128-SHA" | |
| 137 | #define TLS1_TXT_RSA_WITH_AES_256_SHA "AESdraft256-SHA" | 137 | |
| 138 | #define TLS1_TXT_DH_DSS_WITH_AES_256_SHA "DH-DSS-AESdraft256-SHA" | 138 | #define TLS1_TXT_RSA_WITH_AES_256_SHA "AES256-SHA" |
| 139 | #define TLS1_TXT_DH_RSA_WITH_AES_256_SHA "DH-RSA-AESdraft256-SHA" | 139 | #define TLS1_TXT_DH_DSS_WITH_AES_256_SHA "DH-DSS-AES256-SHA" |
| 140 | #define TLS1_TXT_DHE_DSS_WITH_AES_256_SHA "DHE-DSS-AESdraft256-SHA" | 140 | #define TLS1_TXT_DH_RSA_WITH_AES_256_SHA "DH-RSA-AES256-SHA" |
| 141 | #define TLS1_TXT_DHE_RSA_WITH_AES_256_SHA "DHE-RSA-AESdraft256-SHA" | 141 | #define TLS1_TXT_DHE_DSS_WITH_AES_256_SHA "DHE-DSS-AES256-SHA" |
| 142 | #define TLS1_TXT_ADH_WITH_AES_256_SHA "ADH-AESdraft256-SHA" | 142 | #define TLS1_TXT_DHE_RSA_WITH_AES_256_SHA "DHE-RSA-AES256-SHA" |
| 143 | #define TLS1_TXT_ADH_WITH_AES_256_SHA "ADH-AES256-SHA" | ||
| 143 | 144 | ||
| 144 | 145 | ||
| 145 | #define TLS_CT_RSA_SIGN 1 | 146 | #define TLS_CT_RSA_SIGN 1 |
