diff options
Diffstat (limited to '')
117 files changed, 3985 insertions, 1733 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))) { |
