diff options
| author | djm <> | 2010-10-01 22:59:01 +0000 |
|---|---|---|
| committer | djm <> | 2010-10-01 22:59:01 +0000 |
| commit | 8922d4bc4a8b8893d72a48deb2cdf58215f98505 (patch) | |
| tree | 939b752540947d33507b3acc48d76a8bfb7c3dc3 /src/lib/libssl/test/Makefile | |
| parent | 76262f7bf9262f965142b1b2b2105cb279c5c696 (diff) | |
| download | openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.gz openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.bz2 openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.zip | |
resolve conflicts, fix local changes
Diffstat (limited to 'src/lib/libssl/test/Makefile')
| -rw-r--r-- | src/lib/libssl/test/Makefile | 537 |
1 files changed, 147 insertions, 390 deletions
diff --git a/src/lib/libssl/test/Makefile b/src/lib/libssl/test/Makefile index 228ee368cd..3912f82427 100644 --- a/src/lib/libssl/test/Makefile +++ b/src/lib/libssl/test/Makefile | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | DIR= test | 5 | DIR= test |
| 6 | TOP= .. | 6 | TOP= .. |
| 7 | CC= cc | 7 | CC= cc |
| 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) -I$(TOP)/fips | 8 | INCLUDES= -I$(TOP) -I../include $(KRB5_INCLUDES) |
| 9 | CFLAG= -g | 9 | CFLAG= -g |
| 10 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | 10 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) |
| 11 | PERL= perl | 11 | PERL= perl |
| @@ -27,7 +27,6 @@ DLIBCRYPTO= ../libcrypto.a | |||
| 27 | DLIBSSL= ../libssl.a | 27 | DLIBSSL= ../libssl.a |
| 28 | LIBCRYPTO= -L.. -lcrypto | 28 | LIBCRYPTO= -L.. -lcrypto |
| 29 | LIBSSL= -L.. -lssl | 29 | LIBSSL= -L.. -lssl |
| 30 | LIBFIPS= -L.. -lfips | ||
| 31 | 30 | ||
| 32 | BNTEST= bntest | 31 | BNTEST= bntest |
| 33 | ECTEST= ectest | 32 | ECTEST= ectest |
| @@ -45,6 +44,7 @@ MD2TEST= md2test | |||
| 45 | MD4TEST= md4test | 44 | MD4TEST= md4test |
| 46 | MD5TEST= md5test | 45 | MD5TEST= md5test |
| 47 | HMACTEST= hmactest | 46 | HMACTEST= hmactest |
| 47 | WPTEST= wp_test | ||
| 48 | RC2TEST= rc2test | 48 | RC2TEST= rc2test |
| 49 | RC4TEST= rc4test | 49 | RC4TEST= rc4test |
| 50 | RC5TEST= rc5test | 50 | RC5TEST= rc5test |
| @@ -60,66 +60,40 @@ RSATEST= rsa_test | |||
| 60 | ENGINETEST= enginetest | 60 | ENGINETEST= enginetest |
| 61 | EVPTEST= evp_test | 61 | EVPTEST= evp_test |
| 62 | IGETEST= igetest | 62 | IGETEST= igetest |
| 63 | FIPS_SHATEST= fips_shatest | 63 | JPAKETEST= jpaketest |
| 64 | FIPS_DESTEST= fips_desmovs | 64 | ASN1TEST= asn1test |
| 65 | FIPS_RANDTEST= fips_randtest | ||
| 66 | FIPS_AESTEST= fips_aesavs | ||
| 67 | FIPS_HMACTEST= fips_hmactest | ||
| 68 | FIPS_RSAVTEST= fips_rsavtest | ||
| 69 | FIPS_RSASTEST= fips_rsastest | ||
| 70 | FIPS_RSAGTEST= fips_rsagtest | ||
| 71 | FIPS_DSATEST= fips_dsatest | ||
| 72 | FIPS_DSSVS= fips_dssvs | ||
| 73 | FIPS_RNGVS= fips_rngvs | ||
| 74 | FIPS_TEST_SUITE=fips_test_suite | ||
| 75 | 65 | ||
| 76 | TESTS= alltests | 66 | TESTS= alltests |
| 77 | 67 | ||
| 78 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \ | 68 | EXE= $(BNTEST)$(EXE_EXT) $(ECTEST)$(EXE_EXT) $(ECDSATEST)$(EXE_EXT) $(ECDHTEST)$(EXE_EXT) $(IDEATEST)$(EXE_EXT) \ |
| 79 | $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) \ | 69 | $(MD2TEST)$(EXE_EXT) $(MD4TEST)$(EXE_EXT) $(MD5TEST)$(EXE_EXT) $(HMACTEST)$(EXE_EXT) $(WPTEST)$(EXE_EXT) \ |
| 80 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ | 70 | $(RC2TEST)$(EXE_EXT) $(RC4TEST)$(EXE_EXT) $(RC5TEST)$(EXE_EXT) \ |
| 81 | $(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \ | 71 | $(DESTEST)$(EXE_EXT) $(SHATEST)$(EXE_EXT) $(SHA1TEST)$(EXE_EXT) $(SHA256TEST)$(EXE_EXT) $(SHA512TEST)$(EXE_EXT) \ |
| 82 | $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ | 72 | $(MDC2TEST)$(EXE_EXT) $(RMDTEST)$(EXE_EXT) \ |
| 83 | $(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ | 73 | $(RANDTEST)$(EXE_EXT) $(DHTEST)$(EXE_EXT) $(ENGINETEST)$(EXE_EXT) \ |
| 84 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ | 74 | $(BFTEST)$(EXE_EXT) $(CASTTEST)$(EXE_EXT) $(SSLTEST)$(EXE_EXT) $(EXPTEST)$(EXE_EXT) $(DSATEST)$(EXE_EXT) $(RSATEST)$(EXE_EXT) \ |
| 85 | $(EVPTEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) \ | 75 | $(EVPTEST)$(EXE_EXT) $(IGETEST)$(EXE_EXT) $(JPAKETEST)$(EXE_EXT) \ |
| 86 | $(FIPS_SHATEST)$(EXE_EXT) $(FIPS_DESTEST)$(EXE_EXT) \ | 76 | $(ASN1TEST)$(EXE_EXT) |
| 87 | $(FIPS_RANDTEST)$(EXE_EXT) $(FIPS_AESTEST)$(EXE_EXT) \ | ||
| 88 | $(FIPS_HMACTEST)$(EXE_EXT) $(FIPS_RSAVTEST)$(EXE_EXT) \ | ||
| 89 | $(FIPS_RSASTEST)$(EXE_EXT) $(FIPS_RSAGTEST)$(EXE_EXT) \ | ||
| 90 | $(FIPS_DSSVS)$(EXE_EXT) $(FIPS_DSATEST)$(EXE_EXT) \ | ||
| 91 | $(FIPS_RNGVS)$(EXE_EXT) $(FIPS_TEST_SUITE)$(EXE_EXT) jpaketest$(EXE_EXT) | ||
| 92 | 77 | ||
| 93 | # $(METHTEST)$(EXE_EXT) | 78 | # $(METHTEST)$(EXE_EXT) |
| 94 | 79 | ||
| 95 | OBJ= $(BNTEST).o $(ECTEST).o $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \ | 80 | OBJ= $(BNTEST).o $(ECTEST).o $(ECDSATEST).o $(ECDHTEST).o $(IDEATEST).o \ |
| 96 | $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ | 81 | $(MD2TEST).o $(MD4TEST).o $(MD5TEST).o \ |
| 97 | $(HMACTEST).o \ | 82 | $(HMACTEST).o $(WPTEST).o \ |
| 98 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ | 83 | $(RC2TEST).o $(RC4TEST).o $(RC5TEST).o \ |
| 99 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \ | 84 | $(DESTEST).o $(SHATEST).o $(SHA1TEST).o $(SHA256TEST).o $(SHA512TEST).o \ |
| 100 | $(MDC2TEST).o $(RMDTEST).o \ | 85 | $(MDC2TEST).o $(RMDTEST).o \ |
| 101 | $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ | 86 | $(RANDTEST).o $(DHTEST).o $(ENGINETEST).o $(CASTTEST).o \ |
| 102 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \ | 87 | $(BFTEST).o $(SSLTEST).o $(DSATEST).o $(EXPTEST).o $(RSATEST).o \ |
| 103 | $(EVPTEST).o $(IGETEST).o \ | 88 | $(EVPTEST).o $(IGETEST).o $(JPAKETEST).o $(ASN1TEST).o |
| 104 | $(FIPS_SHATEST).o $(FIPS_DESTEST).o $(FIPS_RANDTEST).o \ | ||
| 105 | $(FIPS_AESTEST).o $(FIPS_HMACTEST).o $(FIPS_RSAVTEST).o \ | ||
| 106 | $(FIPS_RSASTEST).o $(FIPS_RSAGTEST).o \ | ||
| 107 | $(FIPS_DSSVS).o $(FIPS_DSATEST).o $(FIPS_RNGVS).o $(FIPS_TEST_SUITE).o \ | ||
| 108 | jpaketest.o | ||
| 109 | |||
| 110 | SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \ | 89 | SRC= $(BNTEST).c $(ECTEST).c $(ECDSATEST).c $(ECDHTEST).c $(IDEATEST).c \ |
| 111 | $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ | 90 | $(MD2TEST).c $(MD4TEST).c $(MD5TEST).c \ |
| 112 | $(HMACTEST).c \ | 91 | $(HMACTEST).c $(WPTEST).c \ |
| 113 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ | 92 | $(RC2TEST).c $(RC4TEST).c $(RC5TEST).c \ |
| 114 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ | 93 | $(DESTEST).c $(SHATEST).c $(SHA1TEST).c $(MDC2TEST).c $(RMDTEST).c \ |
| 115 | $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ | 94 | $(RANDTEST).c $(DHTEST).c $(ENGINETEST).c $(CASTTEST).c \ |
| 116 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \ | 95 | $(BFTEST).c $(SSLTEST).c $(DSATEST).c $(EXPTEST).c $(RSATEST).c \ |
| 117 | $(EVPTEST).c $(IGETEST).c \ | 96 | $(EVPTEST).c $(IGETEST).c $(JPAKETEST).c $(ASN1TEST).c |
| 118 | $(FIPS_SHATEST).c $(FIPS_DESTEST).c $(FIPS_RANDTEST).c \ | ||
| 119 | $(FIPS_AESTEST).c $(FIPS_HMACTEST).c $(FIPS_RSAVTEST).c \ | ||
| 120 | $(FIPS_RSASTEST).c $(FIPS_RSAGTEST).c \ | ||
| 121 | $(FIPS_DSSVS).c $(FIPS_DSATEST).c $(FIPS_RNGVS).c $(FIPS_TEST_SUITE).c \ | ||
| 122 | jpaketest.c | ||
| 123 | 97 | ||
| 124 | EXHEADER= | 98 | EXHEADER= |
| 125 | HEADER= $(EXHEADER) | 99 | HEADER= $(EXHEADER) |
| @@ -156,12 +130,13 @@ apps: | |||
| 156 | 130 | ||
| 157 | alltests: \ | 131 | alltests: \ |
| 158 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ | 132 | test_des test_idea test_sha test_md4 test_md5 test_hmac \ |
| 159 | test_md2 test_mdc2 \ | 133 | test_md2 test_mdc2 test_wp \ |
| 160 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ | 134 | test_rmd test_rc2 test_rc4 test_rc5 test_bf test_cast test_aes \ |
| 161 | test_rand test_bn test_ec test_ecdsa test_ecdh \ | 135 | test_rand test_bn test_ec test_ecdsa test_ecdh \ |
| 162 | test_enc test_x509 test_rsa test_crl test_sid \ | 136 | test_enc test_x509 test_rsa test_crl test_sid \ |
| 163 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ | 137 | test_gen test_req test_pkcs7 test_verify test_dh test_dsa \ |
| 164 | test_ss test_ca test_engine test_evp test_ssl test_ige test_jpake | 138 | test_ss test_ca test_engine test_evp test_ssl test_tsa test_ige \ |
| 139 | test_jpake test_cms | ||
| 165 | 140 | ||
| 166 | test_evp: | 141 | test_evp: |
| 167 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt | 142 | ../util/shlib_wrap.sh ./$(EVPTEST) evptests.txt |
| @@ -177,9 +152,6 @@ test_sha: | |||
| 177 | ../util/shlib_wrap.sh ./$(SHA1TEST) | 152 | ../util/shlib_wrap.sh ./$(SHA1TEST) |
| 178 | ../util/shlib_wrap.sh ./$(SHA256TEST) | 153 | ../util/shlib_wrap.sh ./$(SHA256TEST) |
| 179 | ../util/shlib_wrap.sh ./$(SHA512TEST) | 154 | ../util/shlib_wrap.sh ./$(SHA512TEST) |
| 180 | if [ -n "$(FIPSCANLIB)" ]; then \ | ||
| 181 | ../util/shlib_wrap.sh ./$(FIPS_SHATEST) < SHAmix.r | diff -w SHAmix.x - ; \ | ||
| 182 | fi | ||
| 183 | 155 | ||
| 184 | test_mdc2: | 156 | test_mdc2: |
| 185 | ../util/shlib_wrap.sh ./$(MDC2TEST) | 157 | ../util/shlib_wrap.sh ./$(MDC2TEST) |
| @@ -193,6 +165,9 @@ test_md4: | |||
| 193 | test_hmac: | 165 | test_hmac: |
| 194 | ../util/shlib_wrap.sh ./$(HMACTEST) | 166 | ../util/shlib_wrap.sh ./$(HMACTEST) |
| 195 | 167 | ||
| 168 | test_wp: | ||
| 169 | ../util/shlib_wrap.sh ./$(WPTEST) | ||
| 170 | |||
| 196 | test_md2: | 171 | test_md2: |
| 197 | ../util/shlib_wrap.sh ./$(MD2TEST) | 172 | ../util/shlib_wrap.sh ./$(MD2TEST) |
| 198 | 173 | ||
| @@ -216,12 +191,9 @@ test_rc5: | |||
| 216 | 191 | ||
| 217 | test_rand: | 192 | test_rand: |
| 218 | ../util/shlib_wrap.sh ./$(RANDTEST) | 193 | ../util/shlib_wrap.sh ./$(RANDTEST) |
| 219 | if [ -n "$(FIPSCANLIB)" ]; then \ | ||
| 220 | ../util/shlib_wrap.sh ./$(FIPS_RANDTEST); \ | ||
| 221 | fi | ||
| 222 | 194 | ||
| 223 | test_enc: | 195 | test_enc: |
| 224 | sh ./testenc | 196 | @sh ./testenc |
| 225 | 197 | ||
| 226 | test_x509: | 198 | test_x509: |
| 227 | echo test normal x509v1 certificate | 199 | echo test normal x509v1 certificate |
| @@ -283,9 +255,6 @@ test_dsa: | |||
| 283 | @echo "Generate a set of DSA parameters" | 255 | @echo "Generate a set of DSA parameters" |
| 284 | ../util/shlib_wrap.sh ./$(DSATEST) | 256 | ../util/shlib_wrap.sh ./$(DSATEST) |
| 285 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 | 257 | ../util/shlib_wrap.sh ./$(DSATEST) -app2_1 |
| 286 | if [ -n "$(FIPSCANLIB)" ]; then \ | ||
| 287 | ../util/shlib_wrap.sh ./$(FIPS_DSATEST); \ | ||
| 288 | fi | ||
| 289 | 258 | ||
| 290 | test_gen: | 259 | test_gen: |
| 291 | @echo "Generate and verify a certificate request" | 260 | @echo "Generate and verify a certificate request" |
| @@ -305,9 +274,6 @@ test_engine: | |||
| 305 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ | 274 | test_ssl: keyU.ss certU.ss certCA.ss certP1.ss keyP1.ss certP2.ss keyP2.ss \ |
| 306 | intP1.ss intP2.ss | 275 | intP1.ss intP2.ss |
| 307 | @echo "test SSL protocol" | 276 | @echo "test SSL protocol" |
| 308 | @if [ -n "$(FIPSCANLIB)" ]; then \ | ||
| 309 | sh ./testfipsssl keyU.ss certU.ss certCA.ss; \ | ||
| 310 | fi | ||
| 311 | ../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist | 277 | ../util/shlib_wrap.sh ./$(SSLTEST) -test_cipherlist |
| 312 | @sh ./testssl keyU.ss certU.ss certCA.ss | 278 | @sh ./testssl keyU.ss certU.ss certCA.ss |
| 313 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss | 279 | @sh ./testsslproxy keyP1.ss certP1.ss intP1.ss |
| @@ -325,13 +291,24 @@ test_aes: #$(AESTEST) | |||
| 325 | # @echo "test Rijndael" | 291 | # @echo "test Rijndael" |
| 326 | # ../util/shlib_wrap.sh ./$(AESTEST) | 292 | # ../util/shlib_wrap.sh ./$(AESTEST) |
| 327 | 293 | ||
| 294 | test_tsa: | ||
| 295 | @if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then \ | ||
| 296 | echo "skipping testtsa test -- requires RSA"; \ | ||
| 297 | else \ | ||
| 298 | sh ./testtsa; \ | ||
| 299 | fi | ||
| 300 | |||
| 328 | test_ige: $(IGETEST)$(EXE_EXT) | 301 | test_ige: $(IGETEST)$(EXE_EXT) |
| 329 | @echo "Test IGE mode" | 302 | @echo "Test IGE mode" |
| 330 | ../util/shlib_wrap.sh ./$(IGETEST) | 303 | ../util/shlib_wrap.sh ./$(IGETEST) |
| 331 | 304 | ||
| 332 | test_jpake: jpaketest$(EXE_EXT) | 305 | test_jpake: $(JPAKETEST)$(EXE_EXT) |
| 333 | @echo "Test JPAKE" | 306 | @echo "Test JPAKE" |
| 334 | ../util/shlib_wrap.sh ./jpaketest | 307 | ../util/shlib_wrap.sh ./$(JPAKETEST) |
| 308 | |||
| 309 | test_cms: | ||
| 310 | @echo "CMS consistency test" | ||
| 311 | $(PERL) cms-test.pl | ||
| 335 | 312 | ||
| 336 | lint: | 313 | lint: |
| 337 | lint -DLINT $(INCLUDES) $(SRC)>fluff | 314 | lint -DLINT $(INCLUDES) $(SRC)>fluff |
| @@ -346,9 +323,11 @@ depend: | |||
| 346 | dclean: | 323 | dclean: |
| 347 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | 324 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new |
| 348 | mv -f Makefile.new $(MAKEFILE) | 325 | mv -f Makefile.new $(MAKEFILE) |
| 326 | rm -f $(SRC) $(SHA256TEST).c $(SHA512TEST).c evptests.txt newkey.pem testkey.pem \ | ||
| 327 | testreq.pem | ||
| 349 | 328 | ||
| 350 | clean: | 329 | clean: |
| 351 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log dummytest | 330 | rm -f .rnd tmp.bntest tmp.bctest *.o *.obj *.dll lib tags core .pure .nfs* *.old *.bak fluff $(EXE) *.ss *.srl log dummytest |
| 352 | 331 | ||
| 353 | $(DLIBSSL): | 332 | $(DLIBSSL): |
| 354 | (cd ..; $(MAKE) DIRS=ssl all) | 333 | (cd ..; $(MAKE) DIRS=ssl all) |
| @@ -360,7 +339,6 @@ BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ | |||
| 360 | shlib_target="$(SHLIB_TARGET)"; \ | 339 | shlib_target="$(SHLIB_TARGET)"; \ |
| 361 | fi; \ | 340 | fi; \ |
| 362 | LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \ | 341 | LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \ |
| 363 | [ "$(FIPSCANLIB)" = "libfips" ] && LIBRARIES="$$LIBRARIES -lfips"; \ | ||
| 364 | $(MAKE) -f $(TOP)/Makefile.shared -e \ | 342 | $(MAKE) -f $(TOP)/Makefile.shared -e \ |
| 365 | APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \ | 343 | APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \ |
| 366 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ | 344 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ |
| @@ -396,71 +374,6 @@ $(SHA256TEST)$(EXE_EXT): $(SHA256TEST).o $(DLIBCRYPTO) | |||
| 396 | $(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO) | 374 | $(SHA512TEST)$(EXE_EXT): $(SHA512TEST).o $(DLIBCRYPTO) |
| 397 | @target=$(SHA512TEST); $(BUILD_CMD) | 375 | @target=$(SHA512TEST); $(BUILD_CMD) |
| 398 | 376 | ||
| 399 | FIPS_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 400 | shlib_target="$(SHLIB_TARGET)"; \ | ||
| 401 | fi; \ | ||
| 402 | if [ "$(FIPSCANLIB)" = "libfips" ]; then \ | ||
| 403 | LIBRARIES="-L$(TOP) -lfips"; \ | ||
| 404 | elif [ -n "$(FIPSCANLIB)" ]; then \ | ||
| 405 | FIPSLD_CC=$(CC); CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \ | ||
| 406 | LIBRARIES="$${FIPSLIBDIR:-$(TOP)/fips/}fipscanister.o"; \ | ||
| 407 | else \ | ||
| 408 | LIBRARIES="$(LIBCRYPTO)"; \ | ||
| 409 | fi; \ | ||
| 410 | $(MAKE) -f $(TOP)/Makefile.shared -e \ | ||
| 411 | CC=$${CC} APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \ | ||
| 412 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ | ||
| 413 | link_app.$${shlib_target} | ||
| 414 | |||
| 415 | FIPS_CRYPTO_BUILD_CMD=shlib_target=; if [ -n "$(SHARED_LIBS)" ]; then \ | ||
| 416 | shlib_target="$(SHLIB_TARGET)"; \ | ||
| 417 | fi; \ | ||
| 418 | LIBRARIES="$(LIBSSL) $(LIBCRYPTO) $(LIBKRB5)"; \ | ||
| 419 | if [ -z "$(SHARED_LIBS)" -a -n "$(FIPSCANLIB)" ] ; then \ | ||
| 420 | FIPSLD_CC=$(CC); CC=$(TOP)/fips/fipsld; export CC FIPSLD_CC; \ | ||
| 421 | fi; \ | ||
| 422 | [ "$(FIPSCANLIB)" = "libfips" ] && LIBRARIES="$$LIBRARIES -lfips"; \ | ||
| 423 | $(MAKE) -f $(TOP)/Makefile.shared -e \ | ||
| 424 | CC=$${CC} APPNAME=$$target$(EXE_EXT) OBJECTS="$$target.o" \ | ||
| 425 | LIBDEPS="$(PEX_LIBS) $$LIBRARIES $(EX_LIBS)" \ | ||
| 426 | link_app.$${shlib_target} | ||
| 427 | |||
| 428 | $(FIPS_SHATEST)$(EXE_EXT): $(FIPS_SHATEST).o $(DLIBCRYPTO) | ||
| 429 | @target=$(FIPS_SHATEST); $(FIPS_BUILD_CMD) | ||
| 430 | |||
| 431 | $(FIPS_AESTEST)$(EXE_EXT): $(FIPS_AESTEST).o $(DLIBCRYPTO) | ||
| 432 | @target=$(FIPS_AESTEST); $(FIPS_BUILD_CMD) | ||
| 433 | |||
| 434 | $(FIPS_DESTEST)$(EXE_EXT): $(FIPS_DESTEST).o $(DLIBCRYPTO) | ||
| 435 | @target=$(FIPS_DESTEST); $(FIPS_BUILD_CMD) | ||
| 436 | |||
| 437 | $(FIPS_HMACTEST)$(EXE_EXT): $(FIPS_HMACTEST).o $(DLIBCRYPTO) | ||
| 438 | @target=$(FIPS_HMACTEST); $(FIPS_BUILD_CMD) | ||
| 439 | |||
| 440 | $(FIPS_RANDTEST)$(EXE_EXT): $(FIPS_RANDTEST).o $(DLIBCRYPTO) | ||
| 441 | @target=$(FIPS_RANDTEST); $(FIPS_BUILD_CMD) | ||
| 442 | |||
| 443 | $(FIPS_RSAVTEST)$(EXE_EXT): $(FIPS_RSAVTEST).o $(DLIBCRYPTO) | ||
| 444 | @target=$(FIPS_RSAVTEST); $(FIPS_BUILD_CMD) | ||
| 445 | |||
| 446 | $(FIPS_RSASTEST)$(EXE_EXT): $(FIPS_RSASTEST).o $(DLIBCRYPTO) | ||
| 447 | @target=$(FIPS_RSASTEST); $(FIPS_BUILD_CMD) | ||
| 448 | |||
| 449 | $(FIPS_RSAGTEST)$(EXE_EXT): $(FIPS_RSAGTEST).o $(DLIBCRYPTO) | ||
| 450 | @target=$(FIPS_RSAGTEST); $(FIPS_BUILD_CMD) | ||
| 451 | |||
| 452 | $(FIPS_DSATEST)$(EXE_EXT): $(FIPS_DSATEST).o $(DLIBCRYPTO) | ||
| 453 | @target=$(FIPS_DSATEST); $(FIPS_BUILD_CMD) | ||
| 454 | |||
| 455 | $(FIPS_DSSVS)$(EXE_EXT): $(FIPS_DSSVS).o $(DLIBCRYPTO) | ||
| 456 | @target=$(FIPS_DSSVS); $(FIPS_BUILD_CMD) | ||
| 457 | |||
| 458 | $(FIPS_RNGVS)$(EXE_EXT): $(FIPS_RNGVS).o $(DLIBCRYPTO) | ||
| 459 | @target=$(FIPS_RNGVS); $(FIPS_BUILD_CMD) | ||
| 460 | |||
| 461 | $(FIPS_TEST_SUITE)$(EXE_EXT): $(FIPS_TEST_SUITE).o $(DLIBCRYPTO) | ||
| 462 | @target=$(FIPS_TEST_SUITE); $(FIPS_BUILD_CMD) | ||
| 463 | |||
| 464 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) | 377 | $(RMDTEST)$(EXE_EXT): $(RMDTEST).o $(DLIBCRYPTO) |
| 465 | @target=$(RMDTEST); $(BUILD_CMD) | 378 | @target=$(RMDTEST); $(BUILD_CMD) |
| 466 | 379 | ||
| @@ -476,6 +389,9 @@ $(MD5TEST)$(EXE_EXT): $(MD5TEST).o $(DLIBCRYPTO) | |||
| 476 | $(HMACTEST)$(EXE_EXT): $(HMACTEST).o $(DLIBCRYPTO) | 389 | $(HMACTEST)$(EXE_EXT): $(HMACTEST).o $(DLIBCRYPTO) |
| 477 | @target=$(HMACTEST); $(BUILD_CMD) | 390 | @target=$(HMACTEST); $(BUILD_CMD) |
| 478 | 391 | ||
| 392 | $(WPTEST)$(EXE_EXT): $(WPTEST).o $(DLIBCRYPTO) | ||
| 393 | @target=$(WPTEST); $(BUILD_CMD) | ||
| 394 | |||
| 479 | $(RC2TEST)$(EXE_EXT): $(RC2TEST).o $(DLIBCRYPTO) | 395 | $(RC2TEST)$(EXE_EXT): $(RC2TEST).o $(DLIBCRYPTO) |
| 480 | @target=$(RC2TEST); $(BUILD_CMD) | 396 | @target=$(RC2TEST); $(BUILD_CMD) |
| 481 | 397 | ||
| @@ -507,7 +423,7 @@ $(METHTEST)$(EXE_EXT): $(METHTEST).o $(DLIBCRYPTO) | |||
| 507 | @target=$(METHTEST); $(BUILD_CMD) | 423 | @target=$(METHTEST); $(BUILD_CMD) |
| 508 | 424 | ||
| 509 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) | 425 | $(SSLTEST)$(EXE_EXT): $(SSLTEST).o $(DLIBSSL) $(DLIBCRYPTO) |
| 510 | @target=$(SSLTEST); $(FIPS_CRYPTO_BUILD_CMD) | 426 | @target=$(SSLTEST); $(BUILD_CMD) |
| 511 | 427 | ||
| 512 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) | 428 | $(ENGINETEST)$(EXE_EXT): $(ENGINETEST).o $(DLIBCRYPTO) |
| 513 | @target=$(ENGINETEST); $(BUILD_CMD) | 429 | @target=$(ENGINETEST); $(BUILD_CMD) |
| @@ -524,8 +440,11 @@ $(ECDHTEST)$(EXE_EXT): $(ECDHTEST).o $(DLIBCRYPTO) | |||
| 524 | $(IGETEST)$(EXE_EXT): $(IGETEST).o $(DLIBCRYPTO) | 440 | $(IGETEST)$(EXE_EXT): $(IGETEST).o $(DLIBCRYPTO) |
| 525 | @target=$(IGETEST); $(BUILD_CMD) | 441 | @target=$(IGETEST); $(BUILD_CMD) |
| 526 | 442 | ||
| 527 | jpaketest$(EXE_EXT): jpaketest.o $(DLIBCRYPTO) | 443 | $(JPAKETEST)$(EXE_EXT): $(JPAKETEST).o $(DLIBCRYPTO) |
| 528 | @target=jpaketest; $(BUILD_CMD) | 444 | @target=$(JPAKETEST); $(BUILD_CMD) |
| 445 | |||
| 446 | $(ASN1TEST)$(EXE_EXT): $(ASN1TEST).o $(DLIBCRYPTO) | ||
| 447 | @target=$(ASN1TEST); $(BUILD_CMD) | ||
| 529 | 448 | ||
| 530 | #$(AESTEST).o: $(AESTEST).c | 449 | #$(AESTEST).o: $(AESTEST).c |
| 531 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c | 450 | # $(CC) -c $(CFLAGS) -DINTERMEDIATE_VALUE_KAT -DTRACE_KAT_MCT $(AESTEST).c |
| @@ -538,10 +457,22 @@ jpaketest$(EXE_EXT): jpaketest.o $(DLIBCRYPTO) | |||
| 538 | # fi | 457 | # fi |
| 539 | 458 | ||
| 540 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) | 459 | dummytest$(EXE_EXT): dummytest.o $(DLIBCRYPTO) |
| 541 | @target=dummytest$; $(BUILD_CMD) | 460 | @target=dummytest; $(BUILD_CMD) |
| 542 | 461 | ||
| 543 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 462 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 544 | 463 | ||
| 464 | asn1test.o: ../include/openssl/asn1.h ../include/openssl/asn1_mac.h | ||
| 465 | asn1test.o: ../include/openssl/bio.h ../include/openssl/buffer.h | ||
| 466 | asn1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 467 | asn1test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
| 468 | asn1test.o: ../include/openssl/ecdsa.h ../include/openssl/evp.h | ||
| 469 | asn1test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 470 | asn1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 471 | asn1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 472 | asn1test.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h | ||
| 473 | asn1test.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 474 | asn1test.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | ||
| 475 | asn1test.o: ../include/openssl/x509_vfy.h asn1test.c | ||
| 545 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h | 476 | bftest.o: ../e_os.h ../include/openssl/blowfish.h ../include/openssl/e_os2.h |
| 546 | bftest.o: ../include/openssl/opensslconf.h bftest.c | 477 | bftest.o: ../include/openssl/opensslconf.h bftest.c |
| 547 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 478 | bntest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| @@ -550,15 +481,14 @@ bntest.o: ../include/openssl/crypto.h ../include/openssl/dh.h | |||
| 550 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | 481 | bntest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h |
| 551 | bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | 482 | bntest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
| 552 | bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | 483 | bntest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h |
| 553 | bntest.o: ../include/openssl/evp.h ../include/openssl/fips.h | 484 | bntest.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
| 554 | bntest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 485 | bntest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 555 | bntest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 486 | bntest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 556 | bntest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 487 | bntest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
| 557 | bntest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | 488 | bntest.o: ../include/openssl/rand.h ../include/openssl/rsa.h |
| 558 | bntest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 489 | bntest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 559 | bntest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 490 | bntest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 560 | bntest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | 491 | bntest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h bntest.c |
| 561 | bntest.o: ../include/openssl/x509_vfy.h bntest.c | ||
| 562 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h | 492 | casttest.o: ../e_os.h ../include/openssl/cast.h ../include/openssl/e_os2.h |
| 563 | casttest.o: ../include/openssl/opensslconf.h casttest.c | 493 | casttest.o: ../include/openssl/opensslconf.h casttest.c |
| 564 | destest.o: ../include/openssl/des.h ../include/openssl/des_old.h | 494 | destest.o: ../include/openssl/des.h ../include/openssl/des_old.h |
| @@ -597,54 +527,53 @@ ecdsatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | |||
| 597 | ecdsatest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | 527 | ecdsatest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
| 598 | ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | 528 | ecdsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
| 599 | ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h | 529 | ecdsatest.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 600 | ecdsatest.o: ../include/openssl/fips.h ../include/openssl/lhash.h | 530 | ecdsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
| 601 | ecdsatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 531 | ecdsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 602 | ecdsatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 532 | ecdsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 603 | ecdsatest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | 533 | ecdsatest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 604 | ecdsatest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | 534 | ecdsatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 605 | ecdsatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 535 | ecdsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 606 | ecdsatest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | 536 | ecdsatest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
| 607 | ecdsatest.o: ../include/openssl/x509_vfy.h ecdsatest.c | 537 | ecdsatest.o: ecdsatest.c |
| 608 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 538 | ectest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 609 | ectest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 539 | ectest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 610 | ectest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 540 | ectest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 611 | ectest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | 541 | ectest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
| 612 | ectest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | 542 | ectest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
| 613 | ectest.o: ../include/openssl/err.h ../include/openssl/evp.h | 543 | ectest.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 614 | ectest.o: ../include/openssl/fips.h ../include/openssl/lhash.h | 544 | ectest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
| 615 | ectest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 545 | ectest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 616 | ectest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 546 | ectest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 617 | ectest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | 547 | ectest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h |
| 618 | ectest.o: ../include/openssl/rand.h ../include/openssl/safestack.h | 548 | ectest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 619 | ectest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 549 | ectest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 620 | ectest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | 550 | ectest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h ectest.c |
| 621 | ectest.o: ../include/openssl/x509_vfy.h ectest.c | ||
| 622 | enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h | 551 | enginetest.o: ../include/openssl/asn1.h ../include/openssl/bio.h |
| 623 | enginetest.o: ../include/openssl/buffer.h ../include/openssl/crypto.h | 552 | enginetest.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
| 624 | enginetest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | 553 | enginetest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
| 625 | enginetest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | 554 | enginetest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
| 626 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h | 555 | enginetest.o: ../include/openssl/engine.h ../include/openssl/err.h |
| 627 | enginetest.o: ../include/openssl/evp.h ../include/openssl/fips.h | 556 | enginetest.o: ../include/openssl/evp.h ../include/openssl/lhash.h |
| 628 | enginetest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 557 | enginetest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 629 | enginetest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 558 | enginetest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 630 | enginetest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 559 | enginetest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h |
| 631 | enginetest.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h | 560 | enginetest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 632 | enginetest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 561 | enginetest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h |
| 633 | enginetest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | 562 | enginetest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
| 634 | enginetest.o: ../include/openssl/x509_vfy.h enginetest.c | 563 | enginetest.o: enginetest.c |
| 635 | evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 564 | evp_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 636 | evp_test.o: ../include/openssl/buffer.h ../include/openssl/conf.h | 565 | evp_test.o: ../include/openssl/buffer.h ../include/openssl/conf.h |
| 637 | evp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 566 | evp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 638 | evp_test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | 567 | evp_test.o: ../include/openssl/ec.h ../include/openssl/ecdh.h |
| 639 | evp_test.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | 568 | evp_test.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h |
| 640 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h | 569 | evp_test.o: ../include/openssl/err.h ../include/openssl/evp.h |
| 641 | evp_test.o: ../include/openssl/fips.h ../include/openssl/lhash.h | 570 | evp_test.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h |
| 642 | evp_test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 571 | evp_test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 643 | evp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 572 | evp_test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 644 | evp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | 573 | evp_test.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h |
| 645 | evp_test.o: ../include/openssl/safestack.h ../include/openssl/sha.h | 574 | evp_test.o: ../include/openssl/sha.h ../include/openssl/stack.h |
| 646 | evp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | 575 | evp_test.o: ../include/openssl/symhacks.h ../include/openssl/x509.h |
| 647 | evp_test.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h evp_test.c | 576 | evp_test.o: ../include/openssl/x509_vfy.h evp_test.c |
| 648 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h | 577 | exptest.o: ../e_os.h ../include/openssl/bio.h ../include/openssl/bn.h |
| 649 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 578 | exptest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 650 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h | 579 | exptest.o: ../include/openssl/err.h ../include/openssl/lhash.h |
| @@ -652,186 +581,14 @@ exptest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | |||
| 652 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | 581 | exptest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h |
| 653 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 582 | exptest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 654 | exptest.o: ../include/openssl/symhacks.h exptest.c | 583 | exptest.o: ../include/openssl/symhacks.h exptest.c |
| 655 | fips_aesavs.o: ../e_os.h ../fips/fips_utl.h ../include/openssl/aes.h | ||
| 656 | fips_aesavs.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 657 | fips_aesavs.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 658 | fips_aesavs.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 659 | fips_aesavs.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 660 | fips_aesavs.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 661 | fips_aesavs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 662 | fips_aesavs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 663 | fips_aesavs.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 664 | fips_aesavs.o: ../include/openssl/symhacks.h fips_aesavs.c | ||
| 665 | fips_desmovs.o: ../e_os.h ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 666 | fips_desmovs.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 667 | fips_desmovs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 668 | fips_desmovs.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h | ||
| 669 | fips_desmovs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 670 | fips_desmovs.o: ../include/openssl/fips.h ../include/openssl/lhash.h | ||
| 671 | fips_desmovs.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 672 | fips_desmovs.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 673 | fips_desmovs.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 674 | fips_desmovs.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 675 | fips_desmovs.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 676 | fips_desmovs.o: fips_desmovs.c | ||
| 677 | fips_dsatest.o: ../e_os.h ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 678 | fips_dsatest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 679 | fips_dsatest.o: ../include/openssl/buffer.h ../include/openssl/crypto.h | ||
| 680 | fips_dsatest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 681 | fips_dsatest.o: ../include/openssl/dsa.h ../include/openssl/e_os2.h | ||
| 682 | fips_dsatest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
| 683 | fips_dsatest.o: ../include/openssl/ecdsa.h ../include/openssl/engine.h | ||
| 684 | fips_dsatest.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 685 | fips_dsatest.o: ../include/openssl/fips.h ../include/openssl/fips_rand.h | ||
| 686 | fips_dsatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 687 | fips_dsatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 688 | fips_dsatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 689 | fips_dsatest.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 690 | fips_dsatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 691 | fips_dsatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 692 | fips_dsatest.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 693 | fips_dsatest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 694 | fips_dsatest.o: fips_dsatest.c | ||
| 695 | fips_dssvs.o: ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 696 | fips_dssvs.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 697 | fips_dssvs.o: ../include/openssl/crypto.h ../include/openssl/dsa.h | ||
| 698 | fips_dssvs.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 699 | fips_dssvs.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 700 | fips_dssvs.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 701 | fips_dssvs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 702 | fips_dssvs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 703 | fips_dssvs.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 704 | fips_dssvs.o: ../include/openssl/symhacks.h fips_dssvs.c | ||
| 705 | fips_hmactest.o: ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 706 | fips_hmactest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 707 | fips_hmactest.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
| 708 | fips_hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 709 | fips_hmactest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
| 710 | fips_hmactest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | ||
| 711 | fips_hmactest.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 712 | fips_hmactest.o: ../include/openssl/hmac.h ../include/openssl/lhash.h | ||
| 713 | fips_hmactest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 714 | fips_hmactest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 715 | fips_hmactest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 716 | fips_hmactest.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 717 | fips_hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 718 | fips_hmactest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 719 | fips_hmactest.o: ../include/openssl/x509v3.h fips_hmactest.c | ||
| 720 | fips_randtest.o: ../e_os.h ../fips/fips_utl.h ../include/openssl/bio.h | ||
| 721 | fips_randtest.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 722 | fips_randtest.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 723 | fips_randtest.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 724 | fips_randtest.o: ../include/openssl/fips_rand.h ../include/openssl/lhash.h | ||
| 725 | fips_randtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 726 | fips_randtest.o: ../include/openssl/ossl_typ.h ../include/openssl/rand.h | ||
| 727 | fips_randtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | ||
| 728 | fips_randtest.o: ../include/openssl/symhacks.h ../include/openssl/ui.h | ||
| 729 | fips_randtest.o: ../include/openssl/ui_compat.h fips_randtest.c | ||
| 730 | fips_rngvs.o: ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 731 | fips_rngvs.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 732 | fips_rngvs.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
| 733 | fips_rngvs.o: ../include/openssl/crypto.h ../include/openssl/des.h | ||
| 734 | fips_rngvs.o: ../include/openssl/des_old.h ../include/openssl/dsa.h | ||
| 735 | fips_rngvs.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | ||
| 736 | fips_rngvs.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | ||
| 737 | fips_rngvs.o: ../include/openssl/err.h ../include/openssl/evp.h | ||
| 738 | fips_rngvs.o: ../include/openssl/fips.h ../include/openssl/fips_rand.h | ||
| 739 | fips_rngvs.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 740 | fips_rngvs.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 741 | fips_rngvs.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 742 | fips_rngvs.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h | ||
| 743 | fips_rngvs.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 744 | fips_rngvs.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 745 | fips_rngvs.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 746 | fips_rngvs.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | ||
| 747 | fips_rngvs.o: ../include/openssl/x509v3.h fips_rngvs.c | ||
| 748 | fips_rsagtest.o: ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 749 | fips_rsagtest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 750 | fips_rsagtest.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
| 751 | fips_rsagtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 752 | fips_rsagtest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
| 753 | fips_rsagtest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | ||
| 754 | fips_rsagtest.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 755 | fips_rsagtest.o: ../include/openssl/hmac.h ../include/openssl/lhash.h | ||
| 756 | fips_rsagtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 757 | fips_rsagtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 758 | fips_rsagtest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 759 | fips_rsagtest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 760 | fips_rsagtest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 761 | fips_rsagtest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | ||
| 762 | fips_rsagtest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | ||
| 763 | fips_rsagtest.o: fips_rsagtest.c | ||
| 764 | fips_rsastest.o: ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 765 | fips_rsastest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 766 | fips_rsastest.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
| 767 | fips_rsastest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 768 | fips_rsastest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
| 769 | fips_rsastest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | ||
| 770 | fips_rsastest.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 771 | fips_rsastest.o: ../include/openssl/hmac.h ../include/openssl/lhash.h | ||
| 772 | fips_rsastest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 773 | fips_rsastest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 774 | fips_rsastest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 775 | fips_rsastest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 776 | fips_rsastest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 777 | fips_rsastest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | ||
| 778 | fips_rsastest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | ||
| 779 | fips_rsastest.o: fips_rsastest.c | ||
| 780 | fips_rsavtest.o: ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 781 | fips_rsavtest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 782 | fips_rsavtest.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
| 783 | fips_rsavtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 784 | fips_rsavtest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
| 785 | fips_rsavtest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | ||
| 786 | fips_rsavtest.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 787 | fips_rsavtest.o: ../include/openssl/hmac.h ../include/openssl/lhash.h | ||
| 788 | fips_rsavtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 789 | fips_rsavtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 790 | fips_rsavtest.o: ../include/openssl/ossl_typ.h ../include/openssl/pkcs7.h | ||
| 791 | fips_rsavtest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | ||
| 792 | fips_rsavtest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 793 | fips_rsavtest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | ||
| 794 | fips_rsavtest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | ||
| 795 | fips_rsavtest.o: fips_rsavtest.c | ||
| 796 | fips_shatest.o: ../fips/fips_utl.h ../include/openssl/asn1.h | ||
| 797 | fips_shatest.o: ../include/openssl/bio.h ../include/openssl/bn.h | ||
| 798 | fips_shatest.o: ../include/openssl/buffer.h ../include/openssl/conf.h | ||
| 799 | fips_shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 800 | fips_shatest.o: ../include/openssl/ec.h ../include/openssl/ecdh.h | ||
| 801 | fips_shatest.o: ../include/openssl/ecdsa.h ../include/openssl/err.h | ||
| 802 | fips_shatest.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 803 | fips_shatest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | ||
| 804 | fips_shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 805 | fips_shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 806 | fips_shatest.o: ../include/openssl/pkcs7.h ../include/openssl/safestack.h | ||
| 807 | fips_shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | ||
| 808 | fips_shatest.o: ../include/openssl/symhacks.h ../include/openssl/x509.h | ||
| 809 | fips_shatest.o: ../include/openssl/x509_vfy.h ../include/openssl/x509v3.h | ||
| 810 | fips_shatest.o: fips_shatest.c | ||
| 811 | fips_test_suite.o: ../fips/fips_utl.h ../include/openssl/aes.h | ||
| 812 | fips_test_suite.o: ../include/openssl/asn1.h ../include/openssl/bio.h | ||
| 813 | fips_test_suite.o: ../include/openssl/bn.h ../include/openssl/crypto.h | ||
| 814 | fips_test_suite.o: ../include/openssl/des.h ../include/openssl/des_old.h | ||
| 815 | fips_test_suite.o: ../include/openssl/dh.h ../include/openssl/dsa.h | ||
| 816 | fips_test_suite.o: ../include/openssl/e_os2.h ../include/openssl/err.h | ||
| 817 | fips_test_suite.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 818 | fips_test_suite.o: ../include/openssl/hmac.h ../include/openssl/lhash.h | ||
| 819 | fips_test_suite.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | ||
| 820 | fips_test_suite.o: ../include/openssl/opensslconf.h | ||
| 821 | fips_test_suite.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | ||
| 822 | fips_test_suite.o: ../include/openssl/rand.h ../include/openssl/rsa.h | ||
| 823 | fips_test_suite.o: ../include/openssl/safestack.h ../include/openssl/sha.h | ||
| 824 | fips_test_suite.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 825 | fips_test_suite.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h | ||
| 826 | fips_test_suite.o: fips_test_suite.c | ||
| 827 | hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 584 | hmactest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 828 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 585 | hmactest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 829 | hmactest.o: ../include/openssl/evp.h ../include/openssl/fips.h | 586 | hmactest.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
| 830 | hmactest.o: ../include/openssl/hmac.h ../include/openssl/md5.h | 587 | hmactest.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h |
| 831 | hmactest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 588 | hmactest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 832 | hmactest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 589 | hmactest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 833 | hmactest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 590 | hmactest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 834 | hmactest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h hmactest.c | 591 | hmactest.o: ../include/openssl/symhacks.h hmactest.c |
| 835 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h | 592 | ideatest.o: ../e_os.h ../include/openssl/e_os2.h ../include/openssl/idea.h |
| 836 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c | 593 | ideatest.o: ../include/openssl/opensslconf.h ideatest.c |
| 837 | igetest.o: ../include/openssl/aes.h ../include/openssl/e_os2.h | 594 | igetest.o: ../include/openssl/aes.h ../include/openssl/e_os2.h |
| @@ -842,35 +599,34 @@ jpaketest.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | |||
| 842 | jpaketest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 599 | jpaketest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 843 | jpaketest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 600 | jpaketest.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 844 | jpaketest.o: ../include/openssl/symhacks.h jpaketest.c | 601 | jpaketest.o: ../include/openssl/symhacks.h jpaketest.c |
| 845 | md2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 602 | md2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h |
| 846 | md2test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 603 | md2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h |
| 847 | md2test.o: ../include/openssl/evp.h ../include/openssl/fips.h | ||
| 848 | md2test.o: ../include/openssl/md2.h ../include/openssl/obj_mac.h | ||
| 849 | md2test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | ||
| 850 | md2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 604 | md2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 851 | md2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 605 | md2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h |
| 852 | md2test.o: ../include/openssl/symhacks.h md2test.c | 606 | md2test.o: ../include/openssl/symhacks.h md2test.c |
| 853 | md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 607 | md4test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 854 | md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 608 | md4test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 855 | md4test.o: ../include/openssl/evp.h ../include/openssl/fips.h | 609 | md4test.o: ../include/openssl/evp.h ../include/openssl/md4.h |
| 856 | md4test.o: ../include/openssl/md4.h ../include/openssl/obj_mac.h | 610 | md4test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 857 | md4test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 611 | md4test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 858 | md4test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 612 | md4test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 859 | md4test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 613 | md4test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md4test.c |
| 860 | md4test.o: ../include/openssl/symhacks.h md4test.c | ||
| 861 | md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 614 | md5test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 862 | md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 615 | md5test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 863 | md5test.o: ../include/openssl/evp.h ../include/openssl/fips.h | 616 | md5test.o: ../include/openssl/evp.h ../include/openssl/md5.h |
| 864 | md5test.o: ../include/openssl/md5.h ../include/openssl/obj_mac.h | 617 | md5test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 865 | md5test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 618 | md5test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 866 | md5test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 619 | md5test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h |
| 867 | md5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 620 | md5test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h md5test.c |
| 868 | md5test.o: ../include/openssl/symhacks.h md5test.c | 621 | mdc2test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 869 | mdc2test.o: ../include/openssl/buffer.h ../include/openssl/crypto.h | 622 | mdc2test.o: ../include/openssl/crypto.h ../include/openssl/des.h |
| 870 | mdc2test.o: ../include/openssl/e_os2.h ../include/openssl/opensslconf.h | 623 | mdc2test.o: ../include/openssl/des_old.h ../include/openssl/e_os2.h |
| 871 | mdc2test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 624 | mdc2test.o: ../include/openssl/evp.h ../include/openssl/mdc2.h |
| 872 | mdc2test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 625 | mdc2test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 873 | mdc2test.o: ../include/openssl/symhacks.h mdc2test.c | 626 | mdc2test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 627 | mdc2test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 628 | mdc2test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 629 | mdc2test.o: ../include/openssl/ui.h ../include/openssl/ui_compat.h mdc2test.c | ||
| 874 | randtest.o: ../e_os.h ../include/openssl/e_os2.h | 630 | randtest.o: ../e_os.h ../include/openssl/e_os2.h |
| 875 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h | 631 | randtest.o: ../include/openssl/opensslconf.h ../include/openssl/ossl_typ.h |
| 876 | randtest.o: ../include/openssl/rand.h randtest.c | 632 | randtest.o: ../include/openssl/rand.h randtest.c |
| @@ -886,12 +642,11 @@ rc5test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | |||
| 886 | rc5test.o: ../include/openssl/symhacks.h rc5test.c | 642 | rc5test.o: ../include/openssl/symhacks.h rc5test.c |
| 887 | rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 643 | rmdtest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 888 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 644 | rmdtest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 889 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/fips.h | 645 | rmdtest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
| 890 | rmdtest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 646 | rmdtest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 891 | rmdtest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 647 | rmdtest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 892 | rmdtest.o: ../include/openssl/ossl_typ.h ../include/openssl/ripemd.h | 648 | rmdtest.o: ../include/openssl/ripemd.h ../include/openssl/safestack.h |
| 893 | rmdtest.o: ../include/openssl/safestack.h ../include/openssl/stack.h | 649 | rmdtest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h rmdtest.c |
| 894 | rmdtest.o: ../include/openssl/symhacks.h rmdtest.c | ||
| 895 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 650 | rsa_test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 896 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h | 651 | rsa_test.o: ../include/openssl/bn.h ../include/openssl/crypto.h |
| 897 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h | 652 | rsa_test.o: ../include/openssl/e_os2.h ../include/openssl/err.h |
| @@ -902,20 +657,18 @@ rsa_test.o: ../include/openssl/safestack.h ../include/openssl/stack.h | |||
| 902 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c | 657 | rsa_test.o: ../include/openssl/symhacks.h rsa_test.c |
| 903 | sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 658 | sha1test.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 904 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 659 | sha1test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 905 | sha1test.o: ../include/openssl/evp.h ../include/openssl/fips.h | 660 | sha1test.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
| 906 | sha1test.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 661 | sha1test.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 907 | sha1test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 662 | sha1test.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 908 | sha1test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 663 | sha1test.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 909 | sha1test.o: ../include/openssl/sha.h ../include/openssl/stack.h | 664 | sha1test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h sha1test.c |
| 910 | sha1test.o: ../include/openssl/symhacks.h sha1test.c | ||
| 911 | shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 665 | shatest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 912 | shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | 666 | shatest.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h |
| 913 | shatest.o: ../include/openssl/evp.h ../include/openssl/fips.h | 667 | shatest.o: ../include/openssl/evp.h ../include/openssl/obj_mac.h |
| 914 | shatest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h | 668 | shatest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h |
| 915 | shatest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | 669 | shatest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h |
| 916 | shatest.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | 670 | shatest.o: ../include/openssl/safestack.h ../include/openssl/sha.h |
| 917 | shatest.o: ../include/openssl/sha.h ../include/openssl/stack.h | 671 | shatest.o: ../include/openssl/stack.h ../include/openssl/symhacks.h shatest.c |
| 918 | shatest.o: ../include/openssl/symhacks.h shatest.c | ||
| 919 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h | 672 | ssltest.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h |
| 920 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h | 673 | ssltest.o: ../include/openssl/bn.h ../include/openssl/buffer.h |
| 921 | ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h | 674 | ssltest.o: ../include/openssl/comp.h ../include/openssl/conf.h |
| @@ -924,13 +677,12 @@ ssltest.o: ../include/openssl/dsa.h ../include/openssl/dtls1.h | |||
| 924 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h | 677 | ssltest.o: ../include/openssl/e_os2.h ../include/openssl/ec.h |
| 925 | ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h | 678 | ssltest.o: ../include/openssl/ecdh.h ../include/openssl/ecdsa.h |
| 926 | ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h | 679 | ssltest.o: ../include/openssl/engine.h ../include/openssl/err.h |
| 927 | ssltest.o: ../include/openssl/evp.h ../include/openssl/fips.h | 680 | ssltest.o: ../include/openssl/evp.h ../include/openssl/hmac.h |
| 928 | ssltest.o: ../include/openssl/hmac.h ../include/openssl/kssl.h | 681 | ssltest.o: ../include/openssl/kssl.h ../include/openssl/lhash.h |
| 929 | ssltest.o: ../include/openssl/lhash.h ../include/openssl/obj_mac.h | 682 | ssltest.o: ../include/openssl/obj_mac.h ../include/openssl/objects.h |
| 930 | ssltest.o: ../include/openssl/objects.h ../include/openssl/opensslconf.h | 683 | ssltest.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h |
| 931 | ssltest.o: ../include/openssl/opensslv.h ../include/openssl/ossl_typ.h | 684 | ssltest.o: ../include/openssl/ossl_typ.h ../include/openssl/pem.h |
| 932 | ssltest.o: ../include/openssl/pem.h ../include/openssl/pem2.h | 685 | ssltest.o: ../include/openssl/pem2.h ../include/openssl/pkcs7.h |
| 933 | ssltest.o: ../include/openssl/pkcs7.h ../include/openssl/pq_compat.h | ||
| 934 | ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h | 686 | ssltest.o: ../include/openssl/pqueue.h ../include/openssl/rand.h |
| 935 | ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h | 687 | ssltest.o: ../include/openssl/rsa.h ../include/openssl/safestack.h |
| 936 | ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h | 688 | ssltest.o: ../include/openssl/sha.h ../include/openssl/ssl.h |
| @@ -939,3 +691,8 @@ ssltest.o: ../include/openssl/ssl3.h ../include/openssl/stack.h | |||
| 939 | ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h | 691 | ssltest.o: ../include/openssl/symhacks.h ../include/openssl/tls1.h |
| 940 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h | 692 | ssltest.o: ../include/openssl/x509.h ../include/openssl/x509_vfy.h |
| 941 | ssltest.o: ../include/openssl/x509v3.h ssltest.c | 693 | ssltest.o: ../include/openssl/x509v3.h ssltest.c |
| 694 | wp_test.o: ../include/openssl/crypto.h ../include/openssl/e_os2.h | ||
| 695 | wp_test.o: ../include/openssl/opensslconf.h ../include/openssl/opensslv.h | ||
| 696 | wp_test.o: ../include/openssl/ossl_typ.h ../include/openssl/safestack.h | ||
| 697 | wp_test.o: ../include/openssl/stack.h ../include/openssl/symhacks.h | ||
| 698 | wp_test.o: ../include/openssl/whrlpool.h wp_test.c | ||
